summaryrefslogtreecommitdiffstatshomepage
path: root/frontend/src/lib/forms/CharacterForm.svelte
blob: 4cec37c76eb8566428f0ae692a94e269bf57a3df (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
<script lang="ts">
	import { type CharacterInput } from '$gql/Mutations';
	import { type OmitIdentifiers } from '$gql/Utils';
	import { type Character } from '$gql/graphql';
	import Labelled from '$lib/components/Labelled.svelte';
	import { createEventDispatcher } from 'svelte';

	const dispatch = createEventDispatcher<{ submit: CharacterInput }>();

	export let character: OmitIdentifiers<Character>;

	function submit() {
		dispatch('submit', { name: character.name });
	}
</script>

<form on:submit|preventDefault={submit}>
	<div class="grid-labels">
		<Labelled label="Name" let:id>
			<!-- svelte-ignore a11y-autofocus -->
			<input autofocus required {id} bind:value={character.name} />
		</Labelled>
	</div>
	<slot />
</form>