mirror of
https://github.com/immich-app/immich.git
synced 2025-05-31 04:05:39 -04:00
83 lines
2.4 KiB
Svelte
83 lines
2.4 KiB
Svelte
<script lang="ts">
|
|
import { clickOutside } from '$lib/actions/click-outside';
|
|
import { languageManager } from '$lib/managers/language-manager.svelte';
|
|
import type { Snippet } from 'svelte';
|
|
import { quintOut } from 'svelte/easing';
|
|
import { slide } from 'svelte/transition';
|
|
|
|
interface Props {
|
|
isVisible?: boolean;
|
|
direction?: 'left' | 'right';
|
|
x?: number;
|
|
y?: number;
|
|
id?: string | undefined;
|
|
ariaLabel?: string | undefined;
|
|
ariaLabelledBy?: string | undefined;
|
|
ariaActiveDescendant?: string | undefined;
|
|
menuElement?: HTMLUListElement | undefined;
|
|
onClose?: (() => void) | undefined;
|
|
children?: Snippet;
|
|
}
|
|
|
|
let {
|
|
isVisible = false,
|
|
direction = 'right',
|
|
x = 0,
|
|
y = 0,
|
|
id = undefined,
|
|
ariaLabel = undefined,
|
|
ariaLabelledBy = undefined,
|
|
ariaActiveDescendant = undefined,
|
|
menuElement = $bindable(),
|
|
onClose = undefined,
|
|
children,
|
|
}: Props = $props();
|
|
|
|
let left: number = $state(0);
|
|
let top: number = $state(0);
|
|
|
|
// We need to bind clientHeight since the bounding box may return a height
|
|
// of zero when starting the 'slide' animation.
|
|
let height: number = $state(0);
|
|
|
|
$effect(() => {
|
|
if (menuElement) {
|
|
let layoutDirection = direction;
|
|
if (languageManager.rtl) {
|
|
layoutDirection = direction === 'left' ? 'right' : 'left';
|
|
}
|
|
|
|
const rect = menuElement.getBoundingClientRect();
|
|
const directionWidth = layoutDirection === 'left' ? rect.width : 0;
|
|
const menuHeight = Math.min(menuElement.clientHeight, height) || 0;
|
|
|
|
left = Math.max(8, Math.min(window.innerWidth - rect.width, x - directionWidth));
|
|
top = Math.max(8, Math.min(window.innerHeight - menuHeight, y));
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<div
|
|
bind:clientHeight={height}
|
|
class="fixed min-w-[200px] w-max max-w-[300px] overflow-hidden rounded-lg shadow-lg"
|
|
style:left="{left}px"
|
|
style:top="{top}px"
|
|
transition:slide={{ duration: 250, easing: quintOut }}
|
|
use:clickOutside={{ onOutclick: onClose }}
|
|
>
|
|
<ul
|
|
{id}
|
|
aria-activedescendant={ariaActiveDescendant ?? ''}
|
|
aria-label={ariaLabel}
|
|
aria-labelledby={ariaLabelledBy}
|
|
bind:this={menuElement}
|
|
class="{isVisible
|
|
? 'max-h-dvh'
|
|
: 'max-h-0'} flex flex-col transition-all duration-[250ms] ease-in-out outline-none overflow-auto"
|
|
role="menu"
|
|
tabindex="-1"
|
|
>
|
|
{@render children?.()}
|
|
</ul>
|
|
</div>
|