1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-23 23:09:37 +02:00
AdventureLog/frontend/src/lib/components/NoteCard.svelte

33 lines
984 B
Svelte
Raw Normal View History

2024-08-03 22:03:27 -04:00
<script lang="ts">
import { goto } from '$app/navigation';
import { addToast } from '$lib/toasts';
import type { Note } from '$lib/types';
import { createEventDispatcher } from 'svelte';
const dispatch = createEventDispatcher();
import Launch from '~icons/mdi/launch';
import FileDocumentEdit from '~icons/mdi/file-document-edit';
export let note: Note;
function editNote() {
dispatch('edit', note);
}
</script>
<div
class="card w-full max-w-xs sm:max-w-sm md:max-w-md lg:max-w-md xl:max-w-md bg-primary-content shadow-xl overflow-hidden text-base-content"
>
<div class="card-body">
<h2 class="card-title overflow-ellipsis">{note.name}</h2>
<div class="card-actions justify-end">
2024-08-04 09:56:58 -04:00
<!-- <button class="btn btn-neutral mb-2" on:click={() => goto(`/notes/${note.id}`)}
2024-08-03 22:03:27 -04:00
><Launch class="w-6 h-6" />Open Details</button
2024-08-04 09:56:58 -04:00
> -->
2024-08-03 22:03:27 -04:00
<button class="btn btn-neutral mb-2" on:click={editNote}>
2024-08-04 09:56:58 -04:00
<Launch class="w-6 h-6" />Open
2024-08-03 22:03:27 -04:00
</button>
</div>
</div>
</div>