mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-23 23:09:37 +02:00
59 lines
1.7 KiB
Svelte
59 lines
1.7 KiB
Svelte
|
<script lang="ts">
|
||
|
import type { Adventure, Collection } from '$lib/types';
|
||
|
import { createEventDispatcher } from 'svelte';
|
||
|
const dispatch = createEventDispatcher();
|
||
|
import { onMount } from 'svelte';
|
||
|
import CollectionCard from './CollectionCard.svelte';
|
||
|
let modal: HTMLDialogElement;
|
||
|
|
||
|
let collections: Collection[] = [];
|
||
|
|
||
|
onMount(async () => {
|
||
|
modal = document.getElementById('my_modal_1') as HTMLDialogElement;
|
||
|
if (modal) {
|
||
|
modal.showModal();
|
||
|
}
|
||
|
let res = await fetch(`/api/collections/all/`, {
|
||
|
method: 'GET'
|
||
|
});
|
||
|
|
||
|
let result = await res.json();
|
||
|
collections = result as Collection[];
|
||
|
|
||
|
if (result.type === 'success' && result.data) {
|
||
|
collections = result.data.adventures as Collection[];
|
||
|
}
|
||
|
});
|
||
|
|
||
|
function close() {
|
||
|
dispatch('close');
|
||
|
}
|
||
|
|
||
|
function link(event: CustomEvent<number>) {
|
||
|
dispatch('link', event.detail);
|
||
|
}
|
||
|
|
||
|
function handleKeydown(event: KeyboardEvent) {
|
||
|
if (event.key === 'Escape') {
|
||
|
dispatch('close');
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<dialog id="my_modal_1" class="modal">
|
||
|
<!-- svelte-ignore a11y-no-noninteractive-element-interactions -->
|
||
|
<!-- svelte-ignore a11y-no-noninteractive-tabindex -->
|
||
|
<div class="modal-box w-11/12 max-w-5xl" role="dialog" on:keydown={handleKeydown} tabindex="0">
|
||
|
<h1 class="text-center font-bold text-4xl mb-6">My Collections</h1>
|
||
|
<div class="flex flex-wrap gap-4 mr-4 justify-center content-center">
|
||
|
{#each collections as collection}
|
||
|
<CollectionCard {collection} type="link" on:link={link} />
|
||
|
{/each}
|
||
|
{#if collections.length === 0}
|
||
|
<p class="text-center text-lg">No collections found to add this adventure to.</p>
|
||
|
{/if}
|
||
|
</div>
|
||
|
<button class="btn btn-primary" on:click={close}>Close</button>
|
||
|
</div>
|
||
|
</dialog>
|