You've already forked AstralRinth
forked from didirus/AstralRinth
* Tabbed interface component * Start instance settings * New instance settings, mostly done minus modpacks * Extract i18n * Some more fixes with settings, still no modpacks yet * Lint * Modpack installation settings * Change no friends language * Remove options legacy button * fix lint, small bug * fix invalid cond on friends ui * update resource management page --------- Signed-off-by: Geometrically <18202329+Geometrically@users.noreply.github.com> Co-authored-by: Jai A <jaiagr+gpg@pm.me> Co-authored-by: Geometrically <18202329+Geometrically@users.noreply.github.com>
43 lines
1.2 KiB
Vue
43 lines
1.2 KiB
Vue
<script setup lang="ts">
|
|
import { Toggle } from '@modrinth/ui'
|
|
import { useTheming } from '@/store/state'
|
|
import { computed } from 'vue'
|
|
import type { Ref } from 'vue'
|
|
|
|
const themeStore = useTheming()
|
|
|
|
type ThemeStoreKeys = keyof typeof themeStore
|
|
|
|
const options: Ref<ThemeStoreKeys[]> = computed(() => {
|
|
return Object.keys(themeStore).filter((key) => key.startsWith('featureFlag_')) as ThemeStoreKeys[]
|
|
})
|
|
|
|
function getStoreValue<K extends ThemeStoreKeys>(key: K): (typeof themeStore)[K] {
|
|
return themeStore[key]
|
|
}
|
|
|
|
function setStoreValue<K extends ThemeStoreKeys>(key: K, value: (typeof themeStore)[K]) {
|
|
themeStore[key] = value
|
|
}
|
|
|
|
function formatFlagName(name: string) {
|
|
return name.replace('featureFlag_', '')
|
|
}
|
|
</script>
|
|
<template>
|
|
<div v-for="option in options" :key="option" class="mt-4 flex items-center justify-between">
|
|
<div>
|
|
<h2 class="m-0 text-lg font-extrabold text-contrast capitalize">
|
|
{{ formatFlagName(option) }}
|
|
</h2>
|
|
</div>
|
|
|
|
<Toggle
|
|
id="advanced-rendering"
|
|
:model-value="getStoreValue(option)"
|
|
:checked="getStoreValue(option)"
|
|
@update:model-value="() => setStoreValue(option, !themeStore[option])"
|
|
/>
|
|
</div>
|
|
</template>
|