<script lang="ts"> import { addCharacter, type CharacterInput } from '$gql/Mutations'; import Dialog from '$lib/components/Dialog.svelte'; import SubmitButton from '$lib/components/SubmitButton.svelte'; import CharacterForm from '$lib/forms/CharacterForm.svelte'; import { toastFinally } from '$lib/Toasts'; import { getContextClient } from '@urql/svelte'; import { closeModal } from 'svelte-modals'; const client = getContextClient(); export let isOpen: boolean; let character = { name: '' }; function add(event: CustomEvent<CharacterInput>) { addCharacter(client, { input: event.detail }).then(closeModal).catch(toastFinally); } </script> <Dialog {isOpen}> <svelte:fragment slot="header"> <h2>Add Character</h2> </svelte:fragment> <CharacterForm bind:character on:submit={add}> <div class="flex justify-end gap-4"> <SubmitButton active={character.name.length > 0} /> </div> </CharacterForm> </Dialog>