aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Tools/Wrapped.svelte
blob: 29ef0919056ed5654c723a53d8c8f8ac7b0bb829 (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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
<script lang="ts">
	import userIdentity from '$stores/userIdentity';
	import {
		userIdentity as getUserIdentity,
		type AniListAuthorisation
	} from '$lib/AniList/identity';
	import { onMount } from 'svelte';
	import { tops, wrapped, type TopMedia, SortOptions } from '$lib/AniList/wrapped';
	import {
		fullActivityHistory,
		activityHistory as getActivityHistory
	} from '$lib/AniList/activity';
	import { Type, mediaListCollection, type Media } from '$lib/AniList/media';
	import anime from '$stores/anime';
	import lastPruneTimes from '$stores/lastPruneTimes';
	import manga from '$stores/manga';
	import Error from '$lib/Error/RateLimited.svelte';
	import { domToBlob } from 'modern-screenshot';
	import { browser } from '$app/environment';
	import { page } from '$app/stores';
	import { clearAllParameters } from '../Utility/parameters';
	import { nbsp } from '../Utility/html';
	import SettingHint from '$lib/Settings/SettingHint.svelte';
	import { database } from '$lib/Database/activities';
	import Activity from './Wrapped/Top/Activity.svelte';
	import Anime from './Wrapped/Top/Anime.svelte';
	import Manga from './Wrapped/Top/Manga.svelte';
	import ActivityHistory from './Wrapped/ActivityHistory.svelte';
	import MediaExtras from './Wrapped/MediaExtras.svelte';
	import MediaPanel from './Wrapped/Media.svelte';
	import Watermark from './Wrapped/Watermark.svelte';

	export let user: AniListAuthorisation;

	const currentYear = new Date(Date.now()).getFullYear();
	let selectedYear = new Date(Date.now()).getFullYear();
	let currentUserIdentity = { name: '', id: -1 };
	let episodes = 0;
	let chapters = 0;
	let minutesWatched = 0;
	let animeList: Media[] | undefined = undefined;
	let mangaList: Media[] | undefined = undefined;
	let originalAnimeList: Media[] | undefined = undefined;
	let originalMangaList: Media[] | undefined = undefined;
	let transparency = false;
	let lightTheme = true;
	let watermark = false;
	let includeMusic = false;
	let includeSpecials = true;
	let includeRepeats = false;
	let width = 1920;
	let lightMode = false;
	let highestRatedCount = 5;
	let genreTagCount = 5;
	let mounted = false;
	let generated = false;
	let disableActivityHistory = true;
	let excludedKeywordsInput = '';
	let excludedKeywords: string[] = [];
	let useFullActivityHistory = false;
	let topGenresTags = true;
	let topMedia: TopMedia;
	let highestRatedMediaPercentage = true;
	let highestRatedGenreTagPercentage = true;
	let genreTagsSort = SortOptions.SCORE;
	let mediaSort = SortOptions.SCORE;
	let includeMovies = true;
	let includeOVAs = true;
	let activityHistoryPosition: 'TOP' | 'BELOW_TOP' | 'ORIGINAL' = 'ORIGINAL';

	$: {
		if (browser && mounted) {
			$page.url.searchParams.set('transparency', transparency.toString());
			$page.url.searchParams.set('lightTheme', lightTheme.toString());
			$page.url.searchParams.set('watermark', watermark.toString());
			$page.url.searchParams.set('includeMusic', includeMusic.toString());
			$page.url.searchParams.set('includeSpecials', includeSpecials.toString());
			$page.url.searchParams.set('includeRepeats', includeRepeats.toString());
			$page.url.searchParams.set('lightMode', lightMode.toString());
			$page.url.searchParams.set('highestRatedCount', highestRatedCount.toString());
			$page.url.searchParams.set('genreTagCount', genreTagCount.toString());
			$page.url.searchParams.set('disableActivityHistory', disableActivityHistory.toString());
			$page.url.searchParams.set(
				'highestRatedMediaPercentage',
				highestRatedMediaPercentage.toString()
			);
			$page.url.searchParams.set(
				'highestRatedGenreTagPercentage',
				highestRatedGenreTagPercentage.toString()
			);
			$page.url.searchParams.set('genreTagsSort', genreTagsSort.toString());
			$page.url.searchParams.set('mediaSort', mediaSort.toString());
			$page.url.searchParams.set('includeMovies', includeMovies.toString());
			$page.url.searchParams.set('includeOVAs', includeOVAs.toString());

			history.replaceState(null, '', `?${$page.url.searchParams.toString()}`);
		}
	}
	$: {
		includeMusic = includeMusic;
		includeSpecials = includeSpecials;
		includeRepeats = includeRepeats;
		disableActivityHistory = disableActivityHistory;
		highestRatedMediaPercentage = highestRatedMediaPercentage;
		highestRatedGenreTagPercentage = highestRatedGenreTagPercentage;
		topGenresTags = topGenresTags;
		genreTagsSort = genreTagsSort;
		mediaSort = mediaSort;
		includeMovies = includeMovies;
		includeOVAs = includeOVAs;
		selectedYear = selectedYear;

		update().then(updateWidth).catch(updateWidth);
	}
	$: {
		animeList = animeList;
		mangaList = mangaList;
		highestRatedCount = highestRatedCount;

		new Promise((resolve) => setTimeout(resolve, 1)).then(updateWidth);
	}
	$: {
		genreTagCount = genreTagCount;

		if (animeList && mangaList)
			topMedia = tops(
				[...(animeList || []), ...(mangaList || [])],
				genreTagCount,
				genreTagsSort,
				excludedKeywords
			);

		new Promise((resolve) => setTimeout(resolve, 1)).then(updateWidth);
	}
	$: {
		excludedKeywords = excludedKeywords;

		if (excludedKeywords.length > 0 && animeList !== undefined && mangaList !== undefined) {
			animeList = originalAnimeList;
			mangaList = originalMangaList;
			animeList = excludeKeywords(animeList as Media[]);
			mangaList = excludeKeywords(mangaList as Media[]);
		}

		updateWidth();
	}
	$: genreTagTitle = (() => {
		switch (genreTagsSort) {
			case SortOptions.SCORE:
				return 'Highest Rated';
			case SortOptions.MINUTES_WATCHED:
				return 'Most Watched';
			case SortOptions.COUNT:
				return 'Most Common';
		}
	})();
	$: animeMostTitle = (() => {
		switch (mediaSort) {
			case SortOptions.SCORE:
				return 'Highest Rated';
			case SortOptions.MINUTES_WATCHED:
				return 'Most Watched';
			case SortOptions.COUNT:
				return 'Most Common';
		}
	})();
	$: mangaMostTitle = (() => {
		switch (mediaSort) {
			case SortOptions.SCORE:
				return 'Highest Rated';
			case SortOptions.MINUTES_WATCHED:
				return 'Most Read';
			case SortOptions.COUNT:
				return 'Most Common';
		}
	})();

	const updateWidth = () => {
		const wrappedContainer = document.querySelector('#wrapped') as HTMLElement;

		if (!wrappedContainer) return;

		wrappedContainer.style.width = `1920px`;

		const reset = () => {
			let topWidths = 0;
			let middleWidths = 0;
			let bottomWidths = 0;

			wrappedContainer.querySelectorAll('.category').forEach((item) => {
				const category = item as HTMLElement;
				const style = window.getComputedStyle(category);
				const width =
					category.offsetWidth +
					parseFloat(style.marginLeft) +
					parseFloat(style.marginRight) +
					parseFloat(style.paddingLeft) +
					parseFloat(style.paddingRight) +
					parseFloat(style.borderLeftWidth) +
					parseFloat(style.borderRightWidth);

				if (category.classList.contains('top-category')) {
					topWidths += width;
				} else if (category.classList.contains('middle-category')) {
					middleWidths += width;
				} else if (category.classList.contains('bottom-category')) {
					bottomWidths += width;
				}
			});

			let requiredWidth = topWidths > middleWidths ? topWidths : middleWidths;

			if (!disableActivityHistory && bottomWidths > requiredWidth) requiredWidth = bottomWidths;

			wrappedContainer.style.width = `${requiredWidth}px`;
			width = requiredWidth;
		};

		reset();
		reset();
	};

	onMount(async () => {
		clearAllParameters([
			'transparency',
			'lightTheme',
			'watermark',
			'includeMusic',
			'includeSpecials',
			'includeRepeats',
			'forceDark',
			'highestRatedCount',
			'genreTagCount',
			'disableActivityHistory',
			'highestRatedMediaPercentage',
			'highestRatedGenreTagPercentage',
			'genreTagsSort',
			'mediaSort',
			'includeMovies',
			'includeOVAs'
		]);

		if (browser) {
			transparency = $page.url.searchParams.get('transparency') === 'true';
			lightTheme = $page.url.searchParams.get('lightTheme') === 'true';
			watermark = $page.url.searchParams.get('watermark') === 'true';
			includeMusic = $page.url.searchParams.get('includeMusic') === 'true';
			includeSpecials = $page.url.searchParams.get('includeSpecials') === 'true';
			includeRepeats = $page.url.searchParams.get('includeRepeats') === 'true';
			lightMode = $page.url.searchParams.get('lightMode') === 'true';
			highestRatedCount = parseInt($page.url.searchParams.get('highestRatedCount') || '5', 10);
			genreTagCount = parseInt($page.url.searchParams.get('genreTagCount') || '5', 10);
			disableActivityHistory = $page.url.searchParams.get('disableActivityHistory') === 'true';
			highestRatedMediaPercentage =
				$page.url.searchParams.get('highestRatedMediaPercentage') === 'true';
			highestRatedGenreTagPercentage =
				$page.url.searchParams.get('highestRatedGenreTagPercentage') === 'true';
			// genreTagsSort = parseInt($page.url.searchParams.get('genreTagsSort') || '0', 10);
			// mediaSort = parseInt($page.url.searchParams.get('mediaSort') || '0', 10);
			includeMovies = $page.url.searchParams.get('includeMovies') === 'true';
			includeOVAs = $page.url.searchParams.get('includeOVAs') === 'true';
		}

		if (user !== undefined) {
			if ($userIdentity === '') userIdentity.set(JSON.stringify(await getUserIdentity(user)));

			currentUserIdentity = JSON.parse($userIdentity);
			currentUserIdentity.name = currentUserIdentity.name;
		} else currentUserIdentity.id = -2;

		await update().then(() => (mounted = true));
	});

	const update = async () => {
		if (currentUserIdentity.id === -1) return;

		animeList = (
			await mediaListCollection(
				user,
				currentUserIdentity,
				Type.Anime,
				$anime,
				$lastPruneTimes.anime,
				{
					forcePrune: true,
					includeCompleted: true,
					all: true
				}
			)
		)
			.filter(
				(item, index, self) =>
					self.findIndex((itemToCompare) => itemToCompare.id === item.id) === index &&
					(includeMusic ? true : item.format !== 'MUSIC') &&
					(includeRepeats
						? true
						: item.startDate.year === selectedYear || item.endDate.year === selectedYear
						? true
						: item.mediaListEntry?.repeat === 0) &&
					(item.mediaListEntry?.startedAt.year === selectedYear ||
						item.mediaListEntry?.completedAt.year === selectedYear) &&
					(includeMovies ? true : item.format !== 'MOVIE') &&
					(includeSpecials ? true : item.format !== 'SPECIAL') &&
					(includeOVAs ? true : item.format !== 'OVA')
			)
			.sort((a, b) => {
				switch (mediaSort) {
					case SortOptions.MINUTES_WATCHED:
						if (a.duration === undefined || a.mediaListEntry?.progress === undefined) return 1;
						else if (b.duration === undefined || b.mediaListEntry?.progress === undefined)
							return -1;
						else
							return (
								b.duration * b.mediaListEntry.progress - a.duration * a.mediaListEntry.progress
							);
					case SortOptions.SCORE:
					default:
						if (a.mediaListEntry?.score === undefined) return 1;
						else if (b.mediaListEntry?.score === undefined) return -1;
						else return b.mediaListEntry?.score - a.mediaListEntry?.score;
				}
			});
		mangaList = (
			await mediaListCollection(
				user,
				currentUserIdentity,
				Type.Manga,
				$manga,
				$lastPruneTimes.manga,
				{
					forcePrune: true,
					includeCompleted: true,
					all: true
				}
			)
		)
			.filter(
				(item, index, self) =>
					self.findIndex((itemToCompare) => itemToCompare.id === item.id) === index &&
					(includeRepeats ? true : item.mediaListEntry?.repeat === 0) &&
					(item.mediaListEntry?.startedAt.year === selectedYear ||
						item.mediaListEntry?.completedAt.year === selectedYear)
			)
			.sort((a, b) => {
				if (a.mediaListEntry?.score === undefined) return 1;
				else if (b.mediaListEntry?.score === undefined) return -1;
				else return b.mediaListEntry?.score - a.mediaListEntry?.score;
			});

		episodes = 0;
		minutesWatched = 0;
		chapters = 0;

		for (const media of animeList) {
			episodes += media.mediaListEntry?.progress || 0;
			minutesWatched += (media.mediaListEntry?.progress || 0) * media.duration || 0;
		}

		for (const media of mangaList) chapters += media.mediaListEntry?.progress || 0;
	};

	/* eslint-disable @typescript-eslint/no-explicit-any */
	// const year = (statistic: { startYears: any }) =>
	// 	statistic.startYears.find((y: { startYear: number }) => y.startYear === 2023);

	const screenshot = async () => {
		let element = document.querySelector('#wrapped') as HTMLElement;

		if (element !== null) {
			domToBlob(element, {
				backgroundColor: transparency ? 'transparent' : lightTheme ? '#edf1f5' : '#0b1622',
				quality: 1,
				scale: 2,
				fetch: {
					requestInit: {
						mode: 'cors'
					},
					bypassingCache: true
				}
			}).then((blob) => {
				const downloadWrapper = document.createElement('a');
				// const wrappedImageButton = document.getElementById(
				// 	'wrapped-image-download'
				// ) as HTMLAnchorElement;
				const image = document.createElement('img');
				const object = (window.URL || window.webkitURL || window || {}).createObjectURL(blob);

				// downloadWrapper.download = `due_dot_moe_wrapped_${dark ? 'dark' : 'light'}.png`;
				downloadWrapper.href = object;
				downloadWrapper.target = '_blank';
				image.src = object;

				downloadWrapper.appendChild(image);

				// if (wrappedImageButton !== null) {
				// 	wrappedImageButton.href = object;
				// }

				const wrappedFinal = document.getElementById('wrapped-final');

				if (wrappedFinal !== null) {
					wrappedFinal.innerHTML = '';

					wrappedFinal.appendChild(downloadWrapper);

					generated = true;
				}

				downloadWrapper.click();
			});
		}
	};

	// const abbreviate = (string: string, maxLength = 40, enabled = true) => {
	// 	if (!enabled) {
	// 		return string;
	// 	}

	// 	if (string.length <= maxLength) {
	// 		return string;
	// 	}

	// 	return string.slice(0, maxLength - 3) + ' …';
	// };

	const submitExcludedKeywords = () => {
		if (excludedKeywordsInput.length <= 0 && excludedKeywords.length > 0) {
			animeList = originalAnimeList;
			mangaList = originalMangaList;
			excludedKeywords = [];
		} else if (excludedKeywordsInput.length >= 0 && excludedKeywords.length <= 0) {
			originalAnimeList = animeList;
			originalMangaList = mangaList;
		}

		if (excludedKeywordsInput.length > 0)
			excludedKeywords = excludedKeywordsInput
				.split(',')
				.map((k) => k.trim())
				.filter((k) => k.length > 0);
	};

	const excludeKeywords = (media: Media[]) => {
		if (excludedKeywords.length <= 0) return media;

		return media.filter((m) => {
			for (const keyword of excludedKeywords) {
				if (m.title.english?.toLowerCase().includes(keyword.toLowerCase())) return false;
				if (m.title.romaji?.toLowerCase().includes(keyword.toLowerCase())) return false;
				if (m.title.native?.toLowerCase().includes(keyword.toLowerCase())) return false;
			}

			return true;
		});
	};

	const pruneFullYear = async () => {
		await database.activities.bulkDelete((await database.activities.toArray()).map((m) => m.page));
	};

	// const mergeArraySort = (a: any, b: any, mode: 'tags' | 'genres') => {
	// 	let merged = [...a, ...b].sort((a, b) => b.meanScore - a.meanScore);

	// 	merged = merged.filter(
	// 		(item, index, self) =>
	// 			self.findIndex((itemToCompare) =>
	// 				mode === 'genres'
	// 					? itemToCompare.genre === item.genre
	// 					: itemToCompare.tag.name === item.tag.name
	// 			) === index
	// 	);

	// 	return merged;
	// };

	// const randomCoverFromTop10 = (
	// 	statistics: { anime: any; manga: any },
	// 	mode: 'tags' | 'genres'
	// ) => {
	// 	const top = mergeArraySort(statistics.anime[mode], statistics.manga[mode], mode);

	// 	return mediaCover(top[Math.floor(Math.random() * top.length)].mediaIds[0]);
	// };
</script>

{#if currentUserIdentity.id === -2}
	Please log in to view this page.
{:else if currentUserIdentity.id !== -1}
	{#await selectedYear !== currentYear || useFullActivityHistory || new Date().getMonth() <= 6 ? fullActivityHistory(user, currentUserIdentity, selectedYear) : getActivityHistory(currentUserIdentity)}
		{@html nbsp(`Loading${useFullActivityHistory ? ' full-year' : ''} activity history ...`)}
	{:then activities}
		{#await wrapped(user, currentUserIdentity, selectedYear)}
			{@html nbsp('Loading user data ...')}
		{:then wrapped}
			<div id="list-container">
				<div
					id="wrapped"
					class:light-theme={lightMode}
					style={`width: ${width}px; flex-shrink: 0;`}
					class:transparent={transparency}
				>
					{#if !disableActivityHistory && activityHistoryPosition === 'TOP' && activities.length > 0 && selectedYear === currentYear}
						<ActivityHistory {user} {activities} year={selectedYear} {activityHistoryPosition} />
					{/if}
					<div class="categories-grid" style="padding-bottom: 0;">
						<Activity
							{wrapped}
							identity={currentUserIdentity}
							year={selectedYear}
							{activities}
							{useFullActivityHistory}
							{updateWidth}
						/>
						<Anime {animeList} {minutesWatched} {episodes} />
						<Manga {mangaList} {chapters} />
					</div>
					{#if !disableActivityHistory && activityHistoryPosition === 'BELOW_TOP' && activities.length > 0 && selectedYear === currentYear}
						<ActivityHistory {user} {activities} year={selectedYear} {activityHistoryPosition} />
					{/if}
					<MediaPanel
						{animeList}
						{mangaList}
						{highestRatedMediaPercentage}
						{highestRatedCount}
						{updateWidth}
						{wrapped}
						{animeMostTitle}
						{mangaMostTitle}
					/>
					{#if topMedia && topGenresTags && ((topMedia.topGenreMedia && topMedia.genres.length > 0) || (topMedia.topTagMedia && topMedia.tags.length > 0))}
						<MediaExtras
							{topMedia}
							{genreTagTitle}
							{highestRatedGenreTagPercentage}
							{updateWidth}
						/>
					{/if}
					{#if !disableActivityHistory && activityHistoryPosition === 'ORIGINAL' && activities.length > 0 && selectedYear === currentYear}
						<ActivityHistory {user} {activities} year={selectedYear} {activityHistoryPosition} />
					{/if}
					{#if watermark}
						<Watermark />
					{/if}
				</div>
				<div class="list">
					<p>
						<a href={'#'} on:click={screenshot} data-umami-event="Generate Wrapped">
							Generate image
						</a>
					</p>

					<details open>
						<summary>Options</summary>
						<div id="options">
							<details open>
								<summary>Display</summary>

								<input type="checkbox" bind:checked={watermark} /> Show watermark<br />
								<input type="checkbox" bind:checked={transparency} /> Enable background transparency<br
								/>
								<input type="checkbox" bind:checked={lightMode} />
								Enable light mode<br />
								<input type="checkbox" bind:checked={topGenresTags} />
								Show top genres and tags<br />
								<input
									type="checkbox"
									bind:checked={disableActivityHistory}
									disabled={selectedYear !== currentYear}
								/>
								Hide activity history<br />
								<input type="checkbox" bind:checked={highestRatedMediaPercentage} /> Show highest
								rated media percentages<br />
								<input type="checkbox" bind:checked={highestRatedGenreTagPercentage} /> Show highest
								rated genre and tag percentages<br />
								<select bind:value={activityHistoryPosition}>
									<option value="ORIGINAL">Original</option>
									<option value="TOP">Top</option>
									<option value="BELOW_TOP">Below Top</option>
								</select>
								Activity history position<br />
								<select bind:value={highestRatedCount}>
									{#each [3, 4, 5, 6, 7, 8, 9, 10] as count}
										<option value={count}>{count}</option>
									{/each}
								</select>
								Highest rated media count<br />
								<select bind:value={genreTagCount}>
									{#each [3, 4, 5, 6, 7, 8, 9, 10] as count}
										<option value={count}>{count}</option>
									{/each}
								</select>
								Highest genre and tag count<br />
								<button on:click={updateWidth}>Find best fit</button>
								<button on:click={() => (width -= 25)}>-25px</button>
								<button on:click={() => (width += 25)}>+25px</button>
								Width adjustment<br />
							</details>

							<p />

							<details open>
								<summary>Calculation</summary>

								<input type="checkbox" bind:checked={useFullActivityHistory} />
								Enable full-year activity
								<SettingHint>
									<a href={'#'} on:click={pruneFullYear}>Refresh data</a>
								</SettingHint><br />
								<select bind:value={selectedYear}>
									{#each Array.from({ length: currentYear - 2012 }) as _, i}
										<option value={currentYear - i}>
											{currentYear - i}
										</option>
									{/each}
								</select>
								Calculate for year<br />
								<select bind:value={mediaSort}>
									<option value={SortOptions.SCORE}>Score</option>
									<option value={SortOptions.MINUTES_WATCHED}>Minutes Watched/Read</option>
								</select>
								Anime and manga sort<br />
								<select bind:value={genreTagsSort}>
									<option value={SortOptions.SCORE}>Score</option>
									<option value={SortOptions.MINUTES_WATCHED}>Minutes Watched/Read</option>
									<option value={SortOptions.COUNT}>Count</option>
								</select>
								Genre and tag sort<br />
								<input type="checkbox" bind:checked={includeMusic} /> Include music<br />
								<input type="checkbox" bind:checked={includeRepeats} /> Include rewatches & rereads<br
								/>
								<input type="checkbox" bind:checked={includeSpecials} /> Include specials<br />
								<input type="checkbox" bind:checked={includeOVAs} /> Include OVAs<br />
								<input type="checkbox" bind:checked={includeMovies} /> Include movies<br />
								<input
									type="text"
									bind:value={excludedKeywordsInput}
									on:keypress={(e) => {
										e.key === 'Enter' && submitExcludedKeywords();
									}}
								/>
								Excluded keywords
								<a href={`#`} on:click={submitExcludedKeywords} title="Or click your Enter key"
									>Submit</a
								>
								<br />
								<SettingHint>Comma separated list (e.g., "My Hero, Kaguya")</SettingHint>
							</details>
						</div>
					</details>

					<p />

					<div id="wrapped-final" />

					{#if generated}
						<p />

						<blockquote>
							Click on the image to download, or right click and select "Save Image As...".
						</blockquote>
					{/if}
				</div>
			</div>
		{:catch}
			<Error type="User" />
		{/await}
	{:catch}
		<Error
			type={`${useFullActivityHistory ? 'Full-year activity' : 'Activity'} history`}
			loginSessionError={!useFullActivityHistory}
		>
			{#if useFullActivityHistory}
				<p>
					With <b>many</b> activities, it may take multiple attempts to obtain all of your activity history
					from AniList. If this occurs, wait one minute and try again to continue populating your local
					activity history database.
				</p>
			{/if}
		</Error>
	{/await}
{:else}
	{@html nbsp('Loading user identity ...')}
{/if}

<style>
	@import './Wrapped/wrapped.css';
</style>