/* 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.share import android.view.LayoutInflater import android.view.ViewGroup import kotlinx.android.extensions.LayoutContainer import kotlinx.android.synthetic.main.share_to_account_devices.* import mozilla.components.concept.sync.Device import org.mozilla.fenix.R import org.mozilla.fenix.share.listadapters.AccountDevicesShareAdapter import org.mozilla.fenix.share.listadapters.SyncShareOption /** * Callbacks for possible user interactions on the [ShareToAccountDevicesView] */ interface ShareToAccountDevicesInteractor { fun onSignIn() fun onReauth() fun onAddNewDevice() fun onShareToDevice(device: Device) fun onShareToAllDevices(devices: List) } class ShareToAccountDevicesView( override val containerView: ViewGroup, interactor: ShareToAccountDevicesInteractor ) : LayoutContainer { private val adapter = AccountDevicesShareAdapter(interactor) init { LayoutInflater.from(containerView.context) .inflate(R.layout.share_to_account_devices, containerView, true) devicesList.adapter = adapter } fun setShareTargets(targets: List) { adapter.submitList(targets) } }