Add documentation on buildMediaViewerPageList.
This commit is contained in:
parent
d1d323424d
commit
0b5ad29391
1 changed files with 5 additions and 0 deletions
|
|
@ -102,6 +102,11 @@ class MediaViewerDataSource(
|
||||||
return buildMediaViewerPageList(initialMediaItems)
|
return buildMediaViewerPageList(initialMediaItems)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build a list of [MediaViewerPageData] from a list of [MediaItem].
|
||||||
|
* In particular, create a mutable state of AsyncData<LocalMedia> for each media item, which
|
||||||
|
* will be used to render the downloaded media (see [loadMedia] which will update this value).
|
||||||
|
*/
|
||||||
private fun buildMediaViewerPageList(groupedItems: List<MediaItem>) = buildList {
|
private fun buildMediaViewerPageList(groupedItems: List<MediaItem>) = buildList {
|
||||||
groupedItems.forEach { mediaItem ->
|
groupedItems.forEach { mediaItem ->
|
||||||
when (mediaItem) {
|
when (mediaItem) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue