mirror of
https://github.com/immich-app/immich.git
synced 2025-05-31 04:05:39 -04:00
* fix: user management tailwind * use top instead of inset-y-0 * add types to createEventDispatcher
67 lines
1.9 KiB
Svelte
67 lines
1.9 KiB
Svelte
<script lang="ts">
|
|
import { fade } from 'svelte/transition';
|
|
import { quintOut } from 'svelte/easing';
|
|
import { createEventDispatcher, onMount, onDestroy } from 'svelte';
|
|
import { browser } from '$app/environment';
|
|
import CircleIconButton from '../elements/buttons/circle-icon-button.svelte';
|
|
import { clickOutside } from '$lib/utils/click-outside';
|
|
import { mdiClose } from '@mdi/js';
|
|
|
|
const dispatch = createEventDispatcher<{
|
|
escape: void;
|
|
close: void;
|
|
}>();
|
|
export let zIndex = 9999;
|
|
export let ignoreClickOutside = false;
|
|
|
|
onMount(() => {
|
|
if (browser) {
|
|
const scrollTop = document.documentElement.scrollTop;
|
|
const scrollLeft = document.documentElement.scrollLeft;
|
|
window.onscroll = function () {
|
|
window.scrollTo(scrollLeft, scrollTop);
|
|
};
|
|
}
|
|
});
|
|
|
|
onDestroy(() => {
|
|
if (browser) {
|
|
window.onscroll = null;
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<div
|
|
id="immich-modal"
|
|
style:z-index={zIndex}
|
|
transition:fade={{ duration: 100, easing: quintOut }}
|
|
class="fixed left-0 top-0 flex h-full w-full place-content-center place-items-center overflow-hidden bg-black/50"
|
|
>
|
|
<div
|
|
use:clickOutside
|
|
on:outclick={() => !ignoreClickOutside && dispatch('close')}
|
|
on:escape={() => dispatch('escape')}
|
|
class="max-h-[800px] min-h-[200px] w-[450px] overflow-y-auto rounded-lg bg-immich-bg shadow-md dark:bg-immich-dark-gray dark:text-immich-dark-fg immich-scrollbar"
|
|
>
|
|
<div class="flex place-items-center justify-between px-5 py-3">
|
|
<div>
|
|
<slot name="title">
|
|
<p>Modal Title</p>
|
|
</slot>
|
|
</div>
|
|
|
|
<CircleIconButton on:click={() => dispatch('close')} icon={mdiClose} size={'20'} />
|
|
</div>
|
|
|
|
<div>
|
|
<slot />
|
|
</div>
|
|
|
|
{#if $$slots['sticky-bottom']}
|
|
<div class="sticky bottom-0 bg-immich-bg px-5 pb-5 pt-3 dark:bg-immich-dark-gray">
|
|
<slot name="sticky-bottom" />
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
</div>
|