Add support for files navigation (when coming from the gallery)

This commit is contained in:
Benoit Marty 2025-01-17 12:19:42 +01:00 committed by Benoit Marty
parent 901ad85ee6
commit 7397dde87d
6 changed files with 34 additions and 7 deletions

View file

@ -31,10 +31,17 @@ interface MediaViewerEntryPoint : FeatureEntryPoint {
}
data class Params(
val mode: MediaViewerMode,
val eventId: EventId?,
val mediaInfo: MediaInfo,
val mediaSource: MediaSource,
val thumbnailSource: MediaSource?,
val canShowInfo: Boolean,
) : NodeInputs
enum class MediaViewerMode {
SingleMedia,
TimelineImagesAndVideos,
TimelineFilesAndAudios,
}
}