2024-04-08 21:02:09 +00:00
|
|
|
<script lang="ts">
|
|
|
|
|
import ImmichLogo from '$lib/components/shared-components/immich-logo.svelte';
|
|
|
|
|
import Icon from '$lib/components/elements/icon.svelte';
|
|
|
|
|
import CircleIconButton from '$lib/components/elements/buttons/circle-icon-button.svelte';
|
|
|
|
|
import { mdiClose } from '@mdi/js';
|
2024-06-04 21:53:00 +02:00
|
|
|
import { t } from 'svelte-i18n';
|
2024-04-08 21:02:09 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Unique identifier for the header text.
|
|
|
|
|
*/
|
|
|
|
|
export let id: string;
|
|
|
|
|
export let title: string;
|
2024-04-11 09:01:16 +00:00
|
|
|
export let onClose: () => void;
|
2024-04-08 21:02:09 +00:00
|
|
|
/**
|
|
|
|
|
* If true, the logo will be displayed next to the modal title.
|
|
|
|
|
*/
|
|
|
|
|
export let showLogo = false;
|
|
|
|
|
/**
|
|
|
|
|
* Optional icon to display next to the modal title, if `showLogo` is false.
|
|
|
|
|
*/
|
|
|
|
|
export let icon: string | undefined = undefined;
|
|
|
|
|
</script>
|
|
|
|
|
|
2024-09-09 23:37:53 -04:00
|
|
|
<div class="flex place-items-center justify-between px-5 pb-3">
|
2024-04-08 21:02:09 +00:00
|
|
|
<div class="flex gap-2 place-items-center">
|
|
|
|
|
{#if showLogo}
|
|
|
|
|
<ImmichLogo noText={true} width={32} />
|
|
|
|
|
{:else if icon}
|
|
|
|
|
<Icon path={icon} size={32} ariaHidden={true} class="text-immich-primary dark:text-immich-dark-primary" />
|
|
|
|
|
{/if}
|
|
|
|
|
<h1 {id}>
|
|
|
|
|
{title}
|
|
|
|
|
</h1>
|
|
|
|
|
</div>
|
|
|
|
|
|
2024-06-04 21:53:00 +02:00
|
|
|
<CircleIconButton on:click={onClose} icon={mdiClose} size={'20'} title={$t('close')} />
|
2024-04-08 21:02:09 +00:00
|
|
|
</div>
|