Skip to content
Snippets Groups Projects
Commit 79b21d9e authored by Geoffrey Métais's avatar Geoffrey Métais
Browse files

Browser: post loading values in main thread

parent e56cd4fc
No related branches found
No related tags found
No related merge requests found
Pipeline #7711 passed with stage
in 3 minutes and 41 seconds
......@@ -97,7 +97,7 @@ abstract class BrowserProvider(val context: Context, val dataset: LiveDataset<Me
}
protected open fun browse(url: String? = null) {
loading.value = true
loading.postValue(true)
browserActor.post(Browse(url))
}
......@@ -107,14 +107,14 @@ abstract class BrowserProvider(val context: Context, val dataset: LiveDataset<Me
for (media in browserChannel) findMedia(media)?.let { addMedia(it) }
if (dataset.value.isNotEmpty()) parseSubDirectories()
else dataset.clear() // send observable event when folder is empty
loading.value = false
loading.postValue(false)
}
protected open fun addMedia(media: MediaLibraryItem) = dataset.add(media)
open fun refresh() {
if (url === null) return
loading.value = true
loading.postValue(true)
browserActor.post(Refresh)
}
......@@ -145,7 +145,7 @@ abstract class BrowserProvider(val context: Context, val dataset: LiveDataset<Me
computeHeaders(value)
dataset.value = value
parseSubDirectories()
loading.value = false
loading.postValue(false)
}
private suspend fun parseSubDirectoriesImpl() {
......@@ -265,7 +265,7 @@ abstract class BrowserProvider(val context: Context, val dataset: LiveDataset<Me
open fun release() {
browserActor.post(Release)
cancel()
loading.value = false
loading.postValue(false)
}
protected fun getList(url: String) = prefetchLists[url]
......
......@@ -77,7 +77,7 @@ class StorageProvider(context: Context, dataset: LiveDataset<MediaLibraryItem>,
val value: MutableList<MediaLibraryItem> = browserChannel.filter { it.isStorage() }.mapTo(mutableListOf()) { Storage(it.uri)}
dataset.value = value
parseSubDirectories()
loading.value = false
loading.postValue(false)
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment