mirror of
https://github.com/immich-app/immich.git
synced 2025-12-17 09:13:17 +03:00
* AFixed overlay issue of modal * Added modal with existing user * Added custom scrollbar to all pages * Fixed Document is not define when access document DOM node in browswer * Added context menu * Added api to remove user from album * Handle user leave album * Added share button to non-shared album * Added padding to album viewer: * Fixed margin top of asset selection page * Fixed issue cannot push to dockerhub
34 lines
834 B
Svelte
34 lines
834 B
Svelte
<script lang="ts">
|
|
import { clickOutside } from '$lib/utils/click-outside';
|
|
import { createEventDispatcher } from 'svelte';
|
|
import { quintOut } from 'svelte/easing';
|
|
import { slide } from 'svelte/transition';
|
|
|
|
export let x: number = 0;
|
|
export let y: number = 0;
|
|
|
|
const dispatch = createEventDispatcher();
|
|
let menuEl: HTMLElement;
|
|
|
|
$: (() => {
|
|
if (!menuEl) return;
|
|
|
|
const rect = menuEl.getBoundingClientRect();
|
|
x = Math.min(window.innerWidth - rect.width, x);
|
|
if (y > window.innerHeight - rect.height) {
|
|
y -= rect.height;
|
|
}
|
|
})();
|
|
</script>
|
|
|
|
<div
|
|
transition:slide={{ duration: 200, easing: quintOut }}
|
|
bind:this={menuEl}
|
|
class="absolute bg-white w-[150px] z-[99999] rounded-lg shadow-md"
|
|
style={`top: ${y}px; left: ${x}px;`}
|
|
use:clickOutside
|
|
on:out-click={() => dispatch('clickoutside')}
|
|
>
|
|
<slot />
|
|
</div>
|