aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Tools/CharacterBirthdays.svelte
blob: c012d65eb6224fc9553bbb9f70b16550d89b5d69 (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
<script lang="ts">
	import { ACDBBirthdays, type ACDBBirthday } from '$lib/ACDB';
	import { aniSearchBirthdays, type aniSearchBirthday } from '$lib/Birthday/aniSearch';
	import Error from '$lib/Error.svelte';
	import { onMount } from 'svelte';

	interface Birthday {
		name: string;
		image: string;
		origin?: string;
	}

	let date = new Date();
	let month = date.getMonth() + 1;
	let day = date.getDate();
	let anisearchBirthdays: Promise<aniSearchBirthday[]>;

	onMount(async () => {
		anisearchBirthdays = aniSearchBirthdays(month, day);
	});

	const combineBirthdaySources = (
		acdbArray: ACDBBirthday[],
		aniSearchArray: aniSearchBirthday[]
	): Birthday[] =>
		Array.from(
			new Map(
				[
					...aniSearchArray.map((entry) => ({
						name: entry.name,
						image: entry.image
					})),
					...acdbArray.map((entry) => ({
						name: entry.name,
						image: entry.character_image,
						origin: entry.origin
					}))
				].map((entry) => [entry.name, entry])
			).values()
		);
</script>

{#await ACDBBirthdays(month, day)}
	<p>Loading set one ...</p>
{:then acdbBirthdays}
	{#await anisearchBirthdays}
		<p>Loading set two ...</p>
	{:then anisearch}
		{@const birthdays = combineBirthdaySources(acdbBirthdays, anisearch)}

		<div id="characters">
			{#each birthdays as birthday}
				<div>
					<a
						href={`https://anilist.co/search/characters?search=${encodeURIComponent(
							birthday.name
						).replace(/%20/g, '+')}`}
						target="_blank"
					>
						{birthday.name}
						<img src={birthday.image} alt="Character (Large)" class="character-image" />
					</a>
				</div>
			{/each}
		</div>
	{:catch}
		<Error type="Character" />
	{/await}
{:catch}
	<Error type="Character" />
{/await}

<style>
	#characters {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(8%, 1fr));
		grid-gap: 0.25%;
		grid-row-gap: 1rem;
	}
</style>