summaryrefslogtreecommitdiffstatshomepage
path: root/frontend/src/lib/dialogs/AddWorld.svelte
blob: ceb946e8bdc06c993bdaf8315062664a36d5d8ad (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 { addWorld, type WorldInput } from '$gql/Mutations';
	import Dialog from '$lib/components/Dialog.svelte';
	import SubmitButton from '$lib/components/SubmitButton.svelte';
	import WorldForm from '$lib/forms/WorldForm.svelte';
	import { toastFinally } from '$lib/Toasts';
	import { getContextClient } from '@urql/svelte';
	import { closeModal } from 'svelte-modals';

	const client = getContextClient();

	export let isOpen: boolean;

	let world = { name: '' };

	function add(event: CustomEvent<WorldInput>) {
		addWorld(client, { input: event.detail }).then(closeModal).catch(toastFinally);
	}
</script>

<Dialog {isOpen}>
	<svelte:fragment slot="header">
		<h2>Add World</h2>
	</svelte:fragment>
	<WorldForm bind:world on:submit={add}>
		<div class="flex justify-end gap-4">
			<SubmitButton active={world.name.length > 0} />
		</div>
	</WorldForm>
</Dialog>