aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Tools/ActivityHistory
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-12-24 03:05:43 -0800
committerFuwn <[email protected]>2023-12-24 03:05:43 -0800
commit43336c04b4c646699ca004acdda6638bb7b3d241 (patch)
tree0dcbf617debf0f3ef1d1554261b3835248a12812 /src/lib/Tools/ActivityHistory
parentrefactor(utility): move utilities to module (diff)
downloaddue.moe-43336c04b4c646699ca004acdda6638bb7b3d241.tar.xz
due.moe-43336c04b4c646699ca004acdda6638bb7b3d241.zip
refactor(tools): activity history to module
Diffstat (limited to 'src/lib/Tools/ActivityHistory')
-rw-r--r--src/lib/Tools/ActivityHistory/Grid.svelte87
-rw-r--r--src/lib/Tools/ActivityHistory/Tool.svelte117
2 files changed, 204 insertions, 0 deletions
diff --git a/src/lib/Tools/ActivityHistory/Grid.svelte b/src/lib/Tools/ActivityHistory/Grid.svelte
new file mode 100644
index 00000000..a53c1c90
--- /dev/null
+++ b/src/lib/Tools/ActivityHistory/Grid.svelte
@@ -0,0 +1,87 @@
+<script lang="ts">
+ import {
+ fillMissingDays,
+ type ActivityHistoryEntry,
+ activityHistory
+ } from '$lib/AniList/activity';
+ import { onMount } from 'svelte';
+ import userIdentity from '../../../stores/userIdentity';
+ import {
+ userIdentity as getUserIdentity,
+ type AniListAuthorisation
+ } from '$lib/AniList/identity';
+ import { clearAllParameters } from '../../Utility/parameters';
+
+ export let user: AniListAuthorisation;
+ export let activityData: ActivityHistoryEntry[] | null = null;
+
+ let activityHistoryData: ActivityHistoryEntry[];
+ let currentUserIdentity = { name: '', id: -1 };
+ let baseHue = Math.floor(Math.random() * 360);
+
+ onMount(async () => {
+ clearAllParameters();
+
+ if (user !== undefined) {
+ if ($userIdentity === '') userIdentity.set(JSON.stringify(await getUserIdentity(user)));
+
+ currentUserIdentity = JSON.parse($userIdentity);
+ currentUserIdentity.name = currentUserIdentity.name;
+ activityHistoryData = activityData || (await activityHistory(currentUserIdentity));
+ }
+ });
+
+ const gradientColour = (amount: number, maxAmount: number, baseHue: number) => {
+ const lightness = 100 - Math.round((amount / maxAmount) * 50);
+
+ return `hsl(${baseHue}, 100%, ${lightness}%)`;
+ };
+</script>
+
+{#if user === undefined}
+ Please log in to view this page.
+{:else if activityHistoryData === undefined}
+ Loading activity history ... 50%
+{:else}
+ {@const filledActivities = fillMissingDays(activityHistoryData)}
+ {@const highestActivity = Math.max(...filledActivities.map((activity) => activity.amount))}
+
+ <div class="grid">
+ {#each filledActivities as activity}
+ <div
+ class="grid-item"
+ style="background-color: {gradientColour(activity.amount, highestActivity, baseHue)}"
+ on:click={() => (baseHue = Math.floor(Math.random() * 360))}
+ on:keydown={() => {
+ return;
+ }}
+ role="button"
+ tabindex="0"
+ title={`Date: ${new Date(activity.date * 1000).toLocaleDateString()}\nAmount: ${
+ activity.amount
+ }`}
+ />
+ {/each}
+ </div>
+{/if}
+
+<style>
+ .grid {
+ display: grid;
+ grid-template-columns: repeat(52, 1fr);
+ grid-template-rows: repeat(7, 1fr);
+ /* gap: 2px; */
+ grid-auto-flow: column;
+ width: min-content;
+ background-color: white;
+ border-radius: 3px;
+ overflow: hidden;
+ }
+ .grid-item {
+ width: 20px;
+ height: 20px;
+ /* width: 3.25vw; */
+ /* height: 3.25vw; */
+ /* border: 1px solid #ccc; */
+ }
+</style>
diff --git a/src/lib/Tools/ActivityHistory/Tool.svelte b/src/lib/Tools/ActivityHistory/Tool.svelte
new file mode 100644
index 00000000..f60774ee
--- /dev/null
+++ b/src/lib/Tools/ActivityHistory/Tool.svelte
@@ -0,0 +1,117 @@
+<script lang="ts">
+ import {
+ activityHistory,
+ fillMissingDays,
+ type ActivityHistoryEntry
+ } from '$lib/AniList/activity';
+ import { onMount } from 'svelte';
+ import userIdentity from '../../../stores/userIdentity';
+ import {
+ userIdentity as getUserIdentity,
+ type AniListAuthorisation
+ } from '$lib/AniList/identity';
+ import { clearAllParameters } from '../../Utility/parameters';
+ import { domToBlob } from 'modern-screenshot';
+ import ActivityHistoryGrid from './Grid.svelte';
+
+ export let user: AniListAuthorisation;
+
+ let activityHistoryData: Promise<ActivityHistoryEntry[]>;
+ let currentUserIdentity = { name: '', id: -1 };
+ let generated = false;
+
+ onMount(async () => {
+ clearAllParameters();
+
+ if (user !== undefined) {
+ if ($userIdentity === '') userIdentity.set(JSON.stringify(await getUserIdentity(user)));
+
+ currentUserIdentity = JSON.parse($userIdentity);
+ currentUserIdentity.name = currentUserIdentity.name;
+ activityHistoryData = activityHistory(currentUserIdentity);
+ }
+ });
+
+ // const incrementDate = (date: Date): Date => {
+ // date.setDate(date.getDate() + 1);
+
+ // return date;
+ // };
+
+ const screenshot = async () => {
+ let element = document.querySelector('.grid') as HTMLElement;
+
+ if (element !== null) {
+ domToBlob(element, {
+ quality: 1,
+ scale: 2
+ }).then((blob) => {
+ const downloadWrapper = document.createElement('a');
+ const image = document.createElement('img');
+ const object = (window.URL || window.webkitURL || window || {}).createObjectURL(blob);
+
+ downloadWrapper.href = object;
+ downloadWrapper.target = '_blank';
+ image.src = object;
+
+ downloadWrapper.appendChild(image);
+
+ const gridFinal = document.getElementById('grid-final');
+
+ if (gridFinal !== null) {
+ gridFinal.innerHTML = '';
+
+ gridFinal.appendChild(downloadWrapper);
+
+ generated = true;
+ }
+
+ downloadWrapper.click();
+ });
+ }
+ };
+</script>
+
+{#if user === undefined}
+ Please log in to view this page.
+{:else}
+ {#await activityHistoryData}
+ Loading activity history ... 33%
+ {:then activities}
+ {#if activities === undefined}
+ Loading activities ... 66%
+ {:else}
+ {@const filledActivities = fillMissingDays(activities)}
+
+ <ActivityHistoryGrid {user} />
+
+ <p />
+
+ <div id="grid-final" />
+
+ {#if generated}
+ <p />
+ {/if}
+
+ <p><a href={'#'} on:click={screenshot}>Generate grid image</a></p>
+
+ <details open>
+ <summary>
+ Days in risk of developing an activity history hole. (days with one activity)
+ </summary>
+
+ <ul>
+ {#each filledActivities as activity}
+ {#if activity.amount === 0}
+ <li>
+ {new Date(
+ activity.date * 1000 + new Date().getTimezoneOffset() * 60 * 1000
+ ).toDateString()}
+ </li>
+ {/if}
+ {/each}
+ </ul>
+ </details>
+ {/if}
+ {/await}
+{/if}