1
0
Fork 0
fenix/app/src/main/java/org/mozilla/fenix/home/sessions/SessionsUIView.kt

35 lines
1.1 KiB
Kotlin
Raw Normal View History

2019-01-28 17:46:39 +01:00
/* 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/. */
package org.mozilla.fenix.home.sessions
import android.view.LayoutInflater
2019-01-28 17:46:39 +01:00
import android.view.ViewGroup
import androidx.recyclerview.widget.LinearLayoutManager
import androidx.recyclerview.widget.RecyclerView
2019-01-28 17:46:39 +01:00
import io.reactivex.functions.Consumer
import org.mozilla.fenix.R
2019-01-28 17:46:39 +01:00
import org.mozilla.fenix.mvi.ActionBusFactory
import org.mozilla.fenix.mvi.UIView
class SessionsUIView(container: ViewGroup, bus: ActionBusFactory) :
UIView<SessionsState>(container, bus) {
2019-01-28 17:46:39 +01:00
override val view: RecyclerView = LayoutInflater.from(container.context)
.inflate(R.layout.component_sessions, container, true)
.findViewById(R.id.session_list)
2019-01-28 17:46:39 +01:00
private val sessionsAdapter = SessionsAdapter()
2019-01-28 17:46:39 +01:00
init {
view.apply {
layoutManager = LinearLayoutManager(container.context)
adapter = sessionsAdapter
2019-01-28 17:46:39 +01:00
}
}
override fun updateView() = Consumer<SessionsState> {
}
}