mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Force LTR in some UI, update actions autoclose
This commit is contained in:
parent
b74e977b6a
commit
494e27f482
@ -61,6 +61,7 @@ import androidx.compose.ui.graphics.drawscope.translate
|
||||
import androidx.compose.ui.graphics.graphicsLayer
|
||||
import androidx.compose.ui.hapticfeedback.HapticFeedbackType
|
||||
import androidx.compose.ui.input.pointer.pointerInput
|
||||
import androidx.compose.ui.platform.LocalConfiguration
|
||||
import androidx.compose.ui.platform.LocalContext
|
||||
import androidx.compose.ui.platform.LocalDensity
|
||||
import androidx.compose.ui.platform.LocalHapticFeedback
|
||||
@ -403,6 +404,7 @@ fun LazyItemScope.ActionItem(idx: Int, action: Action, onSelect: (Action) -> Uni
|
||||
context.setSetting(
|
||||
ExpandableActionItems, ActionRegistry.moveElement(
|
||||
context.getSetting(ExpandableActionItems, DefaultActionsString),
|
||||
DefaultActions,
|
||||
action,
|
||||
1
|
||||
)
|
||||
@ -414,6 +416,7 @@ fun LazyItemScope.ActionItem(idx: Int, action: Action, onSelect: (Action) -> Uni
|
||||
context.setSetting(
|
||||
ExpandableActionItems, ActionRegistry.moveElement(
|
||||
context.getSetting(ExpandableActionItems, DefaultActionsString),
|
||||
DefaultActions,
|
||||
action,
|
||||
-1
|
||||
)
|
||||
@ -486,7 +489,6 @@ fun ActionItemSmall(action: Action, onSelect: (Action) -> Unit) {
|
||||
fun ActionItems(onSelect: (Action) -> Unit) {
|
||||
val actions = useDataStoreValueBlocking(key = ExpandableActionItems, default = DefaultActionsString)
|
||||
|
||||
if(actions != null) {
|
||||
val actionItems = ActionRegistry.stringToActions(actions, DefaultActions)
|
||||
|
||||
LazyRow {
|
||||
@ -494,7 +496,6 @@ fun ActionItems(onSelect: (Action) -> Unit) {
|
||||
ActionItem(it, actionItems[it], onSelect)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -588,7 +589,8 @@ fun ActionBar(
|
||||
inlineSuggestions: List<MutableState<View?>>,
|
||||
forceOpenActionsInitially: Boolean = false,
|
||||
importantNotice: ImportantNotice? = null,
|
||||
keyboardManagerForAction: KeyboardManagerForAction? = null
|
||||
keyboardManagerForAction: KeyboardManagerForAction? = null,
|
||||
actionsForcedOpenByUser: MutableState<Boolean> = mutableStateOf(false)
|
||||
) {
|
||||
val view = LocalView.current
|
||||
val context = LocalContext.current
|
||||
@ -600,14 +602,16 @@ fun ActionBar(
|
||||
}
|
||||
|
||||
LaunchedEffect(words) {
|
||||
if(words != null && !words.isEmpty) {
|
||||
if(words != null && !words.isEmpty && !actionsForcedOpenByUser.value) {
|
||||
isActionsOpen.value = false
|
||||
actionsForcedOpenByUser.value = false
|
||||
}
|
||||
}
|
||||
|
||||
LaunchedEffect(inlineSuggestions) {
|
||||
if(inlineSuggestions.isNotEmpty()) {
|
||||
isActionsOpen.value = false
|
||||
actionsForcedOpenByUser.value = false
|
||||
}
|
||||
}
|
||||
|
||||
@ -618,6 +622,8 @@ fun ActionBar(
|
||||
Row {
|
||||
ExpandActionsButton(isActionsOpen.value) {
|
||||
isActionsOpen.value = !isActionsOpen.value
|
||||
actionsForcedOpenByUser.value = isActionsOpen.value
|
||||
|
||||
if(isActionsOpen.value && importantNotice != null) {
|
||||
importantNotice.onDismiss(context)
|
||||
}
|
||||
|
@ -44,8 +44,10 @@ import androidx.compose.ui.input.pointer.pointerInput
|
||||
import androidx.compose.ui.layout.onSizeChanged
|
||||
import androidx.compose.ui.platform.ComposeView
|
||||
import androidx.compose.ui.platform.LocalDensity
|
||||
import androidx.compose.ui.platform.LocalLayoutDirection
|
||||
import androidx.compose.ui.platform.ViewCompositionStrategy
|
||||
import androidx.compose.ui.res.stringResource
|
||||
import androidx.compose.ui.unit.LayoutDirection
|
||||
import androidx.compose.ui.unit.dp
|
||||
import androidx.lifecycle.LifecycleCoroutineScope
|
||||
import androidx.lifecycle.lifecycleScope
|
||||
@ -259,6 +261,8 @@ class UixManager(private val latinIME: LatinIME) {
|
||||
private var numSuggestionsSinceNotice = 0
|
||||
private var currentNotice: MutableState<ImportantNotice?> = mutableStateOf(null)
|
||||
|
||||
private val actionsForcedOpenByUser = mutableStateOf(false)
|
||||
|
||||
var currWindowActionWindow: ActionWindow? = null
|
||||
|
||||
val isMainKeyboardHidden get() = mainKeyboardHidden
|
||||
@ -295,7 +299,8 @@ class UixManager(private val latinIME: LatinIME) {
|
||||
inlineSuggestions = inlineSuggestions,
|
||||
onActionActivated = { onActionActivated(it) },
|
||||
importantNotice = currentNotice.value,
|
||||
keyboardManagerForAction = keyboardManagerForAction
|
||||
keyboardManagerForAction = keyboardManagerForAction,
|
||||
actionsForcedOpenByUser = actionsForcedOpenByUser
|
||||
)
|
||||
}
|
||||
}
|
||||
@ -319,6 +324,7 @@ class UixManager(private val latinIME: LatinIME) {
|
||||
|
||||
setContent()
|
||||
|
||||
actionsForcedOpenByUser.value = false
|
||||
keyboardManagerForAction.announce("${latinIME.resources.getString(action.name)} mode")
|
||||
}
|
||||
|
||||
@ -340,6 +346,7 @@ class UixManager(private val latinIME: LatinIME) {
|
||||
|
||||
setContent()
|
||||
|
||||
actionsForcedOpenByUser.value = false
|
||||
keyboardManagerForAction.announce("$name closed")
|
||||
}
|
||||
|
||||
@ -491,6 +498,7 @@ class UixManager(private val latinIME: LatinIME) {
|
||||
composeView?.setContent {
|
||||
UixThemeWrapper(latinIME.colorScheme) {
|
||||
CompositionLocalProvider(LocalManager provides keyboardManagerForAction) {
|
||||
CompositionLocalProvider(LocalLayoutDirection provides LayoutDirection.Ltr ) {
|
||||
Column {
|
||||
Spacer(modifier = Modifier.weight(1.0f))
|
||||
Surface(modifier = Modifier.onSizeChanged {
|
||||
@ -517,6 +525,7 @@ class UixManager(private val latinIME: LatinIME) {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
suspend fun showUpdateNoticeIfNeeded() {
|
||||
if(!BuildConfig.UPDATE_CHECKING) return
|
||||
@ -606,6 +615,7 @@ class UixManager(private val latinIME: LatinIME) {
|
||||
|
||||
fun onInputFinishing() {
|
||||
closeActionWindow()
|
||||
actionsForcedOpenByUser.value = false
|
||||
languageSwitcherDialog?.dismiss()
|
||||
}
|
||||
|
||||
|
@ -45,11 +45,13 @@ import androidx.compose.ui.graphics.painter.Painter
|
||||
import androidx.compose.ui.platform.LocalContext
|
||||
import androidx.compose.ui.platform.LocalDensity
|
||||
import androidx.compose.ui.platform.LocalInspectionMode
|
||||
import androidx.compose.ui.platform.LocalLayoutDirection
|
||||
import androidx.compose.ui.res.painterResource
|
||||
import androidx.compose.ui.res.stringResource
|
||||
import androidx.compose.ui.text.input.KeyboardType
|
||||
import androidx.compose.ui.tooling.preview.Preview
|
||||
import androidx.compose.ui.unit.Dp
|
||||
import androidx.compose.ui.unit.LayoutDirection
|
||||
import androidx.compose.ui.unit.dp
|
||||
import androidx.datastore.preferences.core.booleanPreferencesKey
|
||||
import androidx.datastore.preferences.core.longPreferencesKey
|
||||
@ -75,6 +77,8 @@ import org.futo.inputmethod.latin.uix.settings.ScrollableList
|
||||
import org.futo.inputmethod.latin.uix.settings.useDataStore
|
||||
import org.futo.inputmethod.latin.uix.settings.useDataStoreValueBlocking
|
||||
import org.futo.inputmethod.latin.uix.theme.Typography
|
||||
import org.futo.inputmethod.latin.uix.theme.UixThemeWrapper
|
||||
import org.futo.inputmethod.latin.uix.theme.presets.DynamicDarkTheme
|
||||
import org.futo.inputmethod.updates.dismissedMigrateUpdateNotice
|
||||
import org.futo.inputmethod.updates.openURI
|
||||
import kotlin.math.absoluteValue
|
||||
@ -151,14 +155,15 @@ fun IconText(icon: Painter, title: String, body: String) {
|
||||
fun PaymentText(verbose: Boolean) {
|
||||
val numDaysInstalled = useNumberOfDaysInstalled()
|
||||
|
||||
CompositionLocalProvider(LocalLayoutDirection provides LayoutDirection.Ltr) {
|
||||
// Doesn't make sense to say "You've been using for ... days" if it's less than seven days
|
||||
if(numDaysInstalled.intValue >= 7) {
|
||||
if (numDaysInstalled.intValue >= 7) {
|
||||
ParagraphText(stringResource(R.string.payment_text_1, numDaysInstalled.value))
|
||||
} else {
|
||||
ParagraphText(stringResource(R.string.payment_text_1_alt))
|
||||
}
|
||||
|
||||
if(verbose) {
|
||||
if (verbose) {
|
||||
IconText(
|
||||
icon = painterResource(id = R.drawable.activity),
|
||||
title = "Sustainable Development",
|
||||
@ -181,6 +186,7 @@ fun PaymentText(verbose: Boolean) {
|
||||
} else {
|
||||
ParagraphText(stringResource(R.string.payment_text_2))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
suspend fun pushNoticeReminderTime(context: Context, days: Float) {
|
||||
@ -427,7 +433,7 @@ fun PaymentSurface(isPrimary: Boolean, title: String, onClick: (() -> Unit)? = n
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true, heightDp = 10000)
|
||||
@Preview(showBackground = true, heightDp = 2048)
|
||||
fun PaymentScreen(
|
||||
navController: NavHostController = rememberNavController(),
|
||||
onExit: () -> Unit = { }
|
||||
@ -515,6 +521,7 @@ fun PaymentScreen(
|
||||
val lastValidRemindValue = remember { mutableFloatStateOf(5.0f) }
|
||||
val remindDays = remember { mutableStateOf("5") }
|
||||
val coroutineScope = rememberCoroutineScope()
|
||||
CompositionLocalProvider(LocalLayoutDirection provides LayoutDirection.Ltr) {
|
||||
Button(
|
||||
onClick = {
|
||||
coroutineScope.launch {
|
||||
@ -551,6 +558,7 @@ fun PaymentScreen(
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
NavigationItem(title = "Help", subtitle = "Need help? Visit our website", style = NavigationItemStyle.Misc, navigate = {
|
||||
context.openURI("https://keyboard.futo.org/")
|
||||
@ -558,6 +566,17 @@ fun PaymentScreen(
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(heightDp = 2048)
|
||||
private fun PaymentScreenDark() {
|
||||
val context = LocalContext.current
|
||||
UixThemeWrapper(colorScheme = DynamicDarkTheme.obtainColors(context)) {
|
||||
Surface(color = MaterialTheme.colorScheme.background) {
|
||||
PaymentScreen()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@Composable
|
||||
fun PaymentScreenSwitch(
|
||||
|
@ -4,6 +4,7 @@ import android.widget.Toast
|
||||
import androidx.compose.foundation.background
|
||||
import androidx.compose.foundation.border
|
||||
import androidx.compose.foundation.clickable
|
||||
import androidx.compose.foundation.layout.Arrangement
|
||||
import androidx.compose.foundation.layout.Box
|
||||
import androidx.compose.foundation.layout.Column
|
||||
import androidx.compose.foundation.layout.fillMaxSize
|
||||
@ -24,6 +25,7 @@ import androidx.compose.material3.MaterialTheme
|
||||
import androidx.compose.material3.Surface
|
||||
import androidx.compose.material3.Text
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.CompositionLocalProvider
|
||||
import androidx.compose.runtime.remember
|
||||
import androidx.compose.ui.Alignment
|
||||
import androidx.compose.ui.Modifier
|
||||
@ -31,10 +33,12 @@ import androidx.compose.ui.draw.clip
|
||||
import androidx.compose.ui.graphics.Path
|
||||
import androidx.compose.ui.platform.LocalContext
|
||||
import androidx.compose.ui.platform.LocalInspectionMode
|
||||
import androidx.compose.ui.platform.LocalLayoutDirection
|
||||
import androidx.compose.ui.res.stringResource
|
||||
import androidx.compose.ui.text.style.TextAlign
|
||||
import androidx.compose.ui.tooling.preview.Preview
|
||||
import androidx.compose.ui.unit.Dp
|
||||
import androidx.compose.ui.unit.LayoutDirection
|
||||
import androidx.compose.ui.unit.dp
|
||||
import org.futo.inputmethod.latin.uix.KeyBordersSetting
|
||||
import org.futo.inputmethod.latin.uix.KeyHintsSetting
|
||||
@ -234,10 +238,19 @@ fun ThemePicker(onSelected: (ThemeOption) -> Unit) {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
val originalDirection = LocalLayoutDirection.current
|
||||
|
||||
Column {
|
||||
CompositionLocalProvider(LocalLayoutDirection provides LayoutDirection.Ltr) {
|
||||
LazyVerticalGrid(
|
||||
modifier = Modifier.fillMaxWidth(),
|
||||
columns = GridCells.Adaptive(minSize = 172.dp)
|
||||
columns = GridCells.Adaptive(minSize = 172.dp),
|
||||
horizontalArrangement = if (LocalLayoutDirection.current == LayoutDirection.Rtl) {
|
||||
Arrangement.End
|
||||
} else {
|
||||
Arrangement.Start
|
||||
}
|
||||
) {
|
||||
items(availableThemeOptions.count()) {
|
||||
val themeOption = availableThemeOptions[it].second
|
||||
@ -262,33 +275,40 @@ fun ThemePicker(onSelected: (ThemeOption) -> Unit) {
|
||||
item(span = { GridItemSpan(maxCurrentLineSpan) }) { }
|
||||
|
||||
item(span = { GridItemSpan(maxCurrentLineSpan) }) {
|
||||
CompositionLocalProvider(LocalLayoutDirection provides originalDirection) {
|
||||
SettingToggleDataStore(
|
||||
title = "Key borders",
|
||||
setting = KeyBordersSetting
|
||||
)
|
||||
}
|
||||
}
|
||||
item(span = { GridItemSpan(maxCurrentLineSpan) }) {
|
||||
CompositionLocalProvider(LocalLayoutDirection provides originalDirection) {
|
||||
SettingToggleDataStore(
|
||||
title = "Show symbol hints",
|
||||
setting = KeyHintsSetting
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
item(span = { GridItemSpan(maxCurrentLineSpan) }) {
|
||||
CompositionLocalProvider(LocalLayoutDirection provides originalDirection) {
|
||||
SettingSlider(
|
||||
title = "Keyboard Height",
|
||||
setting = KeyboardHeightMultiplierSetting,
|
||||
range = 0.33f .. 1.75f, transform = { it },
|
||||
range = 0.33f..1.75f, transform = { it },
|
||||
indicator = { "${(it * 100.0f).roundToInt()}%" },
|
||||
steps = 16
|
||||
)
|
||||
}
|
||||
}
|
||||
item(span = { GridItemSpan(maxCurrentLineSpan) }) {
|
||||
CompositionLocalProvider(LocalLayoutDirection provides originalDirection) {
|
||||
SettingSlider(
|
||||
title = "Keyboard Offset",
|
||||
setting = KeyboardBottomOffsetSetting,
|
||||
range = 0.0f .. 50.0f,
|
||||
hardRange = 0.0f .. 250.0f,
|
||||
range = 0.0f..50.0f,
|
||||
hardRange = 0.0f..250.0f,
|
||||
transform = { it },
|
||||
indicator = { "${String.format("%.1f", it)} dp" },
|
||||
steps = 9
|
||||
@ -296,6 +316,8 @@ fun ThemePicker(onSelected: (ThemeOption) -> Unit) {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user