aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Tools/SequelSpy.svelte
blob: 21a6ce4d18a4a42533c1ec821dada1662c6339e5 (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 type { AniListAuthorisation } from '$lib/AniList/identity';
	import { prequels, type MediaPrequel } from '$lib/AniList/prequels';
	import MediaTitle from '$lib/List/MediaTitleDisplay.svelte';
	import { onMount } from 'svelte';
	import { clearAllParameters, parseOrDefault } from '../Utility/parameters';
	import { airingTime } from '$lib/Media/Anime/Airing/time';
	import type { Media } from '$lib/AniList/media';
	import { page } from '$app/stores';
	import { browser } from '$app/environment';
	import { season as getSeason } from '$lib/Media/Anime/season';
	import {
		onMouseEnter,
		onMouseLeave,
		onMouseMove,
		type HoverCoverResponse
	} from '$lib/Media/Cover/hoverCover';
	import HoverCover from '$lib/Media/Cover/HoverCover.svelte';

	export let user: AniListAuthorisation;

	let currentPrequels: Promise<MediaPrequel[]> = Promise.resolve([]) as Promise<MediaPrequel[]>;
	const urlParameters = browser ? new URLSearchParams(window.location.search) : null;
	let year = parseOrDefault(urlParameters, 'year', new Date().getFullYear());
	let season = parseOrDefault(urlParameters, 'season', getSeason());
	let hoverCoverState: HoverCoverResponse = {};

	$: {
		if (year.toString().length === 4) currentPrequels = prequels(user, year, season);
	}
	$: {
		if (browser) {
			$page.url.searchParams.set('year', year.toString());
			$page.url.searchParams.set('season', season.toString());
			clearAllParameters(['year', 'season']);
			history.replaceState(null, '', `?${$page.url.searchParams.toString()}`);
		}
	}

	onMount(() => clearAllParameters(['year', 'season']));

	const prequelAiringTime = (prequel: MediaPrequel) =>
		airingTime(prequel as unknown as Media, null);
</script>

<div class="card">
	<p>
		<select bind:value={season}>
			<option value="WINTER">Winter</option>
			<option value="SPRING">Spring</option>
			<option value="SUMMER">Summer</option>
			<option value="FALL">Fall</option>
		</select>
		<input type="number" bind:value={year} />
	</p>

	{#await currentPrequels}
		<p>Loading prequels ... 50%</p>
	{:then currentPrequels}
		<ul>
			{#each currentPrequels as prequel}
				<li>
					<a
						href={`https://anilist.co/anime/${prequel.id}`}
						target="_blank"
						on:mouseenter={() => {
							const response = onMouseEnter(prequel);

							hoverCoverState.hovering = response.hovering;
							hoverCoverState.item = response.item;
							hoverCoverState.media = response.media;
						}}
						on:mouseleave={() => {
							const response = onMouseLeave();

							hoverCoverState.hovering = response.hovering;
							hoverCoverState.item = response.item;
							hoverCoverState.media = response.media;
						}}
						on:mousemove={(e) => {
							const response = onMouseMove(e, 300);

							hoverCoverState.style = response.style;
						}}
					>
						<MediaTitle title={prequel.title} />
					</a>
					<span style="opacity: 50%;">|</span>
					{prequel.seen}<span style="opacity: 50%;">/{prequel.episodes}</span>
					{@html prequelAiringTime(prequel)}
				</li>
			{/each}
		</ul>
	{/await}

	<p />

	The count ratio is the number of episodes you've seen of any direct prequels, and the total number
	of episodes of all direct prequels.
</div>

<HoverCover options={hoverCoverState} width={300} />