summaryrefslogtreecommitdiffstatshomepage
path: root/frontend/src/lib/dialogs/EditCharacter.svelte
blob: 71125dbf87d4c0f37323cae2f925bd6b0fa80b3d (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
31
32
33
34
35
36
37
<script lang="ts">
	import { deleteCharacters, updateCharacters } from '$gql/Mutations';
	import { omitIdentifiers } from '$gql/Utils';
	import type { Character, UpdateCharacterInput } 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 CharacterForm from '$lib/forms/CharacterForm.svelte';
	import { getContextClient } from '@urql/svelte';
	import type { ModalProps } from 'svelte-modals';

	const client = getContextClient();

	interface Props extends ModalProps {
		character: Character;
	}

	let { character, ...modal }: Props = $props();
	const initial = omitIdentifiers(character);

	function submit(input: UpdateCharacterInput) {
		updateCharacters(client, { ids: character.id, input }).then(modal.close).catch(toastFinally);
	}

	function deleteCharacter() {
		confirmDeletion('Character', character.name, () => {
			deleteCharacters(client, { ids: character.id }).then(modal.close).catch(toastFinally);
		});
	}
</script>

<Dialog title="Edit Character" {...modal}>
	<CharacterForm {initial} {submit}>
		<DeleteButton onclick={deleteCharacter} />
	</CharacterForm>
</Dialog>