File size: 2,302 Bytes
bc27e65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<script lang="ts">

	import { onDestroy, onMount } from 'svelte';

	import { flyAndScale } from '$lib/utils/transitions';

	import { fade, fly, slide } from 'svelte/transition';

	import { isApp } from '$lib/stores';



	export let show = false;

	export let className = '';

	export let onClose = () => {};



	let modalElement = null;

	let mounted = false;



	const handleKeyDown = (event: KeyboardEvent) => {

		if (event.key === 'Escape' && isTopModal()) {

			console.log('Escape');

			show = false;

		}

	};



	const isTopModal = () => {

		const modals = document.getElementsByClassName('modal');

		return modals.length && modals[modals.length - 1] === modalElement;

	};



	onMount(() => {

		mounted = true;

	});



	$: if (show && modalElement) {

		document.body.appendChild(modalElement);

		window.addEventListener('keydown', handleKeyDown);

		document.body.style.overflow = 'hidden';

	} else if (modalElement) {

		onClose();

		window.removeEventListener('keydown', handleKeyDown);



		if (document.body.contains(modalElement)) {

			document.body.removeChild(modalElement);

			document.body.style.overflow = 'unset';

		}

	}



	onDestroy(() => {

		show = false;

		if (modalElement) {

			if (document.body.contains(modalElement)) {

				document.body.removeChild(modalElement);

				document.body.style.overflow = 'unset';

			}

		}

	});

</script>



<!-- svelte-ignore a11y-click-events-have-key-events -->

<!-- svelte-ignore a11y-no-static-element-interactions -->



<div

	bind:this={modalElement}

	class="modal fixed right-0 {$isApp

		? ' ml-[4.5rem] max-w-[calc(100%-4.5rem)]'

		: ''} left-0 bottom-0 bg-black/60 w-full h-screen max-h-[100dvh] flex justify-center z-999 overflow-hidden overscroll-contain"

	in:fly={{ y: 100, duration: 100 }}

	on:mousedown={() => {

		show = false;

	}}

>

	<div

		class=" mt-auto w-full bg-gray-50 dark:bg-gray-900 dark:text-gray-100 {className} max-h-[100dvh] overflow-y-auto scrollbar-hidden"

		on:mousedown={(e) => {

			e.stopPropagation();

		}}

	>

		<slot />

	</div>

</div>



<style>

	.modal-content {

		animation: scaleUp 0.1s ease-out forwards;

	}



	@keyframes scaleUp {

		from {

			transform: scale(0.985);

			opacity: 0;

		}

		to {

			transform: scale(1);

			opacity: 1;

		}

	}

</style>