/* 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.settings.logins import android.text.method.LinkMovementMethod import android.view.LayoutInflater import android.view.ViewGroup import android.widget.FrameLayout import androidx.core.view.isVisible import androidx.recyclerview.widget.LinearLayoutManager import kotlinx.android.extensions.LayoutContainer import kotlinx.android.synthetic.main.component_saved_logins.view.* import org.mozilla.fenix.R import org.mozilla.fenix.ext.addUnderline import org.mozilla.fenix.utils.Settings /** * View that contains and configures the Saved Logins List */ class SavedLoginsView( override val containerView: ViewGroup, val interactor: SavedLoginsInteractor ) : LayoutContainer { val view: FrameLayout = LayoutInflater.from(containerView.context) .inflate(R.layout.component_saved_logins, containerView, true) .findViewById(R.id.saved_logins_wrapper) private val loginsAdapter = LoginsAdapter(interactor) init { view.saved_logins_list.apply { adapter = loginsAdapter layoutManager = LinearLayoutManager(containerView.context) itemAnimator = null } with(view.saved_passwords_empty_learn_more) { movementMethod = LinkMovementMethod.getInstance() addUnderline() setOnClickListener { interactor.onLearnMore() } } with(view.saved_passwords_empty_message) { val appName = context.getString(R.string.app_name) text = String.format( context.getString( R.string.preferences_passwords_saved_logins_description_empty_text ), appName ) } } fun update(state: LoginsListState) { if (state.isLoading) { view.progress_bar.isVisible = true } else { view.progress_bar.isVisible = false view.saved_logins_list.isVisible = state.loginList.isNotEmpty() view.saved_passwords_empty_view.isVisible = state.loginList.isEmpty() } loginsAdapter.submitList(state.filteredItems) } } /** * Interactor for the saved logins screen */ class SavedLoginsInteractor( private val savedLoginsController: SavedLoginsController, private val itemClicked: (SavedLogin) -> Unit, private val learnMore: () -> Unit ) { fun itemClicked(item: SavedLogin) { itemClicked.invoke(item) } fun onLearnMore() { learnMore.invoke() } fun sort(sortingStrategy: SortingStrategy) { savedLoginsController.handleSort(sortingStrategy) } } /** * Controller for the saved logins screen */ class SavedLoginsController(val store: LoginsFragmentStore, val settings: Settings) { fun handleSort(sortingStrategy: SortingStrategy) { store.dispatch(LoginsAction.SortLogins(sortingStrategy)) settings.savedLoginsSortingStrategy = sortingStrategy } }