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
|
<script lang="ts">
import userIdentity from '../../stores/userIdentity.js';
import {
userIdentity as getUserIdentity,
type AniListAuthorisation
} from '$lib/AniList/identity';
import { onMount } from 'svelte';
import { wrapped } from '$lib/AniList/wrapped.js';
import {
fullActivityHistory,
activityHistory as getActivityHistory
} from '$lib/AniList/activity.js';
import { Type, mediaListCollection, type Media } from '$lib/AniList/media.js';
import anime from '../../stores/anime.js';
import lastPruneTimes from '../../stores/lastPruneTimes.js';
import manga from '../../stores/manga.js';
import Error from '$lib/Error.svelte';
import { domToBlob } from 'modern-screenshot';
import { browser } from '$app/environment';
import { page } from '$app/stores';
import { clearAllParameters, nbsp } from './tool.js';
import { env } from '$env/dynamic/public';
import { estimatedDayReading } from '$lib/Media/Manga/time';
import ActivityHistoryGrid from './ActivityHistoryGrid.svelte';
import SettingHint from '$lib/Settings/SettingHint.svelte';
export let user: AniListAuthorisation;
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 = false;
let includeRepeats = false;
let width = 980;
let lightMode = false;
let highestRatedCount = 5;
let mounted = false;
let generated = false;
let disableActivityHistory = true;
let excludedKeywordsInput = '';
let excludedKeywords: string[] = [];
let useFullActivityHistory = false;
$: {
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('width', width.toString());
$page.url.searchParams.set('lightMode', lightMode.toString());
$page.url.searchParams.set('highestRatedCount', highestRatedCount.toString());
$page.url.searchParams.set('disableActivityHistory', disableActivityHistory.toString());
history.replaceState(null, '', `?${$page.url.searchParams.toString()}`);
}
}
$: {
includeMusic = includeMusic;
includeSpecials = includeSpecials;
includeRepeats = includeRepeats;
update().then(updateWidth).catch(updateWidth);
}
$: {
animeList = animeList;
mangaList = mangaList;
highestRatedCount = highestRatedCount;
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();
}
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 (bottomWidths > requiredWidth) requiredWidth = bottomWidths;
wrappedContainer.style.width = `${requiredWidth}px`;
width = requiredWidth;
};
reset();
reset();
};
onMount(async () => {
clearAllParameters([
'transparency',
'lightTheme',
'watermark',
'includeMusic',
'includeSpecials',
'includeRepeats',
'width',
'forceDark',
'highestRatedCount',
'disableActivityHistory'
]);
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';
width = parseInt($page.url.searchParams.get('width') || '980', 10);
lightMode = $page.url.searchParams.get('lightMode') === 'true';
highestRatedCount = parseInt($page.url.searchParams.get('highestRatedCount') || '5', 10);
disableActivityHistory = $page.url.searchParams.get('disableActivityHistory') === '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();
mounted = true;
});
const update = async () => {
const currentYear = new Date(Date.now()).getFullYear();
animeList = (
await mediaListCollection(
user,
currentUserIdentity,
Type.Anime,
$anime,
$lastPruneTimes.anime,
true,
true
)
)
.filter(
(item, index, self) =>
self.findIndex((itemToCompare) => itemToCompare.id === item.id) === index &&
(includeMusic ? true : item.format !== 'MUSIC') &&
(includeRepeats ? true : item.mediaListEntry?.repeat === 0) &&
(item.mediaListEntry?.startedAt.year === currentYear ||
item.mediaListEntry?.completedAt.year === currentYear)
)
.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;
});
mangaList = (
await mediaListCollection(
user,
currentUserIdentity,
Type.Manga,
$manga,
$lastPruneTimes.manga,
true,
true
)
)
.filter(
(item, index, self) =>
self.findIndex((itemToCompare) => itemToCompare.id === item.id) === index &&
(includeRepeats ? true : item.mediaListEntry?.repeat === 0) &&
(item.mediaListEntry?.startedAt.year === currentYear ||
item.mediaListEntry?.completedAt.year === currentYear)
)
.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 proxy = (url: string, disable = false) =>
env.PUBLIC_ANILIST_REDIRECT_URI?.includes('192.168') && !disable
? url
: `/api/proxy?url=${encodeURIComponent(url)}`;
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;
});
};
</script>
{#if currentUserIdentity.id === -2}
Please log in to view this page.
{:else if currentUserIdentity.id !== -1}
{#await useFullActivityHistory ? fullActivityHistory(user, currentUserIdentity) : getActivityHistory(currentUserIdentity)}
{@html nbsp(`Loading${useFullActivityHistory ? ' full-year' : ''} activity history ...`)}
{:then activities}
{#await wrapped(user, currentUserIdentity)}
Loading ...
{:then wrapped}
<div
id="wrapped"
class:light-theme={lightMode}
style={`width: ${width}px;`}
class:transparent={transparency}
>
<div class="categories-grid" style="padding-bottom: 0;">
<div class="grid-item image-grid avatar-grid category top-category">
<a href={`https://anilist.co/user/${currentUserIdentity.name}`} target="_blank">
<img src={proxy(wrapped.avatar.large)} alt="User Avatar" on:load={updateWidth} />
</a>
<div>
<div>
<a href={`https://anilist.co/user/${currentUserIdentity.name}`} target="_blank">
<b>
{currentUserIdentity.name}
</b>
</a>
</div>
<div>
Status Posts: {wrapped.activities.statusCount}
</div>
<div>
Messages: {wrapped.activities.messageCount}
</div>
<div>
Days Active: {activities.length}/{useFullActivityHistory ? 365 : 189}
</div>
</div>
</div>
<div class="category-grid pure-category category top-category">
<div class="grid-item">
<b>Anime</b>
</div>
<div class="grid-item">
Time Watched: {((minutesWatched || 0) / 60 / 24).toFixed(2)} days
</div>
<div class="grid-item">
Completed: {animeList?.length}
</div>
<div class="grid-item">Episodes: {episodes}</div>
</div>
<div class="category-grid pure-category category top-category">
<div class="grid-item">
<b>Manga</b>
</div>
<div class="grid-item">
Time Read: {estimatedDayReading(chapters).toFixed(2)} days
</div>
<div class="grid-item">
Completed: {mangaList?.length}
</div>
<div class="grid-item">
Chapters: {chapters}
</div>
</div>
</div>
<div class="categories-grid">
<div class="category-grid pure-category category middle-category">
<div class="grid-item image-grid">
{#if animeList !== undefined}
<a href={`https://anilist.co/anime/${animeList[0].id}`} target="_blank">
<img
src={proxy(animeList[0].coverImage.extraLarge)}
alt="Highest Rated Anime Cover"
class="cover-image"
on:load={updateWidth}
/>
</a>
<div>
<b>Highest Rated Anime</b>
<ol>
{#each animeList?.slice(0, highestRatedCount) as anime}
<li>
<a href={`https://anilist.co/anime/${anime.id}`} target="_blank">
{anime.title.english || anime.title.romaji || anime.title.native}
</a>
</li>
{/each}
</ol>
</div>
{:else}
Loading ...
{/if}
</div>
</div>
<div class="category-grid pure-category category middle-category">
<div class="grid-item image-grid">
{#if mangaList !== undefined}
<a href={`https://anilist.co/manga/${mangaList[0].id}`} target="_blank">
<img
src={proxy(mangaList[0].coverImage.extraLarge)}
alt="Highest Rated Manga Cover"
class="cover-image"
on:load={updateWidth}
/>
</a>
<div>
<b>Highest Rated Manga</b>
<ol>
{#each mangaList?.slice(0, highestRatedCount) as manga}
<li>
<a href={`https://anilist.co/manga/${manga.id}`} target="_blank">
{manga.title.english || manga.title.romaji || manga.title.native}
</a>
</li>
{/each}
</ol>
</div>
{:else}
Loading ...
{/if}
</div>
</div>
</div>
{#if !disableActivityHistory}
<div class="categories-grid bottom-category" style="padding-top: 0;">
<div class="category-grid pure-category">
<div id="activity-history">
<ActivityHistoryGrid {user} activityData={activities} />
</div>
</div>
</div>
{/if}
{#if watermark}
<div class="categories-grid" style="padding-top: 0;">
<div class="category-grid pure-category" id="watermark">
<a href="https://due.moe/wrapped" target="_blank">due.moe/wrapped</a>
</div>
</div>
{/if}
</div>
<p />
<p>
<a href={'#'} on:click={screenshot}>Generate image</a>
</p>
<details>
<summary>Options</summary>
<div id="options">
<input type="checkbox" bind:checked={watermark} /> Enable 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={disableActivityHistory} /> Disable activity history<br
/>
{#if !disableActivityHistory}
<input type="checkbox" bind:checked={useFullActivityHistory} />
Enable full-year activity<br />
<SettingHint>
If you have many activities, this <b>will</b> cause heavy rate-limiting. If you get rate-limited,
wait one minute, then try again.
</SettingHint><br />
{/if}
<p />
<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 and OVAs<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 />
<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 />
<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>
</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}
{:catch}
<Error />
{/await}
{:catch}
<Error
type={`${useFullActivityHistory ? 'Full-year ' : ''}activity history`}
loginSessionError={!useFullActivityHistory}
/>
{/await}
{:else}
Loading ...
{/if}
<style>
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');
@import url('https://fonts.googleapis.com/css?family=Overpass:400,600,700,800');
.categories-grid {
display: flex;
flex-wrap: wrap;
row-gap: 1.5em;
column-gap: 1.5em;
padding: 2%;
justify-content: center;
font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell,
Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
background-color: #0b1622;
}
.categories-grid b {
font-family: Overpass, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell,
Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
font-weight: 600;
}
.category-grid,
.image-grid {
background-color: #151f2e;
border-radius: 4px;
color: rgb(159, 173, 189);
}
.pure-category,
.avatar-grid {
padding: 1.5%;
}
.category-grid {
display: grid;
}
.image-grid {
display: flex;
column-gap: 1em;
flex-wrap: wrap;
}
.image-grid img {
height: 6em;
border-radius: 3px;
}
.cover-image {
height: 8.75em !important;
}
.categories-grid a {
text-decoration: none;
color: unset;
}
.transparent .categories-grid {
background-color: transparent !important;
}
.light-theme .categories-grid {
background-color: #edf1f5;
}
.light-theme .category-grid {
background-color: #fafafa;
color: rgb(92, 114, 138);
}
.light-theme .image-grid {
background-color: #fafafa;
color: rgb(92, 114, 138);
}
ol {
margin: 0 !important;
}
#watermark {
color: rgb(61, 180, 242);
}
#wrapped-final {
height: auto;
width: 50%;
}
</style>
|