1
0
Fork 0

For #2886: Fix sending multiple tabs to another device (#2923)

* For #2886: Fix sending multiple tabs to another device

* Update share methods to use new API
master
Jonathan Almeida 2019-05-28 18:05:16 -04:00 committed by Sawyer Blatz
parent 65fe58e24a
commit 3da6cfd98a
5 changed files with 61 additions and 36 deletions

View File

@ -70,6 +70,7 @@ import org.mozilla.fenix.mvi.getAutoDisposeObservable
import org.mozilla.fenix.mvi.getManagedEmitter
import org.mozilla.fenix.onboarding.FenixOnboarding
import org.mozilla.fenix.settings.SupportUtils
import org.mozilla.fenix.share.ShareTab
import org.mozilla.fenix.utils.ItsNotBrokenSnack
import kotlin.coroutines.CoroutineContext
import kotlin.math.roundToInt
@ -323,10 +324,9 @@ class HomeFragment : Fragment(), CoroutineScope, AccountObserver {
}
is TabAction.Share -> {
invokePendingDeleteJobs()
requireComponents.core.sessionManager.findSessionById(action.sessionId)
?.let { session ->
share(session.url)
}
requireComponents.core.sessionManager.findSessionById(action.sessionId)?.let { session ->
share(session.url)
}
}
is TabAction.CloseAll -> {
removeAllTabsWithUndo(action.private)
@ -346,10 +346,10 @@ class HomeFragment : Fragment(), CoroutineScope, AccountObserver {
}
is TabAction.ShareTabs -> {
invokePendingDeleteJobs()
val shareText = requireComponents.core.sessionManager.sessions.joinToString("\n") {
it.url
val shareTabs = requireComponents.core.sessionManager.sessions.map {
ShareTab(it.url, it.title, it.id)
}
share(shareText)
share(tabs = shareTabs)
}
}
}
@ -433,10 +433,8 @@ class HomeFragment : Fragment(), CoroutineScope, AccountObserver {
}
}
is CollectionAction.ShareTabs -> {
val shareText = action.collection.tabs.joinToString("\n") {
it.url
}
share(shareText)
val shareTabs = action.collection.tabs.map { ShareTab(it.url, it.title) }
share(tabs = shareTabs)
}
is CollectionAction.RemoveTab -> {
launch(Dispatchers.IO) {
@ -664,8 +662,9 @@ class HomeFragment : Fragment(), CoroutineScope, AccountObserver {
}
}
private fun share(text: String) {
val directions = HomeFragmentDirections.actionHomeFragmentToShareFragment(text)
private fun share(url: String? = null, tabs: List<ShareTab>? = null) {
val directions =
HomeFragmentDirections.actionHomeFragmentToShareFragment(url = url, tabs = tabs?.toTypedArray())
Navigation.findNavController(view!!).navigate(directions)
}

View File

@ -223,10 +223,12 @@ class BookmarkFragment : Fragment(), CoroutineScope, BackHandler, AccountObserve
}
is BookmarkAction.Share -> {
it.item.url?.apply {
navigation
.navigate(
BookmarkFragmentDirections.actionBookmarkFragmentToShareFragment(this)
navigation.navigate(
BookmarkFragmentDirections.actionBookmarkFragmentToShareFragment(
this,
it.item.title
)
)
requireComponents.analytics.metrics.track(Event.ShareBookmark)
}
}

View File

@ -41,6 +41,7 @@ import org.mozilla.fenix.ext.requireComponents
import org.mozilla.fenix.mvi.ActionBusFactory
import org.mozilla.fenix.mvi.getAutoDisposeObservable
import org.mozilla.fenix.mvi.getManagedEmitter
import org.mozilla.fenix.share.ShareTab
import java.net.MalformedURLException
import java.net.URL
import kotlin.coroutines.CoroutineContext
@ -183,10 +184,8 @@ class HistoryFragment : Fragment(), CoroutineScope, BackHandler {
when {
selectedHistory.size == 1 -> share(selectedHistory.first().url)
selectedHistory.size > 1 -> {
val shareText = selectedHistory.joinToString("\n") {
it.url
}
share(shareText)
val shareTabs = selectedHistory.map { ShareTab(it.url, it.title) }
share(tabs = shareTabs)
}
}
true
@ -283,8 +282,9 @@ class HistoryFragment : Fragment(), CoroutineScope, BackHandler {
}
}
private fun share(text: String) {
val directions = HistoryFragmentDirections.actionHistoryFragmentToShareFragment(text)
private fun share(url: String? = null, tabs: List<ShareTab>? = null) {
val directions =
HistoryFragmentDirections.actionHistoryFragmentToShareFragment(url = url, tabs = tabs?.toTypedArray())
Navigation.findNavController(view!!).navigate(directions)
}
}

View File

@ -9,6 +9,7 @@ import android.content.Intent.ACTION_SEND
import android.content.Intent.EXTRA_TEXT
import android.content.Intent.FLAG_ACTIVITY_NEW_TASK
import android.os.Bundle
import android.os.Parcelable
import android.view.ContextThemeWrapper
import android.view.LayoutInflater
import android.view.View
@ -16,11 +17,13 @@ import android.view.ViewGroup
import androidx.appcompat.app.AlertDialog
import androidx.appcompat.app.AppCompatDialogFragment
import androidx.navigation.fragment.NavHostFragment.findNavController
import kotlinx.android.parcel.Parcelize
import kotlinx.android.synthetic.main.fragment_share.view.*
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.Job
import mozilla.components.concept.sync.DeviceEventOutgoing
import mozilla.components.concept.sync.OAuthAccount
import org.mozilla.fenix.FenixViewModelProvider
import org.mozilla.fenix.R
import org.mozilla.fenix.ext.requireComponents
@ -33,8 +36,7 @@ class ShareFragment : AppCompatDialogFragment(), CoroutineScope {
get() = Dispatchers.Main + job
private lateinit var job: Job
private lateinit var component: ShareComponent
private lateinit var url: String
private lateinit var title: String
private var tabs: Array<ShareTab> = emptyArray()
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
@ -45,9 +47,13 @@ class ShareFragment : AppCompatDialogFragment(), CoroutineScope {
val view = inflater.inflate(R.layout.fragment_share, container, false)
val args = ShareFragmentArgs.fromBundle(arguments!!)
if (args.url == null && args.tabs.isNullOrEmpty()) {
throw IllegalStateException("URL and tabs cannot both be null.")
}
job = Job()
url = args.url
title = args.title ?: ""
tabs = args.tabs ?: arrayOf(ShareTab(args.url!!, args.title ?: ""))
component = ShareComponent(
view.share_wrapper,
ActionBusFactory.get(this),
@ -99,10 +105,7 @@ class ShareFragment : AppCompatDialogFragment(), CoroutineScope {
is ShareAction.ShareDeviceClicked -> {
val authAccount = requireComponents.backgroundServices.accountManager.authenticatedAccount()
authAccount?.run {
deviceConstellation().sendEventToDeviceAsync(
it.device.id,
DeviceEventOutgoing.SendTab(title, url)
)
sendSendTab(this, it.device.id, tabs)
}
dismiss()
}
@ -110,17 +113,17 @@ class ShareFragment : AppCompatDialogFragment(), CoroutineScope {
val authAccount = requireComponents.backgroundServices.accountManager.authenticatedAccount()
authAccount?.run {
it.devices.forEach { device ->
deviceConstellation().sendEventToDeviceAsync(
device.id,
DeviceEventOutgoing.SendTab(title, url)
)
sendSendTab(this, device.id, tabs)
}
}
dismiss()
}
is ShareAction.ShareAppClicked -> {
val shareText = tabs.joinToString("\n") { tab -> tab.url }
val intent = Intent(ACTION_SEND).apply {
putExtra(EXTRA_TEXT, url)
putExtra(EXTRA_TEXT, shareText)
type = "text/plain"
flags = FLAG_ACTIVITY_NEW_TASK
`package` = it.packageName
@ -131,4 +134,18 @@ class ShareFragment : AppCompatDialogFragment(), CoroutineScope {
}
}
}
private fun sendSendTab(account: OAuthAccount, deviceId: String, tabs: Array<ShareTab>) {
account.run {
tabs.forEach { tab ->
deviceConstellation().sendEventToDeviceAsync(
deviceId,
DeviceEventOutgoing.SendTab(tab.title, tab.url)
)
}
}
}
}
@Parcelize
data class ShareTab(val url: String, val title: String, val sessionId: String? = null) : Parcelable

View File

@ -402,12 +402,19 @@
tools:layout="@layout/fragment_share" >
<argument
android:name="url"
app:argType="string" />
android:defaultValue="@null"
app:argType="string"
app:nullable="true" />
<argument
android:name="title"
android:defaultValue="@null"
app:argType="string"
app:nullable="true" />
<argument
android:name="tabs"
android:defaultValue="@null"
app:nullable="true"
app:argType="org.mozilla.fenix.share.ShareTab[]" />
<action
android:id="@+id/action_shareFragment_to_turnOnSyncFragment"
app:destination="@+id/turnOnSyncFragment"