summaryrefslogtreecommitdiffstatshomepage
path: root/frontend/src/lib/components/Cardlet.svelte
blob: 04d8599af4e2127e0b0831de257a0299cf533454 (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 type { ComicFilter } from '$gql/graphql';
	import { href } from '$lib/Navigation';

	export let name: string;
	export let title: string | null | undefined = undefined;

	export let filter: keyof ComicFilter | undefined = undefined;
	export let id: number | string | undefined = undefined;

	const handleAux = (e: MouseEvent) => {
		if (filter === undefined || id === undefined || e.button !== 1) return;
		window.open(href('comics', { filter: { include: { [filter]: { all: [id] } } } }));
	};
</script>

<button
	type="button"
	class="relative flex overflow-hidden rounded bg-slate-900 text-left shadow-md shadow-slate-950/20"
	{title}
	on:click
	on:auxclick={handleAux}
>
	<slot name="overlay" />
	<article class="group h-full grow items-center gap-2 p-2 text-xs">
		<h2 class="ellipsis-nowrap text-sm font-medium">{name}</h2>
	</article>
</button>

<style>
	article {
		display: grid;

		grid-template-columns: 1fr auto;
		grid-template-rows: 2em;
	}
</style>