aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Tools/Schedule/Tool.svelte
blob: 60828a7f7ea4a40e847d329a8f8f2601a990d717 (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
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<script lang="ts">
	import Error from '$lib/Error/RateLimited.svelte';
	import type { SubsPlease, SubsPleaseEpisode } from '$lib/Media/Anime/Airing/Subtitled/subsPlease';
	import { onMount } from 'svelte';
	import settings from '$stores/settings';
	import { parseOrDefault } from '$lib/Utility/parameters';
	import { browser } from '$app/environment';
	import type { Media } from '$lib/AniList/media';
	import { scheduleMediaListCollection } from '$lib/AniList/schedule';
	import { season } from '$lib/Media/Anime/season';
	import { findClosestMedia } from '$lib/Media/Anime/Airing/Subtitled/match';
	import MediaTitleDisplay from '$lib/List/MediaTitleDisplay.svelte';
	import { outboundLink } from '$lib/Media/links';
	import HeadTitle from '$lib/HeadTitle.svelte';
	import { onMouseEnter, onMouseLeave, onMouseMove } from '$lib/Media/Cover/hoverCover';
	import HoverCover from '$lib/Media/Cover/HoverCover.svelte';
	import Crunchyroll from '$lib/Tools/Schedule/Crunchyroll.svelte';
	import Loading from '$lib/Loading.svelte';

	let subsPleasePromise: Promise<SubsPlease>;
	let scheduledMediaPromise: Promise<Partial<Media[]>>;
	const urlParameters = browser ? new URLSearchParams(window.location.search) : null;
	let timeZone = parseOrDefault(
		urlParameters,
		'tz',
		Intl.DateTimeFormat().resolvedOptions().timeZone
	);
	let day: string | null = parseOrDefault(urlParameters, 'day', null);

	onMount(async () => {
		subsPleasePromise = fetch(`/api/subsplease?tz=${timeZone}`).then((r) => r.json());
		scheduledMediaPromise = scheduleMediaListCollection(new Date().getFullYear(), season());
	});

	let hovering = false;
	let hoveredItem: SubsPleaseEpisode | null = null;
	let hoveredMedia: Media | null = null;
	let imageStyle = '';

	const shiftSubsPleaseSchedule = (schedule: SubsPlease['schedule']) => {
		const shiftedSchedule: { [key: string]: SubsPleaseEpisode[] } = {};

		if (day && Object.keys(schedule).includes(day)) {
			shiftedSchedule[day] = schedule[
				day as keyof typeof schedule
			] as unknown as SubsPleaseEpisode[];

			return shiftedSchedule;
		}

		const days = Object.keys(schedule);
		const currentDayIndex = days.indexOf(new Date().toLocaleString('en-us', { weekday: 'long' }));

		days
			.slice(currentDayIndex)
			.concat(days.slice(0, currentDayIndex))
			.forEach((day) => {
				const scheduleEntry = schedule[day as keyof typeof schedule];

				shiftedSchedule[day] = Array.isArray(scheduleEntry)
					? scheduleEntry
					: ([scheduleEntry] as unknown as SubsPleaseEpisode[]);
			});

		Object.entries(shiftedSchedule).forEach(([day, scheduleEntry]) => {
			if (scheduleEntry.length === 0) {
				delete shiftedSchedule[day];
			}
		});

		return shiftedSchedule;
	};

	const associateMedia = (media: (Media | undefined)[], title: string) =>
		findClosestMedia(media as Media[], title);

	const titleSelect = (media: Media | null) =>
		media ? media.title.english || media.title.romaji || media.title.native : null;
</script>

<HeadTitle route="Schedule" path="/schedule" />

<blockquote>
	<select
		bind:value={timeZone}
		on:change={() =>
			(subsPleasePromise = fetch(`/api/subsplease?tz=${timeZone}`).then((r) => r.json()))}
	>
		{#each Intl.supportedValuesOf('timeZone') as zone}
			<option value={zone}>
				{zone.split('/').reverse().join(', ').replace(/_/g, ' ')}
			</option>
		{/each}
	</select>
</blockquote>

{#await subsPleasePromise}
	<Loading type="subtitle release data" percent={49.5} />
{:then subsPlease}
	{#if subsPlease}
		{#await scheduledMediaPromise}
			<Loading type="anime schedule" percent={82.5} />
		{:then scheduledMedia}
			{#if scheduledMedia}
				{@const columnCount = Math.ceil(Object.keys(subsPlease.schedule).length / 2)}

				<div id="list-container" style={`column-count: ${columnCount}`}>
					{#each Object.entries(shiftSubsPleaseSchedule(subsPlease.schedule)) as [day, scheduleEntry]}
						<details
							open
							class="list"
							class:today={day === new Date().toLocaleString('en-us', { weekday: 'long' })}
						>
							<summary>{day}</summary>

							<ol>
								{#each Object.values(scheduleEntry) as entry}
									{@const media = associateMedia(scheduledMedia, entry.title)}

									<li class="entry">
										<a
											href={media
												? outboundLink(media, 'anime', $settings.displayOutboundLinksTo)
												: outboundLink(
														null,
														'anime',
														$settings.displayOutboundLinksTo,
														true,
														titleSelect(media) || entry.title
												  )}
											target="_blank"
											on:mouseenter={() => {
												const response = onMouseEnter(media, entry);

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

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

												imageStyle = response.style;
											}}
										>
											{#if media}
												<MediaTitleDisplay title={media.title} />
											{:else}
												{entry.title}
											{/if}
										</a>
										{#if !$settings.displayCountdownRightAligned}
											<span style="opacity: 50%;">|</span>
										{/if}
										<span class:countdown={$settings.displayCountdownRightAligned}>
											{#if media && media.nextAiringEpisode}
												<span style="opacity: 50%;">
													{media.nextAiringEpisode?.episode > 1
														? media.nextAiringEpisode?.episode - 1
														: media.nextAiringEpisode?.episode}{media.episodes
														? `/${media.episodes}`
														: ''} at
												</span>
											{/if}
											{entry.time}
										</span>
									</li>
								{/each}
							</ol>
						</details>

						<p />
					{/each}
				</div>
			{:else}
				<Loading type="anime schedule" percent={66} />
			{/if}
		{:catch}
			<Error type="Media" loginSessionError={false} card />
		{/await}
	{:else}
		<Loading type="subtitle release data" percent={33} />
	{/if}
{:catch}
	<Error type="Schedule" loginSessionError={false} card />
{/await}

<p />

<Crunchyroll />

<HoverCover {hoveredItem} {hoveredMedia} {imageStyle} {hovering} width={300} />

<style>
	#list-container {
		column-width: 250px;
	}

	.entry::after {
		content: '';
		display: table;
		clear: both;
	}

	.countdown {
		white-space: nowrap;
		float: right;
	}

	.today {
		box-shadow: 0 2.5px 10px var(--base01), 0 0 0 5px var(--base0E), 0 4px 30px var(--base01);
	}

	.list {
		overflow-y: auto;
		break-inside: avoid-column;
	}
</style>