summaryrefslogtreecommitdiffstatshomepage
path: root/frontend/src/routes/namespaces/+page.svelte
blob: d8e728d6e887ca9d79a7b395e5a4fef51db337eb (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<script lang="ts">
	import { deleteNamespaces } from '$gql/Mutations';
	import { fetchNamespace, namespacesQuery } from '$gql/Queries';
	import type { Namespace } from '$gql/graphql';
	import { NamespaceSortLabel } from '$lib/Enums';
	import { BasicFilterContext } from '$lib/Filter.svelte';
	import { quickComicFilter } from '$lib/Navigation';
	import { toastFinally } from '$lib/Toasts';
	import AddButton from '$lib/components/AddButton.svelte';
	import Cardlet from '$lib/components/Cardlet.svelte';
	import Empty from '$lib/components/Empty.svelte';
	import Guard from '$lib/components/Guard.svelte';
	import Head from '$lib/components/Head.svelte';
	import Cardlets from '$lib/containers/Cardlets.svelte';
	import Column from '$lib/containers/Column.svelte';
	import AddNamespace from '$lib/dialogs/AddNamespace.svelte';
	import EditNamespace from '$lib/dialogs/EditNamespace.svelte';
	import Pagination from '$lib/pagination/Pagination.svelte';
	import Selectable from '$lib/selection/Selectable.svelte';
	import { initSelectionContext } from '$lib/selection/Selection.svelte';
	import SelectionOverlay from '$lib/selection/SelectionOverlay.svelte';
	import DeleteSelection from '$lib/toolbar/DeleteSelection.svelte';
	import Search from '$lib/toolbar/Search.svelte';
	import SelectItems from '$lib/toolbar/SelectItems.svelte';
	import SelectSort from '$lib/toolbar/SelectSort.svelte';
	import SelectionControls from '$lib/toolbar/SelectionControls.svelte';
	import Toolbar from '$lib/toolbar/Toolbar.svelte';
	import { getContextClient } from '@urql/svelte';
	import { modals } from 'svelte-modals';
	import type { PageProps } from './$types';

	let { data }: PageProps = $props();
	let pagination = $derived(data.pagination);
	let sort = $derived(data.sort);

	const client = getContextClient();
	let result = $derived(namespacesQuery(client, { ...data }));
	let namespaces = $derived($result.data?.namespaces);

	let selection = initSelectionContext<Namespace>('Namespace', (n) => n.name);
	$effect(() => {
		if (namespaces) {
			selection.view = namespaces.edges;
		}
	});

	let filter = $state(new BasicFilterContext(data.filter));
	$effect(() => {
		filter = new BasicFilterContext(data.filter);
	});

	const edit = (id: number) => {
		fetchNamespace(client, id)
			.then((namespace) => modals.open(EditNamespace, { namespace }))
			.catch(toastFinally);
	};

	const quickFilter = (id: number) => quickComicFilter(`${id}:`, 'tags');
</script>

<Head section="Namespaces" />

<Column>
	<Toolbar>
		{#snippet start()}
			<SelectionControls>
				<DeleteSelection mutation={deleteNamespaces} />
			</SelectionControls>
		{/snippet}
		{#snippet center()}
			<Search name="Namespaces" {filter} bind:field={filter.include.name.contains} />
			<SelectSort {sort} labels={NamespaceSortLabel} />
			<SelectItems {pagination} />
		{/snippet}
		{#snippet end()}
			<AddButton title="Add Namespace" onclick={() => modals.open(AddNamespace)} />
		{/snippet}
	</Toolbar>
	{#if namespaces}
		<Pagination {pagination} total={namespaces.count} />
		<main>
			<Cardlets>
				{#each namespaces.edges as { id, name }, index (id)}
					<Selectable {index} {id} onclick={edit} onauxclick={quickFilter}>
						{#snippet children({ onclick, onauxclick, selected })}
							<Cardlet {name} {onclick} {onauxclick}>
								{#snippet overlay()}
									<SelectionOverlay position="right" centered {selected} />
								{/snippet}
							</Cardlet>
						{/snippet}
					</Selectable>
				{:else}
					<Empty />
				{/each}
			</Cardlets>
		</main>
		<Pagination {pagination} total={namespaces.count} />
	{:else}
		<Guard {result} />
	{/if}
</Column>