mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-10 04:37:25 +01:00
Make spotless
This commit is contained in:
parent
7a50521ad7
commit
0e0a9aac5b
@ -22,7 +22,7 @@ import androidx.compose.ui.text.TextRange
|
||||
import androidx.compose.ui.text.input.TextFieldValue
|
||||
import eu.kanade.tachiyomi.ui.manga.notes.MangaNotesScreenState
|
||||
|
||||
private const val MaxLength = 10_000
|
||||
private const val MAX_LENGTH = 10_000
|
||||
|
||||
@Composable
|
||||
fun MangaNotesTextArea(
|
||||
@ -41,12 +41,12 @@ fun MangaNotesTextArea(
|
||||
) {
|
||||
OutlinedTextField(
|
||||
value = text,
|
||||
onValueChange = { if (it.text.length <= MaxLength) text = it },
|
||||
onValueChange = { if (it.text.length <= MAX_LENGTH) text = it },
|
||||
modifier = Modifier
|
||||
.fillMaxSize()
|
||||
.focusRequester(focusRequester),
|
||||
supportingText = {
|
||||
val displayWarning = text.text.length > MaxLength / 10 * 9
|
||||
val displayWarning = text.text.length > MAX_LENGTH / 10 * 9
|
||||
if (!displayWarning) {
|
||||
Text(
|
||||
text = "0",
|
||||
@ -59,7 +59,7 @@ fun MangaNotesTextArea(
|
||||
exit = fadeOut(),
|
||||
) {
|
||||
Text(
|
||||
text = "${text.text.length} / $MaxLength",
|
||||
text = "${text.text.length} / $MAX_LENGTH",
|
||||
)
|
||||
}
|
||||
},
|
||||
|
@ -155,7 +155,7 @@ fun MangaToolbar(
|
||||
AppBar.OverflowAction(
|
||||
title = stringResource(MR.strings.action_notes),
|
||||
onClick = onClickNotes,
|
||||
)
|
||||
),
|
||||
)
|
||||
}
|
||||
.build(),
|
||||
|
@ -51,7 +51,7 @@ class MangaNotesScreen(
|
||||
navigateUp = navigator::pop,
|
||||
beginEditing = { screenModel.beginEditing() },
|
||||
endEditing = { screenModel.endEditing() },
|
||||
onSave = { screenModel.saveText(it) }
|
||||
onSave = { screenModel.saveText(it) },
|
||||
)
|
||||
}
|
||||
}
|
||||
|
@ -167,7 +167,7 @@ class MangaRepositoryImpl(
|
||||
updateStrategy = value.updateStrategy?.let(UpdateStrategyColumnAdapter::encode),
|
||||
version = value.version,
|
||||
isSyncing = 0,
|
||||
notes = value.notes
|
||||
notes = value.notes,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user