feat(web): toggle theme shortcut (#22139)

This commit is contained in:
Jason Rasmussen 2025-09-17 12:12:23 -04:00 committed by GitHub
parent 6bb8903b05
commit 0b20d1df9f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,11 +1,22 @@
<script lang="ts">
import { shortcut } from '$lib/actions/shortcut';
import { defaultLang, langs, Theme } from '$lib/constants';
import { themeManager } from '$lib/managers/theme-manager.svelte';
import { lang } from '$lib/stores/preferences.store';
import { ThemeSwitcher } from '@immich/ui';
import { get } from 'svelte/store';
const handleToggleTheme = () => {
if (themeManager.theme.system) {
return;
}
themeManager.toggleTheme();
};
</script>
<svelte:window use:shortcut={{ shortcut: { key: 't', alt: true }, onShortcut: () => handleToggleTheme() }} />
{#if !themeManager.theme.system}
{#await langs
.find((item) => item.code === get(lang))