mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
fix(web): layout nesting (#1881)
Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
This commit is contained in:
parent
2efa8b6960
commit
807bdfeda9
31 changed files with 72 additions and 88 deletions
|
@ -3,18 +3,36 @@
|
||||||
import ImmichLogo from './immich-logo.svelte';
|
import ImmichLogo from './immich-logo.svelte';
|
||||||
|
|
||||||
export let dropHandler: (event: DragEvent) => void;
|
export let dropHandler: (event: DragEvent) => void;
|
||||||
export let dragOverHandler: (event: DragEvent) => void;
|
|
||||||
export let dragLeaveHandler: () => void;
|
let dragStartTarget: EventTarget | null = null;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div
|
<svelte:body
|
||||||
in:fade={{ duration: 250 }}
|
on:dragenter|stopPropagation|preventDefault={(e) => {
|
||||||
out:fade={{ duration: 250 }}
|
dragStartTarget = e.target;
|
||||||
on:drop={dropHandler}
|
}}
|
||||||
on:dragover={dragOverHandler}
|
on:dragleave|stopPropagation|preventDefault={(e) => {
|
||||||
on:dragleave={dragLeaveHandler}
|
if (dragStartTarget === e.target) {
|
||||||
class="fixed inset-0 w-full h-full z-[1000] flex flex-col items-center justify-center bg-gray-100/90 dark:bg-immich-dark-bg/90 text-immich-dark-gray dark:text-immich-gray"
|
dragStartTarget = null;
|
||||||
>
|
}
|
||||||
<ImmichLogo height="200" width="200" class="animate-bounce pb-16" />
|
}}
|
||||||
<div class="text-2xl">Drop files anywhere to upload</div>
|
on:drop|stopPropagation|preventDefault={(e) => {
|
||||||
</div>
|
dragStartTarget = null;
|
||||||
|
dropHandler(e);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{#if dragStartTarget}
|
||||||
|
<div
|
||||||
|
class="fixed inset-0 w-full h-full z-[1000] flex flex-col items-center justify-center bg-gray-100/90 dark:bg-immich-dark-bg/90 text-immich-dark-gray dark:text-immich-gray"
|
||||||
|
transition:fade={{ duration: 250 }}
|
||||||
|
on:dragover={(e) => {
|
||||||
|
// Prevent browser from opening the dropped file.
|
||||||
|
e.stopPropagation();
|
||||||
|
e.preventDefault();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<ImmichLogo class="animate-bounce w-48 m-16" />
|
||||||
|
<div class="text-2xl">Drop files anywhere to upload</div>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
|
@ -48,7 +48,7 @@
|
||||||
<SideBarButton
|
<SideBarButton
|
||||||
title="Photos"
|
title="Photos"
|
||||||
logo={ImageOutline}
|
logo={ImageOutline}
|
||||||
isSelected={$page.route.id === AppRoute.PHOTOS}
|
isSelected={$page.route.id === '/(user)/photos'}
|
||||||
>
|
>
|
||||||
<svelte:fragment slot="moreInformation">
|
<svelte:fragment slot="moreInformation">
|
||||||
{#await getAssetCount()}
|
{#await getAssetCount()}
|
||||||
|
@ -66,7 +66,7 @@
|
||||||
<SideBarButton
|
<SideBarButton
|
||||||
title="Sharing"
|
title="Sharing"
|
||||||
logo={AccountMultipleOutline}
|
logo={AccountMultipleOutline}
|
||||||
isSelected={$page.route.id === AppRoute.SHARING}
|
isSelected={$page.route.id === '/(user)/sharing'}
|
||||||
>
|
>
|
||||||
<svelte:fragment slot="moreInformation">
|
<svelte:fragment slot="moreInformation">
|
||||||
{#await getAlbumCount()}
|
{#await getAlbumCount()}
|
||||||
|
@ -87,7 +87,7 @@
|
||||||
<SideBarButton
|
<SideBarButton
|
||||||
title="Favorites"
|
title="Favorites"
|
||||||
logo={StarOutline}
|
logo={StarOutline}
|
||||||
isSelected={$page.route.id == AppRoute.FAVORITES}
|
isSelected={$page.route.id == '/(user)/favorites'}
|
||||||
>
|
>
|
||||||
<svelte:fragment slot="moreInformation">
|
<svelte:fragment slot="moreInformation">
|
||||||
{#await getFavoriteCount()}
|
{#await getFavoriteCount()}
|
||||||
|
@ -101,7 +101,11 @@
|
||||||
</SideBarButton>
|
</SideBarButton>
|
||||||
</a>
|
</a>
|
||||||
<a data-sveltekit-preload-data="hover" href={AppRoute.ALBUMS} draggable="false">
|
<a data-sveltekit-preload-data="hover" href={AppRoute.ALBUMS} draggable="false">
|
||||||
<SideBarButton title="Albums" logo={ImageAlbum} isSelected={$page.route.id === AppRoute.ALBUMS}>
|
<SideBarButton
|
||||||
|
title="Albums"
|
||||||
|
logo={ImageAlbum}
|
||||||
|
isSelected={$page.route.id === '/(user)/albums'}
|
||||||
|
>
|
||||||
<svelte:fragment slot="moreInformation">
|
<svelte:fragment slot="moreInformation">
|
||||||
{#await getAlbumCount()}
|
{#await getAlbumCount()}
|
||||||
<LoadingSpinner />
|
<LoadingSpinner />
|
||||||
|
|
21
web/src/routes/(user)/+layout.svelte
Normal file
21
web/src/routes/(user)/+layout.svelte
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
<script lang="ts">
|
||||||
|
import { page } from '$app/stores';
|
||||||
|
import { fileUploadHandler } from '$lib/utils/file-uploader';
|
||||||
|
import UploadCover from '$lib/components/shared-components/drag-and-drop-upload-overlay.svelte';
|
||||||
|
|
||||||
|
const dropHandler = async ({ dataTransfer }: DragEvent) => {
|
||||||
|
const files = dataTransfer?.files;
|
||||||
|
if (!files) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const filesArray: File[] = Array.from<File>(files);
|
||||||
|
const albumId = ($page.route.id === '/albums/[albumId]' || undefined) && $page.params.albumId;
|
||||||
|
|
||||||
|
await fileUploadHandler(filesArray, albumId);
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<slot />
|
||||||
|
|
||||||
|
<UploadCover {dropHandler} />
|
|
@ -11,7 +11,7 @@
|
||||||
import Close from 'svelte-material-icons/Close.svelte';
|
import Close from 'svelte-material-icons/Close.svelte';
|
||||||
import ShareVariantOutline from 'svelte-material-icons/ShareVariantOutline.svelte';
|
import ShareVariantOutline from 'svelte-material-icons/ShareVariantOutline.svelte';
|
||||||
import StarMinusOutline from 'svelte-material-icons/StarMinusOutline.svelte';
|
import StarMinusOutline from 'svelte-material-icons/StarMinusOutline.svelte';
|
||||||
import Error from '../+error.svelte';
|
import Error from '../../+error.svelte';
|
||||||
import type { PageData } from './$types';
|
import type { PageData } from './$types';
|
||||||
import empty1Url from '$lib/assets/empty-1.svg';
|
import empty1Url from '$lib/assets/empty-1.svg';
|
||||||
|
|
|
@ -1,33 +1,15 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import '../app.css';
|
import '../app.css';
|
||||||
|
|
||||||
import { fade } from 'svelte/transition';
|
|
||||||
import { page } from '$app/stores';
|
import { page } from '$app/stores';
|
||||||
import DownloadPanel from '$lib/components/asset-viewer/download-panel.svelte';
|
|
||||||
import AnnouncementBox from '$lib/components/shared-components/announcement-box.svelte';
|
|
||||||
import UploadCover from '$lib/components/shared-components/drag-and-drop-upload-overlay.svelte';
|
|
||||||
import UploadPanel from '$lib/components/shared-components/upload-panel.svelte';
|
|
||||||
import { onMount } from 'svelte';
|
|
||||||
import { checkAppVersion } from '$lib/utils/check-app-version';
|
|
||||||
import { afterNavigate, beforeNavigate } from '$app/navigation';
|
import { afterNavigate, beforeNavigate } from '$app/navigation';
|
||||||
import NavigationLoadingBar from '$lib/components/shared-components/navigation-loading-bar.svelte';
|
import NavigationLoadingBar from '$lib/components/shared-components/navigation-loading-bar.svelte';
|
||||||
|
import DownloadPanel from '$lib/components/asset-viewer/download-panel.svelte';
|
||||||
|
import UploadPanel from '$lib/components/shared-components/upload-panel.svelte';
|
||||||
import NotificationList from '$lib/components/shared-components/notification/notification-list.svelte';
|
import NotificationList from '$lib/components/shared-components/notification/notification-list.svelte';
|
||||||
import { fileUploadHandler } from '$lib/utils/file-uploader';
|
|
||||||
import faviconUrl from '$lib/assets/favicon.png';
|
import faviconUrl from '$lib/assets/favicon.png';
|
||||||
|
|
||||||
let shouldShowAnnouncement: boolean;
|
|
||||||
let localVersion: string;
|
|
||||||
let remoteVersion: string;
|
|
||||||
let showNavigationLoadingBar = false;
|
let showNavigationLoadingBar = false;
|
||||||
let showUploadCover = false;
|
|
||||||
|
|
||||||
onMount(async () => {
|
|
||||||
const res = await checkAppVersion();
|
|
||||||
|
|
||||||
shouldShowAnnouncement = res.shouldShowAnnouncement;
|
|
||||||
localVersion = res.localVersion ?? 'unknown';
|
|
||||||
remoteVersion = res.remoteVersion ?? 'unknown';
|
|
||||||
});
|
|
||||||
|
|
||||||
beforeNavigate(() => {
|
beforeNavigate(() => {
|
||||||
showNavigationLoadingBar = true;
|
showNavigationLoadingBar = true;
|
||||||
|
@ -36,35 +18,13 @@
|
||||||
afterNavigate(() => {
|
afterNavigate(() => {
|
||||||
showNavigationLoadingBar = false;
|
showNavigationLoadingBar = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
const dropHandler = async (event: DragEvent) => {
|
|
||||||
event.preventDefault();
|
|
||||||
event.stopPropagation();
|
|
||||||
|
|
||||||
showUploadCover = false;
|
|
||||||
|
|
||||||
const files = event.dataTransfer?.files;
|
|
||||||
if (!files) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const filesArray: File[] = Array.from<File>(files);
|
|
||||||
const albumId = ($page.route.id === '/albums/[albumId]' || undefined) && $page.params.albumId;
|
|
||||||
|
|
||||||
await fileUploadHandler(filesArray, albumId);
|
|
||||||
};
|
|
||||||
|
|
||||||
// Required to prevent default browser behavior
|
|
||||||
const dragOverHandler = (event: DragEvent) => {
|
|
||||||
event.preventDefault();
|
|
||||||
event.stopPropagation();
|
|
||||||
};
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<svelte:head>
|
<svelte:head>
|
||||||
<title>{$page.data.meta?.title || 'Web'} - Immich</title>
|
<title>{$page.data.meta?.title || 'Web'} - Immich</title>
|
||||||
|
<link rel="icon" href={faviconUrl} />
|
||||||
|
|
||||||
{#if $page.data.meta}
|
{#if $page.data.meta}
|
||||||
<link rel="icon" href={faviconUrl} />
|
|
||||||
<meta name="description" content={$page.data.meta.description} />
|
<meta name="description" content={$page.data.meta.description} />
|
||||||
|
|
||||||
<!-- Facebook Meta Tags -->
|
<!-- Facebook Meta Tags -->
|
||||||
|
@ -81,31 +41,12 @@
|
||||||
{/if}
|
{/if}
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<main on:dragenter={() => (showUploadCover = true)}>
|
{#if showNavigationLoadingBar}
|
||||||
<div in:fade={{ duration: 100 }}>
|
<NavigationLoadingBar />
|
||||||
{#if showNavigationLoadingBar}
|
{/if}
|
||||||
<NavigationLoadingBar />
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
<slot />
|
<slot />
|
||||||
|
|
||||||
{#if showUploadCover}
|
<DownloadPanel />
|
||||||
<UploadCover
|
<UploadPanel />
|
||||||
{dropHandler}
|
<NotificationList />
|
||||||
{dragOverHandler}
|
|
||||||
dragLeaveHandler={() => (showUploadCover = false)}
|
|
||||||
/>
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
<DownloadPanel />
|
|
||||||
<UploadPanel />
|
|
||||||
<NotificationList />
|
|
||||||
{#if shouldShowAnnouncement}
|
|
||||||
<AnnouncementBox
|
|
||||||
{localVersion}
|
|
||||||
{remoteVersion}
|
|
||||||
on:close={() => (shouldShowAnnouncement = false)}
|
|
||||||
/>
|
|
||||||
{/if}
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
|
|
Loading…
Reference in a new issue