mirror of
https://github.com/immich-app/immich.git
synced 2025-06-03 21:54:21 -04:00
163 lines
5.2 KiB
Svelte
163 lines
5.2 KiB
Svelte
<script lang="ts">
|
|
import { run } from 'svelte/legacy';
|
|
|
|
import { afterNavigate, beforeNavigate } from '$app/navigation';
|
|
import { page } from '$app/stores';
|
|
import DownloadPanel from '$lib/components/asset-viewer/download-panel.svelte';
|
|
import AppleHeader from '$lib/components/shared-components/apple-header.svelte';
|
|
import FullscreenContainer from '$lib/components/shared-components/fullscreen-container.svelte';
|
|
import NavigationLoadingBar from '$lib/components/shared-components/navigation-loading-bar.svelte';
|
|
import NotificationList from '$lib/components/shared-components/notification/notification-list.svelte';
|
|
import UploadPanel from '$lib/components/shared-components/upload-panel.svelte';
|
|
import VersionAnnouncementBox from '$lib/components/shared-components/version-announcement-box.svelte';
|
|
import { Theme } from '$lib/constants';
|
|
import { colorTheme, handleToggleTheme, type ThemeSetting } from '$lib/stores/preferences.store';
|
|
|
|
import { serverConfig } from '$lib/stores/server-config.store';
|
|
|
|
import { user } from '$lib/stores/user.store';
|
|
import { closeWebsocketConnection, openWebsocketConnection } from '$lib/stores/websocket';
|
|
import { copyToClipboard, setKey } from '$lib/utils';
|
|
import { onDestroy, onMount, type Snippet } from 'svelte';
|
|
import '../app.css';
|
|
import { isAssetViewerRoute, isSharedLinkRoute } from '$lib/utils/navigation';
|
|
import DialogWrapper from '$lib/components/shared-components/dialog/dialog-wrapper.svelte';
|
|
import { t } from 'svelte-i18n';
|
|
import Error from '$lib/components/error.svelte';
|
|
import { shortcut } from '$lib/actions/shortcut';
|
|
interface Props {
|
|
children?: Snippet;
|
|
}
|
|
|
|
let { children }: Props = $props();
|
|
|
|
let showNavigationLoadingBar = $state(false);
|
|
|
|
const changeTheme = (theme: ThemeSetting) => {
|
|
if (theme.system) {
|
|
theme.value = globalThis.matchMedia('(prefers-color-scheme: dark)').matches ? Theme.DARK : Theme.LIGHT;
|
|
}
|
|
|
|
if (theme.value === Theme.LIGHT) {
|
|
document.documentElement.classList.remove('dark');
|
|
} else {
|
|
document.documentElement.classList.add('dark');
|
|
}
|
|
};
|
|
|
|
const handleChangeTheme = () => {
|
|
if ($colorTheme.system) {
|
|
handleToggleTheme();
|
|
}
|
|
};
|
|
|
|
const getMyImmichLink = () => {
|
|
return new URL($page.url.pathname + $page.url.search, 'https://my.immich.app');
|
|
};
|
|
|
|
onMount(() => {
|
|
const element = document.querySelector('#stencil');
|
|
element?.remove();
|
|
// if the browser theme changes, changes the Immich theme too
|
|
globalThis.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', handleChangeTheme);
|
|
});
|
|
|
|
onDestroy(() => {
|
|
document.removeEventListener('change', handleChangeTheme);
|
|
});
|
|
|
|
if (isSharedLinkRoute($page.route?.id)) {
|
|
setKey($page.params.key);
|
|
}
|
|
|
|
beforeNavigate(({ from, to }) => {
|
|
setKey(isSharedLinkRoute(to?.route.id) ? to?.params?.key : undefined);
|
|
|
|
if (isAssetViewerRoute(from) && isAssetViewerRoute(to)) {
|
|
return;
|
|
}
|
|
showNavigationLoadingBar = true;
|
|
});
|
|
|
|
afterNavigate(() => {
|
|
showNavigationLoadingBar = false;
|
|
});
|
|
run(() => {
|
|
changeTheme($colorTheme);
|
|
});
|
|
run(() => {
|
|
if ($user) {
|
|
openWebsocketConnection();
|
|
} else {
|
|
closeWebsocketConnection();
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>{$page.data.meta?.title || 'Web'} - Immich</title>
|
|
<link rel="manifest" href="/manifest.json" crossorigin="use-credentials" />
|
|
<meta name="theme-color" content="currentColor" />
|
|
<AppleHeader />
|
|
|
|
{#if $page.data.meta}
|
|
<meta name="description" content={$page.data.meta.description} />
|
|
|
|
<!-- Facebook Meta Tags -->
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:title" content={$page.data.meta.title} />
|
|
<meta property="og:description" content={$page.data.meta.description} />
|
|
{#if $page.data.meta.imageUrl}
|
|
<meta
|
|
property="og:image"
|
|
content={new URL($page.data.meta.imageUrl, $serverConfig.externalDomain || globalThis.location.origin).href}
|
|
/>
|
|
{/if}
|
|
|
|
<!-- Twitter Meta Tags -->
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:title" content={$page.data.meta.title} />
|
|
<meta name="twitter:description" content={$page.data.meta.description} />
|
|
{#if $page.data.meta.imageUrl}
|
|
<meta
|
|
name="twitter:image"
|
|
content={new URL($page.data.meta.imageUrl, $serverConfig.externalDomain || globalThis.location.origin).href}
|
|
/>
|
|
{/if}
|
|
{/if}
|
|
</svelte:head>
|
|
|
|
<noscript
|
|
class="absolute z-[1000] flex h-screen w-screen place-content-center place-items-center bg-immich-bg dark:bg-immich-dark-bg dark:text-immich-dark-fg"
|
|
>
|
|
<FullscreenContainer title={$t('welcome_to_immich')}>
|
|
To use Immich, you must enable JavaScript or use a JavaScript compatible browser.
|
|
</FullscreenContainer>
|
|
</noscript>
|
|
|
|
<svelte:window
|
|
use:shortcut={{
|
|
shortcut: { ctrl: true, shift: true, key: 'm' },
|
|
onShortcut: () => copyToClipboard(getMyImmichLink().toString()),
|
|
}}
|
|
/>
|
|
|
|
{#if $page.data.error}
|
|
<Error error={$page.data.error}></Error>
|
|
{:else}
|
|
{@render children?.()}
|
|
{/if}
|
|
|
|
{#if showNavigationLoadingBar}
|
|
<NavigationLoadingBar />
|
|
{/if}
|
|
|
|
<DownloadPanel />
|
|
<UploadPanel />
|
|
<NotificationList />
|
|
<DialogWrapper />
|
|
|
|
{#if $user?.isAdmin}
|
|
<VersionAnnouncementBox />
|
|
{/if}
|