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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
<script lang="ts">
import { browser } from '$app/environment';
import { page } from '$app/stores';
import { ACDBBirthdays, type ACDBBirthday } from '$lib/Data/Birthday/secondary';
import { aniSearchBirthdays, type aniSearchBirthday } from '$lib/Data/Birthday/primary';
import Error from '$lib/Error/RateLimited.svelte';
import { onMount } from 'svelte';
import { clearAllParameters, parseOrDefault } from '../Utility/parameters';
import Skeleton from '$lib/Loading/Skeleton.svelte';
import Message from '$lib/Loading/Message.svelte';
import tooltip from '$lib/Tooltip/tooltip';
interface Birthday {
name: string;
image: string;
origin?: string;
}
const urlParameters = browser ? new URLSearchParams(window.location.search) : null;
let date = new Date();
let month = parseOrDefault(urlParameters, 'month', date.getMonth() + 1);
let day = parseOrDefault(urlParameters, 'day', date.getDate());
let anisearchBirthdays: Promise<aniSearchBirthday[]>;
let acdbBirthdays: Promise<ACDBBirthday[]>;
$: {
month = Math.min(month, 12);
month = Math.max(month, 1);
day = Math.min(day, new Date(2024, month, 0).getDate());
day = Math.max(day, 1);
if (browser) anisearchBirthdays = aniSearchBirthdays(month, day);
acdbBirthdays = ACDBBirthdays(month, day);
if (browser) {
$page.url.searchParams.set('month', month.toString());
$page.url.searchParams.set('day', day.toString());
clearAllParameters(['month', 'day']);
history.replaceState(null, '', `?${$page.url.searchParams.toString()}`);
}
}
onMount(() => clearAllParameters(['month', 'day']));
const normaliseName = (name: string): string => name.toLowerCase().split(' ').sort().join(' ');
const fixName = (name: string): string => {
const split = name.split(' ');
const last = split[split.length - 1];
if (last === last.toUpperCase()) {
split[split.length - 1] = last[0] + last.slice(1).toLowerCase();
return split.join(' ');
}
const bracketIndex = name.indexOf('[');
if (bracketIndex !== -1) return name.slice(0, bracketIndex).trim();
return name;
};
const combineBirthdaySources = (
acdb: ACDBBirthday[],
aniSearch: aniSearchBirthday[]
): Birthday[] => {
const nameMap = new Map<string, Birthday>();
for (const entry of aniSearch.map((entry) => ({
...entry,
normalisedName: normaliseName(fixName(entry.name))
}))) {
if (!nameMap.has(entry.normalisedName))
nameMap.set(entry.normalisedName, {
name: fixName(entry.name),
image: entry.image
});
}
for (const entry of acdb) {
const normalisedName = normaliseName(fixName(entry.name));
if (!nameMap.has(normalisedName))
nameMap.set(normalisedName, {
name: entry.name,
image: entry.character_image,
origin: entry.origin
});
}
return Array.from(nameMap.values());
};
</script>
{#await acdbBirthdays}
<Message message="Loading birthday set one ..." />
<Skeleton grid={true} count={100} width="150px" height="170px" />
{:then acdbBirthdays}
{#await anisearchBirthdays}
<Message message="Loading birthday set two ..." />
<Skeleton grid={true} count={100} width="150px" height="170px" />
{:then anisearch}
{@const birthdays = combineBirthdaySources(acdbBirthdays, anisearch)}
<p>
<select bind:value={month}>
{#each Array.from({ length: 12 }, (_, i) => i + 1) as month}
<option value={month}>
{new Date(0, month - 1).toLocaleString('default', { month: 'long' })}
</option>
{/each}
</select>
<select bind:value={day}>
{#each Array.from({ length: new Date(2024, month, 0).getDate() }, (_, i) => i + 1) as day}
<option value={day}>{day}</option>
{/each}
</select>
</p>
<div class="characters">
{#each birthdays as birthday}
<div class="card card-small">
<a
href={`https://anilist.co/search/characters?search=${encodeURIComponent(
birthday.name
).replace(/%20/g, '+')}`}
target="_blank"
title={birthday.origin}
use:tooltip
data-tooltip-disable={birthday.origin === undefined}
>
{birthday.name}
<img src={birthday.image} alt="Character (Large)" class="character-image" />
</a>
</div>
{/each}
</div>
{:catch}
<Error type="Character" card />
{/await}
{:catch}
<Error type="Character" card />
{/await}
<style lang="scss">
.characters {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
gap: 1rem;
grid-row-gap: 1rem;
align-items: start;
img {
width: 100%;
height: auto;
object-fit: cover;
border-radius: 8px;
margin-top: 0.5rem;
box-shadow: 0 4px 30px var(--base01);
}
}
</style>
|