Tweak DatabaseSettings UI
This commit is contained in:
parent
693542f6e3
commit
8fc5ccabc6
2 changed files with 56 additions and 54 deletions
|
@ -13,10 +13,7 @@ import androidx.compose.foundation.rememberScrollState
|
|||
import androidx.compose.foundation.verticalScroll
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.getValue
|
||||
import androidx.compose.runtime.mutableStateOf
|
||||
import androidx.compose.runtime.saveable.autoSaver
|
||||
import androidx.compose.runtime.saveable.rememberSaveable
|
||||
import androidx.compose.runtime.setValue
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.platform.LocalContext
|
||||
import it.vfsfitvnm.vimusic.Database
|
||||
|
@ -26,7 +23,6 @@ import it.vfsfitvnm.vimusic.internal
|
|||
import it.vfsfitvnm.vimusic.path
|
||||
import it.vfsfitvnm.vimusic.query
|
||||
import it.vfsfitvnm.vimusic.service.PlayerService
|
||||
import it.vfsfitvnm.vimusic.ui.components.themed.ConfirmationDialog
|
||||
import it.vfsfitvnm.vimusic.ui.components.themed.Header
|
||||
import it.vfsfitvnm.vimusic.ui.styling.LocalAppearance
|
||||
import it.vfsfitvnm.vimusic.utils.intent
|
||||
|
@ -46,12 +42,11 @@ fun DatabaseSettings() {
|
|||
val context = LocalContext.current
|
||||
val (colorPalette) = LocalAppearance.current
|
||||
|
||||
var isShowingRestoreDialog by rememberSaveable {
|
||||
mutableStateOf(false)
|
||||
}
|
||||
|
||||
val queriesCount by produceSaveableState(initialValue = 0, stateSaver = autoSaver()) {
|
||||
Database.queriesCount().flowOn(Dispatchers.IO).distinctUntilChanged().collect { value = it }
|
||||
Database.queriesCount()
|
||||
.flowOn(Dispatchers.IO)
|
||||
.distinctUntilChanged()
|
||||
.collect { value = it }
|
||||
}
|
||||
|
||||
val openDocumentContract = ActivityResultContracts.OpenDocument()
|
||||
|
@ -62,8 +57,8 @@ fun DatabaseSettings() {
|
|||
|
||||
query {
|
||||
Database.internal.checkpoint()
|
||||
context.applicationContext.contentResolver.openOutputStream(uri)
|
||||
?.use { outputStream ->
|
||||
|
||||
context.applicationContext.contentResolver.openOutputStream(uri)?.use { outputStream ->
|
||||
FileInputStream(Database.internal.path).use { inputStream ->
|
||||
inputStream.copyTo(outputStream)
|
||||
}
|
||||
|
@ -78,9 +73,8 @@ fun DatabaseSettings() {
|
|||
Database.internal.checkpoint()
|
||||
Database.internal.close()
|
||||
|
||||
context.applicationContext.contentResolver.openInputStream(uri)?.use { inputStream ->
|
||||
FileOutputStream(Database.internal.path).use { outputStream ->
|
||||
context.applicationContext.contentResolver.openInputStream(uri)
|
||||
?.use { inputStream ->
|
||||
inputStream.copyTo(outputStream)
|
||||
}
|
||||
}
|
||||
|
@ -90,34 +84,6 @@ fun DatabaseSettings() {
|
|||
}
|
||||
}
|
||||
|
||||
if (isShowingRestoreDialog) {
|
||||
ConfirmationDialog(
|
||||
text = "The application will automatically close itself to avoid problems after restoring the database.",
|
||||
onDismiss = {
|
||||
isShowingRestoreDialog = false
|
||||
},
|
||||
onConfirm = {
|
||||
val input = arrayOf(
|
||||
"application/x-sqlite3",
|
||||
"application/vnd.sqlite3",
|
||||
"application/octet-stream"
|
||||
)
|
||||
|
||||
if (openDocumentContract.createIntent(context, input)
|
||||
.resolveActivity(context.packageManager) != null
|
||||
) {
|
||||
restoreLauncher.launch(input)
|
||||
} else {
|
||||
Toast.makeText(
|
||||
context,
|
||||
"Can't read the database from the external storage",
|
||||
Toast.LENGTH_SHORT
|
||||
).show()
|
||||
}
|
||||
},
|
||||
confirmText = "Ok"
|
||||
)
|
||||
}
|
||||
|
||||
Column(
|
||||
modifier = Modifier
|
||||
|
@ -164,11 +130,13 @@ fun DatabaseSettings() {
|
|||
) {
|
||||
backupLauncher.launch(input)
|
||||
} else {
|
||||
Toast.makeText(
|
||||
Toast
|
||||
.makeText(
|
||||
context,
|
||||
"Can't copy the database to the external storage",
|
||||
Toast.LENGTH_SHORT
|
||||
).show()
|
||||
)
|
||||
.show()
|
||||
}
|
||||
}
|
||||
)
|
||||
|
@ -177,12 +145,30 @@ fun DatabaseSettings() {
|
|||
|
||||
SettingsEntryGroupText(title = "RESTORE")
|
||||
|
||||
SettingsDescription(text = "Existing data will be overwritten.")
|
||||
ImportantSettingsDescription(text = "Existing data will be overwritten.\n${context.applicationInfo.nonLocalizedLabel} will automatically close itself after restoring the database.")
|
||||
|
||||
SettingsEntry(
|
||||
title = "Restore",
|
||||
text = "Import the database from the external storage",
|
||||
onClick = { isShowingRestoreDialog = true }
|
||||
onClick = {
|
||||
val input = arrayOf(
|
||||
"application/x-sqlite3",
|
||||
"application/vnd.sqlite3",
|
||||
"application/octet-stream"
|
||||
)
|
||||
|
||||
if (openDocumentContract.createIntent(context, input)
|
||||
.resolveActivity(context.packageManager) != null
|
||||
) {
|
||||
restoreLauncher.launch(input)
|
||||
} else {
|
||||
Toast.makeText(
|
||||
context,
|
||||
"Can't read the database from the external storage",
|
||||
Toast.LENGTH_SHORT
|
||||
).show()
|
||||
}
|
||||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -210,6 +210,22 @@ fun SettingsDescription(
|
|||
)
|
||||
}
|
||||
|
||||
@Composable
|
||||
fun ImportantSettingsDescription(
|
||||
text: String,
|
||||
modifier: Modifier = Modifier,
|
||||
) {
|
||||
val (colorPalette, typography) = LocalAppearance.current
|
||||
|
||||
BasicText(
|
||||
text = text,
|
||||
style = typography.xxs.semiBold.color(colorPalette.red),
|
||||
modifier = modifier
|
||||
.padding(start = 16.dp)
|
||||
.padding(horizontal = 16.dp, vertical = 8.dp)
|
||||
)
|
||||
}
|
||||
|
||||
@Composable
|
||||
fun SettingsEntryGroupText(
|
||||
title: String,
|
||||
|
|
Loading…
Reference in a new issue