You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iceraven-browser/app/src/main/java/org/mozilla/fenix/exceptions/ExceptionsView.kt

46 lines
1.4 KiB
Kotlin

/* 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.exceptions
import android.view.LayoutInflater
import android.view.ViewGroup
import android.widget.FrameLayout
import androidx.annotation.VisibleForTesting
import androidx.core.view.isVisible
import androidx.recyclerview.widget.LinearLayoutManager
import org.mozilla.fenix.databinding.ComponentExceptionsBinding
/**
* View that contains and configures the Exceptions List
*/
abstract class ExceptionsView<T : Any>(
container: ViewGroup,
protected val interactor: ExceptionsInteractor<T>
) {
@VisibleForTesting
internal val binding = ComponentExceptionsBinding.inflate(
LayoutInflater.from(container.context),
container,
true
)
val containerView: FrameLayout = binding.exceptionsWrapper
protected abstract val exceptionsAdapter: ExceptionsAdapter<T>
init {
binding.exceptionsList.apply {
layoutManager = LinearLayoutManager(containerView.context)
}
}
fun update(items: List<T>) {
binding.exceptionsEmptyView.isVisible = items.isEmpty()
binding.exceptionsList.isVisible = items.isNotEmpty()
exceptionsAdapter.updateData(items)
}
}