1
0
Fork 0
fenix/app/src/main/java/org/mozilla/fenix/search/toolbar/ToolbarUIView.kt

94 lines
3.3 KiB
Kotlin
Raw Normal View History

/* This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/. */
2019-01-31 00:51:49 +01:00
package org.mozilla.fenix.search.toolbar
import android.view.LayoutInflater
import android.view.ViewGroup
import androidx.core.content.ContextCompat
2019-01-31 07:49:41 +01:00
import io.reactivex.Observable
import io.reactivex.Observer
import io.reactivex.functions.Consumer
2019-01-31 00:51:49 +01:00
import mozilla.components.browser.domains.autocomplete.ShippedDomainsProvider
import mozilla.components.browser.toolbar.BrowserToolbar
import mozilla.components.support.ktx.android.content.res.pxToDp
import org.mozilla.fenix.R
import org.mozilla.fenix.ext.components
import org.mozilla.fenix.mvi.UIView
2019-01-31 07:49:41 +01:00
class ToolbarUIView(
sessionId: String?,
2019-01-31 07:49:41 +01:00
container: ViewGroup,
actionEmitter: Observer<SearchAction>,
changesObservable: Observable<SearchChange>
) :
UIView<SearchState, SearchAction, SearchChange>(container, actionEmitter, changesObservable) {
2019-01-31 00:51:49 +01:00
val toolbarIntegration: ToolbarIntegration
override val view: BrowserToolbar = LayoutInflater.from(container.context)
.inflate(R.layout.component_search, container, true)
.findViewById(R.id.toolbar)
private val urlBackground = LayoutInflater.from(container.context)
.inflate(R.layout.layout_url_backround, container, false)
init {
view.apply {
2019-01-31 07:49:41 +01:00
setOnUrlCommitListener { actionEmitter.onNext(SearchAction.UrlCommitted(it)) }
onUrlClicked = {
actionEmitter.onNext(SearchAction.ToolbarTapped)
false
}
browserActionMargin = resources.pxToDp(browserActionMarginDp)
urlBoxView = urlBackground
textColor = ContextCompat.getColor(context, R.color.search_text)
textSize = toolbarTextSizeSp
hint = context.getString(R.string.search_hint)
hintColor = ContextCompat.getColor(context, R.color.search_text)
2019-01-31 00:51:49 +01:00
setOnEditListener(object : mozilla.components.concept.toolbar.Toolbar.OnEditListener {
override fun onTextChanged(text: String) {
url = text
2019-01-31 07:49:41 +01:00
actionEmitter.onNext(SearchAction.TextChanged(text))
2019-01-31 00:51:49 +01:00
}
override fun onStopEditing() {
actionEmitter.onNext(SearchAction.UrlCommitted(url))
2019-01-31 00:51:49 +01:00
}
})
}
2019-01-31 00:51:49 +01:00
with(view.context) {
toolbarIntegration = ToolbarIntegration(
this,
view,
ToolbarMenu(this,
requestDesktopStateProvider = { components.core.sessionManager.selectedSessionOrThrow.desktopMode },
onItemTapped = { actionEmitter.onNext(SearchAction.ToolbarMenuItemTapped(it)) }
),
2019-01-31 00:51:49 +01:00
ShippedDomainsProvider().also { it.initialize(this) },
components.core.historyStorage,
2019-02-06 23:15:38 +01:00
components.core.sessionManager,
sessionId ?: components.core.sessionManager.selectedSession?.id
2019-01-31 00:51:49 +01:00
)
}
}
override fun updateView() = Consumer<SearchState> {
if (it.isEditing) {
view.editMode()
} else {
view.displayMode()
}
}
companion object {
const val toolbarTextSizeSp = 14f
const val browserActionMarginDp = 8
}
}