1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-20 05:19:38 +02:00
AdventureLog/frontend/src/lib/components/CollectionCard.svelte

122 lines
3.7 KiB
Svelte
Raw Normal View History

2024-07-10 13:36:51 -04:00
<script lang="ts">
import { createEventDispatcher } from 'svelte';
2024-07-10 13:49:40 -04:00
import Launch from '~icons/mdi/launch';
import TrashCanOutline from '~icons/mdi/trash-can-outline';
2024-07-15 18:01:49 -04:00
import FileDocumentEdit from '~icons/mdi/file-document-edit';
2024-08-07 13:01:12 -04:00
import ArchiveArrowDown from '~icons/mdi/archive-arrow-down';
import ArchiveArrowUp from '~icons/mdi/archive-arrow-up';
2024-07-15 18:01:49 -04:00
2024-07-10 13:36:51 -04:00
import { goto } from '$app/navigation';
2024-07-15 09:36:07 -04:00
import type { Collection } from '$lib/types';
2024-07-15 12:09:20 -04:00
import { addToast } from '$lib/toasts';
2024-07-16 09:12:53 -04:00
import Plus from '~icons/mdi/plus';
2024-08-07 13:01:12 -04:00
import { json } from '@sveltejs/kit';
2024-07-16 09:12:53 -04:00
2024-07-10 13:36:51 -04:00
const dispatch = createEventDispatcher();
2024-07-16 09:26:45 -04:00
export let type: String | undefined | null;
2024-07-16 09:12:53 -04:00
2024-07-10 13:36:51 -04:00
// export let type: String;
2024-07-15 18:01:49 -04:00
function editAdventure() {
dispatch('edit', collection);
}
2024-08-07 13:01:12 -04:00
async function archiveCollection(is_archived: boolean) {
console.log(JSON.stringify({ is_archived: is_archived }));
let res = await fetch(`/api/collections/${collection.id}/`, {
method: 'PATCH',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ is_archived: is_archived })
});
if (res.ok) {
console.log(`Collection ${is_archived ? 'archived' : 'unarchived'}`);
addToast('info', `Adventure ${is_archived ? 'archived' : 'unarchived'} successfully!`);
dispatch('delete', collection.id);
} else {
console.log('Error archiving adventure');
}
}
2024-07-15 09:36:07 -04:00
export let collection: Collection;
2024-07-10 13:36:51 -04:00
2024-07-15 12:09:20 -04:00
async function deleteCollection() {
let res = await fetch(`/collections/${collection.id}?/delete`, {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
});
if (res.ok) {
console.log('Collection deleted');
addToast('info', 'Adventure deleted successfully!');
dispatch('delete', collection.id);
} else {
console.log('Error deleting adventure');
}
}
2024-07-10 13:36:51 -04:00
</script>
<div
class="card min-w-max lg:w-96 md:w-80 sm:w-60 xs:w-40 bg-primary-content shadow-xl overflow-hidden text-base-content"
>
<div class="card-body">
2024-07-15 09:36:07 -04:00
<h2 class="card-title overflow-ellipsis">{collection.name}</h2>
<p>{collection.adventures.length} Adventures</p>
2024-07-27 14:26:15 -04:00
{#if collection.start_date && collection.end_date}
<p>
Dates: {new Date(collection.start_date).toLocaleDateString('en-US', { timeZone: 'UTC' })} - {new Date(
2024-07-27 14:26:15 -04:00
collection.end_date
).toLocaleDateString('en-US', { timeZone: 'UTC' })}
2024-07-27 14:26:15 -04:00
</p>
<!-- display the duration in days -->
<p>
Duration: {Math.floor(
(new Date(collection.end_date).getTime() - new Date(collection.start_date).getTime()) /
(1000 * 60 * 60 * 24)
) + 1}{' '}
2024-07-27 14:26:15 -04:00
days
</p>{/if}
2024-08-07 13:01:12 -04:00
<div class="inline-flex gap-2 mb-2">
<div class="badge badge-neutral">{collection.is_public ? 'Public' : 'Private'}</div>
{#if collection.is_archived}
<div class="badge badge-warning">Archived</div>
{/if}
</div>
2024-07-10 13:36:51 -04:00
<div class="card-actions justify-end">
2024-07-16 09:12:53 -04:00
{#if type != 'link'}
<button on:click={deleteCollection} class="btn btn-secondary"
><TrashCanOutline class="w-5 h-5 mr-1" /></button
>
2024-08-07 13:01:12 -04:00
{#if !collection.is_archived}
<button class="btn btn-primary" on:click={editAdventure}>
<FileDocumentEdit class="w-6 h-6" />
</button>
{/if}
2024-07-16 09:12:53 -04:00
<button class="btn btn-primary" on:click={() => goto(`/collections/${collection.id}`)}
><Launch class="w-5 h-5 mr-1" /></button
>
{/if}
{#if type == 'link'}
<button class="btn btn-primary" on:click={() => dispatch('link', collection.id)}>
<Plus class="w-5 h-5 mr-1" />
</button>
{/if}
2024-08-07 13:01:12 -04:00
{#if collection.is_archived}
<button class="btn btn-primary" on:click={() => archiveCollection(false)}>
<ArchiveArrowUp class="w-5 h-5 mr-1" />
</button>
{:else}
<button class="btn btn-primary" on:click={() => archiveCollection(true)}>
<ArchiveArrowDown class="w-5 h-5 mr" />
</button>
{/if}
2024-07-10 13:36:51 -04:00
</div>
</div>
</div>