-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4036 from element-hq/feature/bma/extractVoiceMess…
…agePlayer Extract voice message player to its own module
- Loading branch information
Showing
23 changed files
with
321 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import extension.setupAnvil | ||
|
||
/* | ||
* Copyright 2024 New Vector Ltd. | ||
* | ||
* SPDX-License-Identifier: AGPL-3.0-only | ||
* Please see LICENSE in the repository root for full details. | ||
*/ | ||
plugins { | ||
id("io.element.android-compose-library") | ||
} | ||
|
||
android { | ||
namespace = "io.element.android.libraries.voiceplayer.api" | ||
} | ||
|
||
setupAnvil() | ||
|
||
dependencies { | ||
implementation(libs.androidx.annotationjvm) | ||
implementation(libs.coroutines.core) | ||
implementation(projects.libraries.matrix.api) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
.../main/kotlin/io/element/android/libraries/voiceplayer/api/VoiceMessagePresenterFactory.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* Copyright 2024 New Vector Ltd. | ||
* | ||
* SPDX-License-Identifier: AGPL-3.0-only | ||
* Please see LICENSE in the repository root for full details. | ||
*/ | ||
|
||
package io.element.android.libraries.voiceplayer.api | ||
|
||
import io.element.android.libraries.architecture.Presenter | ||
import io.element.android.libraries.matrix.api.core.EventId | ||
import io.element.android.libraries.matrix.api.media.MediaSource | ||
import kotlin.time.Duration | ||
|
||
interface VoiceMessagePresenterFactory { | ||
fun createVoiceMessagePresenter( | ||
eventId: EventId?, | ||
mediaSource: MediaSource, | ||
mimeType: String?, | ||
filename: String?, | ||
duration: Duration, | ||
): Presenter<VoiceMessageState> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
import extension.setupAnvil | ||
|
||
/* | ||
* Copyright 2024 New Vector Ltd. | ||
* | ||
* SPDX-License-Identifier: AGPL-3.0-only | ||
* Please see LICENSE in the repository root for full details. | ||
*/ | ||
plugins { | ||
id("io.element.android-compose-library") | ||
} | ||
|
||
android { | ||
namespace = "io.element.android.libraries.voiceplayer.impl" | ||
} | ||
|
||
setupAnvil() | ||
|
||
dependencies { | ||
api(projects.libraries.voiceplayer.api) | ||
|
||
implementation(projects.libraries.core) | ||
implementation(projects.libraries.di) | ||
implementation(projects.libraries.matrix.api) | ||
implementation(projects.libraries.mediaplayer.api) | ||
implementation(projects.libraries.uiUtils) | ||
implementation(projects.services.analytics.api) | ||
|
||
implementation(libs.androidx.annotationjvm) | ||
implementation(libs.coroutines.core) | ||
|
||
testImplementation(libs.molecule.runtime) | ||
testImplementation(libs.test.junit) | ||
testImplementation(libs.test.truth) | ||
testImplementation(libs.test.mockk) | ||
testImplementation(libs.test.turbine) | ||
testImplementation(libs.coroutines.core) | ||
testImplementation(libs.coroutines.test) | ||
testImplementation(projects.libraries.matrix.test) | ||
testImplementation(projects.libraries.mediaplayer.test) | ||
testImplementation(projects.services.analytics.test) | ||
testImplementation(projects.tests.testutils) | ||
} |
Oops, something went wrong.