package org.mozilla.fenix.collections /* 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/. */ import android.util.Log import android.view.LayoutInflater import android.view.ViewGroup import androidx.recyclerview.widget.LinearLayoutManager import androidx.recyclerview.widget.RecyclerView import org.mozilla.fenix.R import io.reactivex.Observer import io.reactivex.Observable import io.reactivex.functions.Consumer import kotlinx.android.synthetic.main.component_collection_creation.view.* import org.mozilla.fenix.mvi.UIView class CollectionCreationUIView( container: ViewGroup, actionEmitter: Observer, changesObservable: Observable ) : UIView( container, actionEmitter, changesObservable ) { override val view = LayoutInflater.from(container.context) .inflate(R.layout.component_collection_creation, container, true) private val collectionCreationTabListAdapter = CollectionCreationTabListAdapter(actionEmitter) init { view.back_button.setOnClickListener { actionEmitter.onNext(CollectionCreationAction.Close) } view.select_all_button.setOnClickListener { Log.e("Collection Creation", "Select All Tapped!") } view.tab_list.run { adapter = collectionCreationTabListAdapter layoutManager = LinearLayoutManager(container.context, RecyclerView.VERTICAL, true) } } override fun updateView() = Consumer { collectionCreationTabListAdapter.updateData(it.tabs, it.selectedTabs) } }