<script lang="ts"> import { deleteCharacters, updateCharacters, type CharacterInput } from '$gql/Mutations'; import { itemEquals } from '$gql/Utils'; import { type Character } from '$gql/graphql'; import { toastFinally } from '$lib/Toasts'; import { confirmDeletion } from '$lib/Utils'; import DeleteButton from '$lib/components/DeleteButton.svelte'; import Dialog from '$lib/components/Dialog.svelte'; import SubmitButton from '$lib/components/SubmitButton.svelte'; import CharacterForm from '$lib/forms/CharacterForm.svelte'; import { getContextClient } from '@urql/svelte'; import { closeModal } from 'svelte-modals'; const client = getContextClient(); export let isOpen: boolean; export let character: Character; const original = structuredClone(character); $: pending = !itemEquals(original, character); function save(event: CustomEvent<CharacterInput>) { updateCharacters(client, { ids: character.id, input: event.detail }) .then(closeModal) .catch(toastFinally); } function deleteCharacter() { confirmDeletion('Character', character.name, () => { deleteCharacters(client, { ids: character.id }).then(closeModal).catch(toastFinally); }); } </script> <Dialog {isOpen}> <svelte:fragment slot="header"> <h2>Edit Character</h2> </svelte:fragment> <CharacterForm bind:character on:submit={save}> <div class="flex gap-4"> <DeleteButton on:click={deleteCharacter} /> <div class="grow" /> <SubmitButton active={pending} /> </div> </CharacterForm> </Dialog>