blob: 23fea08e08acf42c7d1593d174ebe03dab4c43df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<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>
|