Merge pull request #2244 from ginnyTheCat/direct_share
Direct share support
This commit is contained in:
commit
7158f49fcb
|
@ -17,6 +17,7 @@ Improvements 🙌:
|
||||||
- Drawer: move settings access and add sign out action (#2171)
|
- Drawer: move settings access and add sign out action (#2171)
|
||||||
- Filter room member (and banned users) by name (#2184)
|
- Filter room member (and banned users) by name (#2184)
|
||||||
- Implement "Jump to read receipt" and "Mention" actions on the room member profile screen
|
- Implement "Jump to read receipt" and "Mention" actions on the room member profile screen
|
||||||
|
- Direct share (#2029)
|
||||||
- Add FAB to room members list (#2226)
|
- Add FAB to room members list (#2226)
|
||||||
- Add Sygnal API implementation to test is Push are correctly received
|
- Add Sygnal API implementation to test is Push are correctly received
|
||||||
- Add PushGateway API implementation to test if Push are correctly received
|
- Add PushGateway API implementation to test if Push are correctly received
|
||||||
|
|
|
@ -315,6 +315,7 @@ dependencies {
|
||||||
implementation "androidx.fragment:fragment-ktx:$fragment_version"
|
implementation "androidx.fragment:fragment-ktx:$fragment_version"
|
||||||
// Keep at 2.0.0-beta4 at the moment, as updating is breaking some UI
|
// Keep at 2.0.0-beta4 at the moment, as updating is breaking some UI
|
||||||
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta4'
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta4'
|
||||||
|
implementation "androidx.sharetarget:sharetarget:1.0.0"
|
||||||
implementation 'androidx.core:core-ktx:1.3.2'
|
implementation 'androidx.core:core-ktx:1.3.2'
|
||||||
|
|
||||||
implementation "org.threeten:threetenbp:1.4.0:no-tzdb"
|
implementation "org.threeten:threetenbp:1.4.0:no-tzdb"
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<share-target android:targetClass="im.vector.app.features.share.IncomingShareActivity">
|
||||||
|
<data android:mimeType="*/*" />
|
||||||
|
<category android:name="im.vector.app.debug.SHORTCUT_SHARE" />
|
||||||
|
</share-target>
|
||||||
|
</shortcuts>
|
|
@ -74,6 +74,10 @@
|
||||||
|
|
||||||
<category android:name="android.intent.category.LAUNCHER" />
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
|
|
||||||
|
<meta-data
|
||||||
|
android:name="android.app.shortcuts"
|
||||||
|
android:resource="@xml/shortcuts" />
|
||||||
</activity-alias>
|
</activity-alias>
|
||||||
|
|
||||||
<activity android:name=".features.home.HomeActivity" />
|
<activity android:name=".features.home.HomeActivity" />
|
||||||
|
@ -172,6 +176,10 @@
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
<category android:name="android.intent.category.OPENABLE" />
|
<category android:name="android.intent.category.OPENABLE" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
|
|
||||||
|
<meta-data
|
||||||
|
android:name="android.service.chooser.chooser_target_service"
|
||||||
|
android:value="androidx.sharetarget.ChooserTargetServiceCompat" />
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
<activity android:name=".features.roomprofile.RoomProfileActivity" />
|
<activity android:name=".features.roomprofile.RoomProfileActivity" />
|
||||||
|
|
|
@ -23,6 +23,7 @@ import androidx.annotation.WorkerThread
|
||||||
import androidx.core.content.pm.ShortcutInfoCompat
|
import androidx.core.content.pm.ShortcutInfoCompat
|
||||||
import androidx.core.content.pm.ShortcutManagerCompat
|
import androidx.core.content.pm.ShortcutManagerCompat
|
||||||
import androidx.core.graphics.drawable.IconCompat
|
import androidx.core.graphics.drawable.IconCompat
|
||||||
|
import im.vector.app.BuildConfig
|
||||||
import im.vector.app.core.glide.GlideApp
|
import im.vector.app.core.glide.GlideApp
|
||||||
import im.vector.app.core.utils.DimensionConverter
|
import im.vector.app.core.utils.DimensionConverter
|
||||||
import im.vector.app.features.home.room.detail.RoomDetailActivity
|
import im.vector.app.features.home.room.detail.RoomDetailActivity
|
||||||
|
@ -33,6 +34,7 @@ import javax.inject.Inject
|
||||||
private val useAdaptiveIcon = Build.VERSION.SDK_INT >= Build.VERSION_CODES.O
|
private val useAdaptiveIcon = Build.VERSION.SDK_INT >= Build.VERSION_CODES.O
|
||||||
private const val adaptiveIconSizeDp = 108
|
private const val adaptiveIconSizeDp = 108
|
||||||
private const val adaptiveIconOuterSidesDp = 18
|
private const val adaptiveIconOuterSidesDp = 18
|
||||||
|
private const val directShareCategory = BuildConfig.APPLICATION_ID + ".SHORTCUT_SHARE"
|
||||||
|
|
||||||
class ShortcutCreator @Inject constructor(
|
class ShortcutCreator @Inject constructor(
|
||||||
private val context: Context,
|
private val context: Context,
|
||||||
|
@ -65,6 +67,10 @@ class ShortcutCreator @Inject constructor(
|
||||||
.setShortLabel(roomSummary.displayName)
|
.setShortLabel(roomSummary.displayName)
|
||||||
.setIcon(bitmap?.toProfileImageIcon())
|
.setIcon(bitmap?.toProfileImageIcon())
|
||||||
.setIntent(intent)
|
.setIntent(intent)
|
||||||
|
|
||||||
|
// Make it show up in the direct share menu
|
||||||
|
.setCategories(setOf(directShareCategory))
|
||||||
|
|
||||||
.build()
|
.build()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,7 @@ import org.matrix.android.sdk.api.session.room.model.RoomSummary
|
||||||
sealed class IncomingShareAction : VectorViewModelAction {
|
sealed class IncomingShareAction : VectorViewModelAction {
|
||||||
data class SelectRoom(val roomSummary: RoomSummary, val enableMultiSelect: Boolean) : IncomingShareAction()
|
data class SelectRoom(val roomSummary: RoomSummary, val enableMultiSelect: Boolean) : IncomingShareAction()
|
||||||
object ShareToSelectedRooms : IncomingShareAction()
|
object ShareToSelectedRooms : IncomingShareAction()
|
||||||
|
data class ShareToRoom(val roomSummary: RoomSummary) : IncomingShareAction()
|
||||||
data class ShareMedia(val keepOriginalSize: Boolean) : IncomingShareAction()
|
data class ShareMedia(val keepOriginalSize: Boolean) : IncomingShareAction()
|
||||||
data class FilterWith(val filter: String) : IncomingShareAction()
|
data class FilterWith(val filter: String) : IncomingShareAction()
|
||||||
data class UpdateSharedData(val sharedData: SharedData) : IncomingShareAction()
|
data class UpdateSharedData(val sharedData: SharedData) : IncomingShareAction()
|
||||||
|
|
|
@ -71,6 +71,14 @@ class IncomingShareFragment @Inject constructor(
|
||||||
setupToolbar(incomingShareToolbar)
|
setupToolbar(incomingShareToolbar)
|
||||||
attachmentsHelper = AttachmentsHelper(requireContext(), this).register()
|
attachmentsHelper = AttachmentsHelper(requireContext(), this).register()
|
||||||
|
|
||||||
|
viewModel.observeViewEvents {
|
||||||
|
when (it) {
|
||||||
|
is IncomingShareViewEvents.ShareToRoom -> handleShareToRoom(it)
|
||||||
|
is IncomingShareViewEvents.EditMediaBeforeSending -> handleEditMediaBeforeSending(it)
|
||||||
|
is IncomingShareViewEvents.MultipleRoomsShareDone -> handleMultipleRoomsShareDone(it)
|
||||||
|
}.exhaustive
|
||||||
|
}
|
||||||
|
|
||||||
val intent = vectorBaseActivity.intent
|
val intent = vectorBaseActivity.intent
|
||||||
val isShareManaged = when (intent?.action) {
|
val isShareManaged = when (intent?.action) {
|
||||||
Intent.ACTION_SEND -> {
|
Intent.ACTION_SEND -> {
|
||||||
|
@ -78,6 +86,13 @@ class IncomingShareFragment @Inject constructor(
|
||||||
if (!isShareManaged) {
|
if (!isShareManaged) {
|
||||||
isShareManaged = handleTextShare(intent)
|
isShareManaged = handleTextShare(intent)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Direct share
|
||||||
|
if (intent.hasExtra(Intent.EXTRA_SHORTCUT_ID)) {
|
||||||
|
val roomId = intent.getStringExtra(Intent.EXTRA_SHORTCUT_ID)!!
|
||||||
|
sessionHolder.getSafeActiveSession()?.getRoomSummary(roomId)?.let { viewModel.handle(IncomingShareAction.ShareToRoom(it)) }
|
||||||
|
}
|
||||||
|
|
||||||
isShareManaged
|
isShareManaged
|
||||||
}
|
}
|
||||||
Intent.ACTION_SEND_MULTIPLE -> attachmentsHelper.handleShareIntent(requireContext(), intent)
|
Intent.ACTION_SEND_MULTIPLE -> attachmentsHelper.handleShareIntent(requireContext(), intent)
|
||||||
|
@ -101,13 +116,6 @@ class IncomingShareFragment @Inject constructor(
|
||||||
sendShareButton.setOnClickListener { _ ->
|
sendShareButton.setOnClickListener { _ ->
|
||||||
handleSendShare()
|
handleSendShare()
|
||||||
}
|
}
|
||||||
viewModel.observeViewEvents {
|
|
||||||
when (it) {
|
|
||||||
is IncomingShareViewEvents.ShareToRoom -> handleShareToRoom(it)
|
|
||||||
is IncomingShareViewEvents.EditMediaBeforeSending -> handleEditMediaBeforeSending(it)
|
|
||||||
is IncomingShareViewEvents.MultipleRoomsShareDone -> handleMultipleRoomsShareDone(it)
|
|
||||||
}.exhaustive
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun handleMultipleRoomsShareDone(viewEvent: IncomingShareViewEvents.MultipleRoomsShareDone) {
|
private fun handleMultipleRoomsShareDone(viewEvent: IncomingShareViewEvents.MultipleRoomsShareDone) {
|
||||||
|
|
|
@ -96,6 +96,7 @@ class IncomingShareViewModel @AssistedInject constructor(
|
||||||
when (action) {
|
when (action) {
|
||||||
is IncomingShareAction.SelectRoom -> handleSelectRoom(action)
|
is IncomingShareAction.SelectRoom -> handleSelectRoom(action)
|
||||||
is IncomingShareAction.ShareToSelectedRooms -> handleShareToSelectedRooms()
|
is IncomingShareAction.ShareToSelectedRooms -> handleShareToSelectedRooms()
|
||||||
|
is IncomingShareAction.ShareToRoom -> handleShareToRoom(action)
|
||||||
is IncomingShareAction.ShareMedia -> handleShareMediaToSelectedRooms(action)
|
is IncomingShareAction.ShareMedia -> handleShareMediaToSelectedRooms(action)
|
||||||
is IncomingShareAction.FilterWith -> handleFilter(action)
|
is IncomingShareAction.FilterWith -> handleFilter(action)
|
||||||
is IncomingShareAction.UpdateSharedData -> handleUpdateSharedData(action)
|
is IncomingShareAction.UpdateSharedData -> handleUpdateSharedData(action)
|
||||||
|
@ -134,6 +135,11 @@ class IncomingShareViewModel @AssistedInject constructor(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun handleShareToRoom(action: IncomingShareAction.ShareToRoom) = withState { state ->
|
||||||
|
val sharedData = state.sharedData ?: return@withState
|
||||||
|
_viewEvents.post(IncomingShareViewEvents.ShareToRoom(action.roomSummary, sharedData, showAlert = false))
|
||||||
|
}
|
||||||
|
|
||||||
private fun handleShareMediaToSelectedRooms(action: IncomingShareAction.ShareMedia) = withState { state ->
|
private fun handleShareMediaToSelectedRooms(action: IncomingShareAction.ShareMedia) = withState { state ->
|
||||||
(state.sharedData as? SharedData.Attachments)?.let {
|
(state.sharedData as? SharedData.Attachments)?.let {
|
||||||
shareAttachments(it.attachmentData, state.selectedRoomIds, proposeMediaEdition = false, compressMediaBeforeSending = !action.keepOriginalSize)
|
shareAttachments(it.attachmentData, state.selectedRoomIds, proposeMediaEdition = false, compressMediaBeforeSending = !action.keepOriginalSize)
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<share-target android:targetClass="im.vector.app.features.share.IncomingShareActivity">
|
||||||
|
<data android:mimeType="*/*" />
|
||||||
|
<category android:name="im.vector.app.SHORTCUT_SHARE" />
|
||||||
|
</share-target>
|
||||||
|
</shortcuts>
|
Loading…
Reference in New Issue