miru/src/routes/app/settings/interface/+page.svelte
2025-05-22 16:05:46 +02:00

71 lines
3 KiB
Svelte

<script lang='ts' context='module'>
// eslint-disable-next-line svelte/no-svelte-internal
import { append, element } from 'svelte/internal'
import { persisted } from 'svelte-persisted-store'
const style = element('style')
style.id = 'customThemes'
append(document.head, style)
export const variables = persisted('theme', '')
variables.subscribe(value => {
style.textContent = `:root{${value.replace(/{|}/g, '')}}`
})
</script>
<script lang='ts'>
import SettingCard from '$lib/components/SettingCard.svelte'
import { SingleCombo } from '$lib/components/ui/combobox'
import { Switch } from '$lib/components/ui/switch'
import native from '$lib/modules/native'
import { settings, SUPPORTS } from '$lib/modules/settings'
import { Textarea } from '$lib/components/ui/textarea'
const angle = {
default: 'Default',
d3d9: 'D3D9',
d3d11: 'D3D11',
warp: 'Warp',
gl: 'GL',
gles: 'GLES',
swiftshader: 'SwiftShader',
vulkan: 'Vulkan',
metal: 'Metal'
}
const idle = {
off: 'Off',
fast: 'Fast',
fancy: 'Fancy'
}
function changeAngle (value: string) {
native.setAngle(value)
}
$: native.toggleDiscordDetails($settings.showDetailsInRPC)
</script>
<div class='space-y-3 pb-10 lg:max-w-4xl'>
{#if !SUPPORTS.isAndroid}
<div class='font-weight-bold text-xl font-bold'>Rich Pressence Settings</div>
<SettingCard let:id title='Show Details in Discord Rich Presence' description='Shows currently played anime and episode in Discord rich presence.'>
<Switch {id} bind:checked={$settings.showDetailsInRPC} />
</SettingCard>
{/if}
<SettingCard let:id title='CSS Variables' description='Used for custom themes. Can change colors, sizes, spacing and more. Supports only variables. Best way to discover variables is to use the built-in devtools via Ctrl+Shift+I or F12.'>
<Textarea class='form-control w-60 shrink-0 mw-full bg-dark' placeholder='--accent-color: #e5204c;' bind:value={$variables} {id} />
</SettingCard>
{#if !SUPPORTS.isAndroid}
<div class='font-weight-bold text-xl font-bold'>Rendering Settings</div>
<SettingCard title='ANGLE Backend' description="What ANGLE backend to use for rendering. DON'T CHANGE WITHOUT REASON! On some Windows machines D3D9 might help with flicker. Changing this setting to something your device doesn't support might prevent Miru from opening which will require a full reinstall. While Vulkan is an available option it might not be fully supported on Linux.">
<SingleCombo bind:value={$settings.angle} items={angle} class='w-40 shrink-0 border-input border' onSelected={changeAngle} />
</SettingCard>
<div class='font-weight-bold text-xl font-bold'>UI Settings</div>
<SettingCard title='Idle Animation' description='Idle 3d animation settings. Fast turns off some heavy details. Fancy can cause performance issues on very low end devices.'>
<SingleCombo bind:value={$settings.idleAnimation} items={idle} class='w-40 shrink-0 border-input border' onSelected={changeAngle} />
</SettingCard>
{/if}
</div>