mirror of
https://github.com/immich-app/immich.git
synced 2025-06-10 02:47:38 +02:00
* chore(deps): update dependency eslint-plugin-svelte to v3 * chore: linting * chore: rebase --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Dietzler <mail@ddietzler.dev> Co-authored-by: Zack Pollard <zackpollard@ymail.com>
92 lines
2.6 KiB
Svelte
92 lines
2.6 KiB
Svelte
<script lang="ts">
|
|
import { browser } from '$app/environment';
|
|
|
|
import { onDestroy, onMount, type Snippet } from 'svelte';
|
|
import CircleIconButton from '../elements/buttons/circle-icon-button.svelte';
|
|
import { fly } from 'svelte/transition';
|
|
import { mdiClose } from '@mdi/js';
|
|
import { isSelectingAllAssets } from '$lib/stores/assets.store';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
interface Props {
|
|
showBackButton?: boolean;
|
|
backIcon?: string;
|
|
tailwindClasses?: string;
|
|
forceDark?: boolean;
|
|
multiRow?: boolean;
|
|
onClose?: () => void;
|
|
leading?: Snippet;
|
|
children?: Snippet;
|
|
trailing?: Snippet;
|
|
}
|
|
|
|
let {
|
|
showBackButton = true,
|
|
backIcon = mdiClose,
|
|
tailwindClasses = '',
|
|
forceDark = false,
|
|
multiRow = false,
|
|
onClose = () => {},
|
|
leading,
|
|
children,
|
|
trailing,
|
|
}: Props = $props();
|
|
|
|
let appBarBorder = $state('bg-immich-bg border border-transparent');
|
|
|
|
const onScroll = () => {
|
|
if (window.scrollY > 80) {
|
|
appBarBorder = 'border border-gray-200 bg-gray-50 dark:border-gray-600';
|
|
|
|
if (forceDark) {
|
|
appBarBorder = 'border border-gray-600';
|
|
}
|
|
} else {
|
|
appBarBorder = 'bg-immich-bg border border-transparent';
|
|
}
|
|
};
|
|
|
|
const handleClose = () => {
|
|
$isSelectingAllAssets = false;
|
|
onClose();
|
|
};
|
|
|
|
onMount(() => {
|
|
if (browser) {
|
|
document.addEventListener('scroll', onScroll);
|
|
}
|
|
});
|
|
|
|
onDestroy(() => {
|
|
if (browser) {
|
|
document.removeEventListener('scroll', onScroll);
|
|
}
|
|
});
|
|
|
|
let buttonClass = $derived(forceDark ? 'hover:text-immich-dark-gray' : undefined);
|
|
</script>
|
|
|
|
<div in:fly={{ y: 10, duration: 200 }} class="absolute top-0 w-full z-[100] bg-transparent">
|
|
<div
|
|
id="asset-selection-app-bar"
|
|
class={`grid ${multiRow ? 'grid-cols-[100%] md:grid-cols-[25%_50%_25%]' : 'grid-cols-[10%_80%_10%] sm:grid-cols-[25%_50%_25%]'} justify-between lg:grid-cols-[25%_50%_25%] ${appBarBorder} mx-2 mt-2 place-items-center rounded-lg p-2 transition-all ${tailwindClasses} dark:bg-immich-dark-gray ${
|
|
forceDark && 'bg-immich-dark-gray text-white'
|
|
}`}
|
|
>
|
|
<div class="flex place-items-center sm:gap-6 justify-self-start dark:text-immich-dark-fg">
|
|
{#if showBackButton}
|
|
<CircleIconButton title={$t('close')} onclick={handleClose} icon={backIcon} size="24" class={buttonClass} />
|
|
{/if}
|
|
{@render leading?.()}
|
|
</div>
|
|
|
|
<div class="w-full">
|
|
{@render children?.()}
|
|
</div>
|
|
|
|
<div class="mr-4 flex place-items-center gap-1 justify-self-end">
|
|
{@render trailing?.()}
|
|
</div>
|
|
</div>
|
|
</div>
|