* Update modpack button copy * Change outlined button style for standard buttons * add unknown pack warning modal * implementation * Redo download toasts * prepr * improve hit area of window controls * implement "don't show again" * prepr * duplicate modal ref declarations * increase spacing of progress items * address truman review
270 lines
8.4 KiB
Vue
270 lines
8.4 KiB
Vue
<script setup lang="ts">
|
|
import { Combobox, defineMessages, ThemeSelector, Toggle, useVIntl } from '@modrinth/ui'
|
|
import { ref, watch } from 'vue'
|
|
|
|
import { get, set } from '@/helpers/settings.ts'
|
|
import { getOS } from '@/helpers/utils'
|
|
import { useTheming } from '@/store/state'
|
|
import type { ColorTheme, FeatureFlag } from '@/store/theme.ts'
|
|
|
|
const themeStore = useTheming()
|
|
const { formatMessage } = useVIntl()
|
|
|
|
const worldsInHomeFeatureFlag = 'worlds_in_home' as FeatureFlag
|
|
const skipUnknownPackWarningFeatureFlag = 'skip_unknown_pack_warning' as FeatureFlag
|
|
|
|
const messages = defineMessages({
|
|
colorThemeTitle: {
|
|
id: 'app.appearance-settings.color-theme.title',
|
|
defaultMessage: 'Color theme',
|
|
},
|
|
colorThemeDescription: {
|
|
id: 'app.appearance-settings.color-theme.description',
|
|
defaultMessage: 'Select your preferred color theme for Modrinth App.',
|
|
},
|
|
advancedRenderingTitle: {
|
|
id: 'app.appearance-settings.advanced-rendering.title',
|
|
defaultMessage: 'Advanced rendering',
|
|
},
|
|
advancedRenderingDescription: {
|
|
id: 'app.appearance-settings.advanced-rendering.description',
|
|
defaultMessage:
|
|
'Enables advanced rendering such as blur effects that may cause performance issues without hardware-accelerated rendering.',
|
|
},
|
|
hideNametagTitle: {
|
|
id: 'app.appearance-settings.hide-nametag.title',
|
|
defaultMessage: 'Hide nametag',
|
|
},
|
|
hideNametagDescription: {
|
|
id: 'app.appearance-settings.hide-nametag.description',
|
|
defaultMessage: 'Disables the nametag above your player on the skins page.',
|
|
},
|
|
nativeDecorationsTitle: {
|
|
id: 'app.appearance-settings.native-decorations.title',
|
|
defaultMessage: 'Native decorations',
|
|
},
|
|
nativeDecorationsDescription: {
|
|
id: 'app.appearance-settings.native-decorations.description',
|
|
defaultMessage: 'Use system window frame (app restart required).',
|
|
},
|
|
minimizeLauncherTitle: {
|
|
id: 'app.appearance-settings.minimize-launcher.title',
|
|
defaultMessage: 'Minimize launcher',
|
|
},
|
|
minimizeLauncherDescription: {
|
|
id: 'app.appearance-settings.minimize-launcher.description',
|
|
defaultMessage: 'Minimize the launcher when a Minecraft process starts.',
|
|
},
|
|
defaultLandingPageTitle: {
|
|
id: 'app.appearance-settings.default-landing-page.title',
|
|
defaultMessage: 'Default landing page',
|
|
},
|
|
defaultLandingPageDescription: {
|
|
id: 'app.appearance-settings.default-landing-page.description',
|
|
defaultMessage: 'Change the page to which the launcher opens on.',
|
|
},
|
|
defaultLandingPageHome: {
|
|
id: 'app.appearance-settings.default-landing-page.home',
|
|
defaultMessage: 'Home',
|
|
},
|
|
defaultLandingPageLibrary: {
|
|
id: 'app.appearance-settings.default-landing-page.library',
|
|
defaultMessage: 'Library',
|
|
},
|
|
selectOption: {
|
|
id: 'app.appearance-settings.select-option',
|
|
defaultMessage: 'Select an option',
|
|
},
|
|
jumpBackIntoWorldsTitle: {
|
|
id: 'app.appearance-settings.jump-back-into-worlds.title',
|
|
defaultMessage: 'Jump back into worlds',
|
|
},
|
|
jumpBackIntoWorldsDescription: {
|
|
id: 'app.appearance-settings.jump-back-into-worlds.description',
|
|
defaultMessage: 'Includes recent worlds in the "Jump back in" section on the Home page.',
|
|
},
|
|
toggleSidebarTitle: {
|
|
id: 'app.appearance-settings.toggle-sidebar.title',
|
|
defaultMessage: 'Toggle sidebar',
|
|
},
|
|
toggleSidebarDescription: {
|
|
id: 'app.appearance-settings.toggle-sidebar.description',
|
|
defaultMessage: 'Enables the ability to toggle the sidebar.',
|
|
},
|
|
unknownPackWarningTitle: {
|
|
id: 'app.appearance-settings.unknown-pack-warning.title',
|
|
defaultMessage: 'Warn me before installing unknown modpacks',
|
|
},
|
|
unknownPackWarningDescription: {
|
|
id: 'app.appearance-settings.unknown-pack-warning.description',
|
|
defaultMessage:
|
|
"If you attempt to install a Modrinth Pack file (.mrpack) that isn't hosted on Modrinth, we'll make sure you understand the risks before installing it.",
|
|
},
|
|
})
|
|
|
|
const os = ref(await getOS())
|
|
const settings = ref(await get())
|
|
|
|
watch(
|
|
settings,
|
|
async () => {
|
|
await set(settings.value)
|
|
},
|
|
{ deep: true },
|
|
)
|
|
</script>
|
|
<template>
|
|
<h2 class="m-0 text-lg font-semibold text-contrast">
|
|
{{ formatMessage(messages.colorThemeTitle) }}
|
|
</h2>
|
|
<p class="m-0 mt-1">{{ formatMessage(messages.colorThemeDescription) }}</p>
|
|
|
|
<ThemeSelector
|
|
:update-color-theme="
|
|
(theme: ColorTheme) => {
|
|
themeStore.setThemeState(theme)
|
|
settings.theme = theme
|
|
}
|
|
"
|
|
:current-theme="settings.theme"
|
|
:theme-options="themeStore.getThemeOptions()"
|
|
system-theme-color="system"
|
|
/>
|
|
|
|
<div class="mt-6 flex items-center justify-between">
|
|
<div>
|
|
<h2 class="m-0 text-lg font-semibold text-contrast">
|
|
{{ formatMessage(messages.advancedRenderingTitle) }}
|
|
</h2>
|
|
<p class="m-0 mt-1">
|
|
{{ formatMessage(messages.advancedRenderingDescription) }}
|
|
</p>
|
|
</div>
|
|
|
|
<Toggle
|
|
id="advanced-rendering"
|
|
:model-value="themeStore.advancedRendering"
|
|
@update:model-value="
|
|
(e) => {
|
|
themeStore.advancedRendering = !!e
|
|
settings.advanced_rendering = themeStore.advancedRendering
|
|
}
|
|
"
|
|
/>
|
|
</div>
|
|
|
|
<div class="mt-6 flex items-center justify-between">
|
|
<div>
|
|
<h2 class="m-0 text-lg font-semibold text-contrast">
|
|
{{ formatMessage(messages.hideNametagTitle) }}
|
|
</h2>
|
|
<p class="m-0 mt-1">{{ formatMessage(messages.hideNametagDescription) }}</p>
|
|
</div>
|
|
<Toggle id="hide-nametag-skins-page" v-model="settings.hide_nametag_skins_page" />
|
|
</div>
|
|
|
|
<div v-if="os !== 'MacOS'" class="mt-6 flex items-center justify-between gap-4">
|
|
<div>
|
|
<h2 class="m-0 text-lg font-semibold text-contrast">
|
|
{{ formatMessage(messages.nativeDecorationsTitle) }}
|
|
</h2>
|
|
<p class="m-0 mt-1">{{ formatMessage(messages.nativeDecorationsDescription) }}</p>
|
|
</div>
|
|
<Toggle id="native-decorations" v-model="settings.native_decorations" />
|
|
</div>
|
|
|
|
<div class="mt-6 flex items-center justify-between">
|
|
<div>
|
|
<h2 class="m-0 text-lg font-semibold text-contrast">
|
|
{{ formatMessage(messages.minimizeLauncherTitle) }}
|
|
</h2>
|
|
<p class="m-0 mt-1">{{ formatMessage(messages.minimizeLauncherDescription) }}</p>
|
|
</div>
|
|
<Toggle id="minimize-launcher" v-model="settings.hide_on_process_start" />
|
|
</div>
|
|
|
|
<div class="mt-6 flex items-center justify-between">
|
|
<div>
|
|
<h2 class="m-0 text-lg font-semibold text-contrast">
|
|
{{ formatMessage(messages.defaultLandingPageTitle) }}
|
|
</h2>
|
|
<p class="m-0 mt-1">{{ formatMessage(messages.defaultLandingPageDescription) }}</p>
|
|
</div>
|
|
<Combobox
|
|
id="opening-page"
|
|
v-model="settings.default_page"
|
|
name="Opening page dropdown"
|
|
class="max-w-40"
|
|
:options="[
|
|
{
|
|
value: 'Home',
|
|
label: formatMessage(messages.defaultLandingPageHome),
|
|
},
|
|
{
|
|
value: 'Library',
|
|
label: formatMessage(messages.defaultLandingPageLibrary),
|
|
},
|
|
]"
|
|
:display-value="settings.default_page ?? 'Select an option'"
|
|
/>
|
|
</div>
|
|
|
|
<div class="mt-6 flex items-center justify-between">
|
|
<div>
|
|
<h2 class="m-0 text-lg font-semibold text-contrast">
|
|
{{ formatMessage(messages.jumpBackIntoWorldsTitle) }}
|
|
</h2>
|
|
<p class="m-0 mt-1">{{ formatMessage(messages.jumpBackIntoWorldsDescription) }}</p>
|
|
</div>
|
|
<Toggle
|
|
:model-value="themeStore.getFeatureFlag(worldsInHomeFeatureFlag)"
|
|
@update:model-value="
|
|
() => {
|
|
const newValue = !themeStore.getFeatureFlag(worldsInHomeFeatureFlag)
|
|
themeStore.featureFlags[worldsInHomeFeatureFlag] = newValue
|
|
settings.feature_flags[worldsInHomeFeatureFlag] = newValue
|
|
}
|
|
"
|
|
/>
|
|
</div>
|
|
|
|
<div class="mt-6 flex items-center justify-between gap-4">
|
|
<div>
|
|
<h2 class="m-0 text-lg font-semibold text-contrast">
|
|
{{ formatMessage(messages.unknownPackWarningTitle) }}
|
|
</h2>
|
|
<p class="m-0 mt-1">{{ formatMessage(messages.unknownPackWarningDescription) }}</p>
|
|
</div>
|
|
<Toggle
|
|
:model-value="!themeStore.getFeatureFlag(skipUnknownPackWarningFeatureFlag)"
|
|
@update:model-value="
|
|
(e) => {
|
|
const warnBeforeUnknownPackInstall = !!e
|
|
const skipUnknownPackWarning = !warnBeforeUnknownPackInstall
|
|
themeStore.featureFlags[skipUnknownPackWarningFeatureFlag] = skipUnknownPackWarning
|
|
settings.feature_flags[skipUnknownPackWarningFeatureFlag] = skipUnknownPackWarning
|
|
}
|
|
"
|
|
/>
|
|
</div>
|
|
|
|
<div class="mt-6 flex items-center justify-between">
|
|
<div>
|
|
<h2 class="m-0 text-lg font-semibold text-contrast">
|
|
{{ formatMessage(messages.toggleSidebarTitle) }}
|
|
</h2>
|
|
<p class="m-0 mt-1">{{ formatMessage(messages.toggleSidebarDescription) }}</p>
|
|
</div>
|
|
<Toggle
|
|
id="toggle-sidebar"
|
|
:model-value="settings.toggle_sidebar"
|
|
@update:model-value="
|
|
(e) => {
|
|
settings.toggle_sidebar = !!e
|
|
themeStore.toggleSidebar = settings.toggle_sidebar
|
|
}
|
|
"
|
|
/>
|
|
</div>
|
|
</template>
|