1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-27 16:59:37 +02:00
AdventureLog/src/lib/components/EditModal.svelte

89 lines
2.5 KiB
Svelte
Raw Normal View History

<script lang="ts">
2024-04-02 22:02:20 +00:00
export let editId: number = NaN;
export let editName: string = "";
export let editLocation: string = "";
export let editdate: string = "";
2024-04-02 22:02:20 +00:00
import { createEventDispatcher } from "svelte";
import type { Adventure } from "$lib/utils/types";
const dispatch = createEventDispatcher();
import { onMount } from "svelte";
let modal: HTMLDialogElement;
2024-04-02 22:02:20 +00:00
let originalName = editName;
2024-04-02 22:02:20 +00:00
onMount(() => {
modal = document.getElementById("my_modal_1") as HTMLDialogElement;
if (modal) {
modal.showModal();
}
2024-04-02 22:02:20 +00:00
});
2024-04-02 22:02:20 +00:00
function submit() {
const adventureEdited: Adventure = {
id: editId,
name: editName,
location: editLocation,
date: editdate,
2024-04-02 22:02:20 +00:00
};
dispatch("submit", adventureEdited);
console.log(adventureEdited);
}
2024-04-02 22:02:20 +00:00
function close() {
dispatch("close");
}
function handleKeydown(event: KeyboardEvent) {
if (event.key === "Escape") {
close();
}
2024-04-02 22:02:20 +00:00
}
</script>
2024-04-02 22:02:20 +00:00
<dialog id="my_modal_1" class="modal">
<!-- svelte-ignore a11y-no-noninteractive-element-interactions -->
<!-- svelte-ignore a11y-no-noninteractive-tabindex -->
<div class="modal-box" role="dialog" on:keydown={handleKeydown} tabindex="0">
<h3 class="font-bold text-lg">Edit Adventure {originalName}</h3>
<p class="py-4">Press ESC key or click the button below to close</p>
<div
class="modal-action items-center"
style="display: flex; flex-direction: column; align-items: center; width: 100%;"
>
<form method="dialog" style="width: 100%;">
<div>
<label for="name">Name</label>
<input
type="text"
id="name"
bind:value={editName}
class="input input-bordered w-full max-w-xs"
/>
</div>
<div>
<label for="location">Location</label>
<input
type="text"
id="location"
bind:value={editLocation}
class="input input-bordered w-full max-w-xs"
/>
</div>
<div>
<label for="date">date</label>
2024-04-02 22:02:20 +00:00
<input
type="date"
id="date"
bind:value={editdate}
2024-04-02 22:02:20 +00:00
class="input input-bordered w-full max-w-xs"
/>
</div>
2024-04-02 22:02:20 +00:00
<button class="btn btn-primary mr-4 mt-4" on:click={submit}>Save</button
>
<!-- if there is a button in form, it will close the modal -->
<button class="btn mt-4" on:click={close}>Close</button>
</form>
</div>
2024-04-02 22:02:20 +00:00
</div>
</dialog>