2023-01-14 19:38:39 +00:00
|
|
|
<script>
|
|
|
|
import { createEventDispatcher } from 'svelte';
|
|
|
|
|
|
|
|
export let items = undefined;
|
|
|
|
export let position = undefined;
|
|
|
|
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
|
|
|
|
function close() {
|
|
|
|
dispatch('close');
|
|
|
|
}
|
2023-01-14 20:09:21 +00:00
|
|
|
|
|
|
|
function click(fn) {
|
2023-01-15 15:49:08 +00:00
|
|
|
fn?.();
|
2023-01-14 20:09:21 +00:00
|
|
|
close();
|
|
|
|
}
|
2023-01-14 19:38:39 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
{#if items && position}
|
|
|
|
<div class="backdrop" on:pointerdown={close}></div>
|
|
|
|
<ul class="contextmenu" role="" style:left="{position[0]}px" style:top="{position[1]}px">
|
|
|
|
{#each items as item}
|
|
|
|
{#if item.separator}
|
|
|
|
<hr />
|
|
|
|
{:else}
|
|
|
|
<li>
|
2023-01-14 20:09:21 +00:00
|
|
|
<button class="item" on:click={() => click(item.fn)}>
|
2023-01-14 19:38:39 +00:00
|
|
|
{item.label}
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
{/if}
|
|
|
|
{/each}
|
|
|
|
</ul>
|
|
|
|
{/if}
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.backdrop {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contextmenu {
|
|
|
|
position: fixed;
|
|
|
|
background-color: rgba(230, 230, 230, 0.7);
|
2023-01-16 15:56:16 +00:00
|
|
|
-webkit-backdrop-filter: blur(30px);
|
2023-01-14 19:38:39 +00:00
|
|
|
backdrop-filter: blur(30px);
|
|
|
|
border-radius: 10px;
|
|
|
|
padding: 5px;
|
|
|
|
box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
padding: 5px;
|
|
|
|
border-radius: 5px;
|
2023-01-15 15:49:08 +00:00
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
2023-01-14 19:38:39 +00:00
|
|
|
}
|
|
|
|
button:hover {
|
|
|
|
background-color: #00008b;
|
|
|
|
color: #fff;
|
|
|
|
}
|
2023-01-16 19:03:56 +00:00
|
|
|
|
|
|
|
hr {
|
|
|
|
border: none;
|
|
|
|
border-top: 1px solid #aaa;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
2023-01-14 19:38:39 +00:00
|
|
|
</style>
|