mirror of
https://github.com/modrinth/code.git
synced 2026-07-31 13:16:38 +00:00
* feat: blocking api interfaces * feat: block action on user pages + shared instance flows * feat: safety settings subpage * feat: interaction source settings * feat: finish social settings * feat: profile settings xplat * fix: prepr * feat: click on friends * default instance -> game options & fix feature flag width * fix: scroll indicators --------- Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com>
53 lines
1.5 KiB
Vue
53 lines
1.5 KiB
Vue
<script setup lang="ts">
|
|
import { ButtonStyled, Toggle } from '@modrinth/ui'
|
|
import { ref, watch } from 'vue'
|
|
|
|
import { get as getSettings, set as setSettings } from '@/helpers/settings.ts'
|
|
import { useTheming } from '@/store/state'
|
|
import { DEFAULT_FEATURE_FLAGS, type FeatureFlag } from '@/store/theme.ts'
|
|
|
|
const themeStore = useTheming()
|
|
|
|
const settings = ref(await getSettings())
|
|
const options = ref<FeatureFlag[]>(Object.keys(DEFAULT_FEATURE_FLAGS))
|
|
|
|
function setFeatureFlag(key: string, value: boolean) {
|
|
themeStore.featureFlags[key] = value
|
|
settings.value.feature_flags[key] = value
|
|
}
|
|
|
|
watch(
|
|
settings,
|
|
async () => {
|
|
await setSettings(settings.value)
|
|
},
|
|
{ deep: true },
|
|
)
|
|
</script>
|
|
<template>
|
|
<div class="flex flex-col gap-2.5">
|
|
<div v-for="option in options" :key="option" class="flex items-center justify-between">
|
|
<div>
|
|
<h2 class="m-0 text-lg font-semibold text-contrast capitalize">
|
|
{{ option.replaceAll('_', ' ') }}
|
|
</h2>
|
|
</div>
|
|
<div class="flex items-center gap-2">
|
|
<ButtonStyled type="transparent">
|
|
<button
|
|
:disabled="themeStore.getFeatureFlag(option) === DEFAULT_FEATURE_FLAGS[option]"
|
|
@click="setFeatureFlag(option, DEFAULT_FEATURE_FLAGS[option])"
|
|
>
|
|
Reset to default
|
|
</button>
|
|
</ButtonStyled>
|
|
<Toggle
|
|
id="advanced-rendering"
|
|
:model-value="themeStore.getFeatureFlag(option)"
|
|
@update:model-value="() => setFeatureFlag(option, !themeStore.getFeatureFlag(option))"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|