aboutsummaryrefslogtreecommitdiff
path: root/src/routes/+layout.svelte
blob: 91d22613592ec1b05eb31d7528ed27907d75f22a (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
<script lang="ts">
	import { env } from '$env/dynamic/public';
	import { userIdentity as getUserIdentity } from '$lib/AniList/identity';
	import { onMount } from 'svelte';
	import userIdentity from '$stores/userIdentity';
	import settings from '$stores/settings';
	import { browser } from '$app/environment';
	import HeadTitle from '$lib/HeadTitle.svelte';
	import '../app.css';
	import { fly } from 'svelte/transition';
	import { readable, type Readable } from 'svelte/store';
	import { navigating } from '$app/stores';
	import Notifications from 'svelte-notifications';
	import Notification from '$lib/Notification/Notification.svelte';

	export let data;

	let currentUserIdentity = {
		name: '',
		id: -1,
		avatar: 'https://s4.anilist.co/file/anilistcdn/user/avatar/large/default.png'
	};
	const navigationOrder = ['/', '/completed', '/schedule', '/updates', '/tools', '/settings'];
	const previousPage: Readable<string | null> = readable(null, (set) => {
		const unsubscribe = navigating.subscribe(($navigating) => {
			if ($navigating && $navigating.from) set($navigating.from.url.pathname as unknown as null);
		});

		return () => unsubscribe();
	});
	const animationDelay = 100;

	$: way = data.url.includes('/user')
		? 200
		: $previousPage && $previousPage.includes('/user')
		? -200
		: navigationOrder.indexOf(data.url) > navigationOrder.indexOf($previousPage ?? '/')
		? 200
		: -200;

	onMount(async () => {
		if (browser && localStorage.getItem('redirect')) {
			window.location.href = localStorage.getItem('redirect') ?? '/';

			localStorage.removeItem('redirect');
		}

		settings.get();

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

			currentUserIdentity = JSON.parse($userIdentity);
			currentUserIdentity.name = currentUserIdentity.name;
		}
	});
</script>

<HeadTitle />

<div id="container">
	<div id="header" class="card card-centered">
		<div>
			<a href="/" class="header-item">Home</a><a href="/completed" class="header-item">Completed</a>
			<a href="/schedule" class="header-item">Subtitle Schedule</a>
			<a href="/updates" class="header-item">New Releases</a>
			<a href="/tools" class="header-item">Tools</a>
			<a href="/settings" class="header-item">Settings</a>

			<span style="opacity: 50%;" class="header-item">|</span>

			{#if data.user}
				<a href={`/user/${currentUserIdentity.name}`} class="header-item">Profile</a>
			{/if}

			{#if data.user === undefined}
				<a
					class="header-item"
					href={`https://anilist.co/api/v2/oauth/authorize?client_id=${env.PUBLIC_ANILIST_CLIENT_ID}&redirect_uri=${env.PUBLIC_ANILIST_REDIRECT_URI}&response_type=code`}
					on:click={() => {
						localStorage.setItem(
							'redirect',
							window.location.origin + window.location.pathname + window.location.search
						);
					}}
				>
					Log in with AniList
				</a>
			{:else}
				<a href="/api/authentication/log-out" class="header-item">Log out </a>
				{#if data.user}
					<a href={`/user/${currentUserIdentity.name}`} class="header-item">
						<img id="avatar" src={currentUserIdentity.avatar} alt="Avatar" />
					</a>
				{/if}
			{/if}
		</div>
	</div>

	<p />

	<Notifications item={Notification} zIndex={5000}>
		{#if $settings.displayDisableAnimations}
			<slot />
		{:else}
			{#key data.url}
				<div
					in:fly={{
						x: way,
						duration: animationDelay,
						delay: animationDelay
					}}
					out:fly={{ x: -way, duration: animationDelay }}
				>
					<slot />
				</div>
			{/key}
		{/if}
	</Notifications>
</div>

<style>
	#header {
		font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
			Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
		font-size: 1.05em;
		font-weight: 600;
		padding: 0.8rem 0.4rem;
	}

	#header a {
		color: var(--base06);
	}

	:global(html.light-theme) {
		filter: invert(0);
	}

	:global(html.light-theme img) {
		filter: invert(0);
	}

	#container {
		height: 100%;
		display: flex;
		flex-direction: column;
	}

	/* #hover-header {
		position: fixed;
		top: 0;
		left: 0;
		padding: 0.5% 0.25% 0.25% 0;
		z-index: 1000;
		transition: 0.25s;
		opacity: 0;
		background-color: var(--base00);
		width: 100%;
	} */

	@media (max-width: 640px) {
		/* #hover-header {
			opacity: 1;
			position: unset;
			padding: 0; */
		/* font-size: 5vw; */
		/* } */
	}

	/* #hover-header:hover {
		opacity: 1;
	} */

	:global(a) {
		text-decoration: none;
		transition: all 0.15s ease-in-out;
	}

	:global(a:hover) {
		text-decoration: underline;
	}

	.header-item {
		margin: 0 0.5rem;
	}

	.header-item:hover {
		text-decoration: none;
	}

	.header-item:active {
		outline: none;
	}

	#avatar {
		width: 2em;
		display: inline-block;
		vertical-align: middle;
		border-radius: 8px;
		box-shadow: 0 1.5px 9px var(--base01), 0 0 0 4px var(--base0E), 0 4px 30px var(--base01);
	}
</style>