MapComplete/src/UI/Base/DrawerRight.svelte

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1 KiB
Svelte
Raw Normal View History

2024-08-30 02:18:29 +02:00
<script lang="ts">
import { Drawer } from "flowbite-svelte"
import { sineIn } from "svelte/easing"
import { Store } from "../../Logic/UIEventSource.js"
import { onMount } from "svelte"
export let shown: Store<boolean>
let transitionParams = {
x: 640,
duration: 200,
easing: sineIn
}
let hidden = !shown.data
shown.addCallback(sh => {
hidden = !sh
})
let height = 0
onMount(() => {
let topbar = document.getElementById("top-bar")
height = topbar.clientHeight
})
</script>
<Drawer placement="right"
transitionType="fly" {transitionParams}
activateClickOutside={false}
2024-09-18 16:57:57 +02:00
divClass="overflow-y-auto z-3"
2024-08-30 02:18:29 +02:00
backdrop={false}
id="drawer-right"
width="w-full sm:w-80 md:w-96"
rightOffset="inset-y-0 right-0"
bind:hidden={hidden}>
<div class="low-interaction h-screen">
2024-08-30 02:18:29 +02:00
<div class="h-full" style={`padding-top: ${height}px`}>
<div class="flex flex-col h-full overflow-y-auto">
<slot />
</div>
</div>
</div>
</Drawer>