mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-04-30 14:29:29 +08:00
12 lines
455 B
Svelte
12 lines
455 B
Svelte
<script lang="ts">
|
|
export let post: Urara.Post
|
|
const actions = import.meta.glob<any>('/src/lib/components/actions/*.svelte', { eager: true, import: 'default' })
|
|
</script>
|
|
|
|
<div class="sticky top-24 hidden xl:flex flex-col gap-4 w-fit max-h-[calc(100vh-12rem)] ml-auto mr-6 my-8 justify-center">
|
|
{#if Object.keys(actions).length}
|
|
{#each Object.values(actions) as action}
|
|
<svelte:component this={action} {post} />
|
|
{/each}
|
|
{/if}
|
|
</div>
|