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
|
<script lang="ts">
import Emoji from '$lib/Emoji.svelte'
import { browser } from '$app/environment'
import Tooltip from '$lib/Tooltip.svelte'
import { onDestroy, onMount } from 'svelte'
import backgroundNames from '../../_backgrounds.json'
import type { AccountCustomization, AccountSchema, CleanUser, SessionSchema } from '$lib/APITypes'
import type { PageData } from './$types'
import Head from '$lib/Head.svelte'
import Header from '$lib/Header.svelte'
export let data: PageData
export let session: SessionSchema = data.session
export let account: AccountSchema = data.account
export let player: CleanUser = data.player
export let isDonator: boolean = data.isDonator
let pack: AccountCustomization['pack'] = account?.customization?.pack ?? 'furfsky_reborn'
let blurBackground: AccountCustomization['blurBackground'] =
account?.customization?.blurBackground ?? false
let backgroundName: string | undefined = account?.customization?.backgroundUrl?.replace(
/^\/backgrounds\//,
''
)
let emoji: AccountCustomization['emoji'] = account?.customization?.emoji
let mounted = false
onMount(() => {
mounted = true
})
onDestroy(() => {
mounted = false
})
let error: string | undefined
let loading: boolean = false
async function updateProfile() {
if (!browser || !mounted) return
error = undefined
loading = true
const response = await fetch('/profile/update', {
method: 'PATCH',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
pack,
blurBackground,
backgroundName,
emoji,
}),
})
.then(r => {
loading = false
return r.json()
})
.catch(e => {
loading = false
error = e.message
})
if (!response.ok) {
error = response.error
}
}
// call updateProfile whenever anything is changed
$: [pack, blurBackground, backgroundName, emoji, updateProfile()]
</script>
<Head title="Customize Profile" />
<Header />
<main>
{#if session && session._id}
<a href="/logout?sid={session._id}" class="logout"><button>Log out</button></a>
{/if}
<h1>Customize Profile</h1>
<noscript>
<p><Emoji value="⚠" /> Please enable JavaScript to use this page.</p>
</noscript>
<p class="status">
{#if error}
<Emoji value="🚫" /> {error}
{:else if loading}
<Emoji value="🔄" /> Loading...
{/if}
</p>
<a href="/player/{player.player?.username}">View profile</a>
<p>
<label for="pack-selector">Pack: </label>
<select bind:value={pack} id="pack-selector">
<option value="ectoplasm">Ectoplasm</option>
<option value="furfsky">Furfsky</option>
<option value="furfsky_reborn">Furfsky Reborn</option>
<option value="hypixel+">Hypixel+</option>
<option value="packshq">PacksHQ</option>
<option value="rnbw">RNBW</option>
<option value="vanilla">Vanilla</option>
<option value="worlds_and_beyond">Worlds and Beyond</option>
</select>
</p>
<p>
<label for="blur-background-toggle">Blur and darken background behind content: </label>
<input type="checkbox" id="blur-background-toggle" bind:checked={blurBackground} />
</p>
{#if isDonator}
<label for="profile-emoji-selector">Emoji next to username: </label>
<input type="text" name="emoji" id="profile-emoji-selector" bind:value={emoji} />
<Tooltip width="15em">
<span slot="tooltip">
<p>Windows: <code>win+.</code></p>
<p>Mobile: Emoji keyboard</p>
</span>
<span>ⓘ</span>
</Tooltip>
{/if}
<h2>Background</h2>
<div id="background-selector-list">
{#each backgroundNames as thisBackgroundName}
<span
class="selectable-background-option"
class:selected={thisBackgroundName === backgroundName}
style="background-image: url(/backgrounds-small/{thisBackgroundName})"
title={thisBackgroundName}
on:click={() => (backgroundName = thisBackgroundName)}
on:keypress={e => {
if (e.key === 'Enter') {
backgroundName = thisBackgroundName
}
}}
/>
{/each}
</div>
</main>
<style>
.logout {
position: absolute;
top: 0.5em;
right: 0.5em;
}
.status {
position: relative;
top: -1.6em;
height: 0;
margin: 0;
}
#profile-emoji-selector {
width: 2em;
}
p {
margin: 0.2em 0;
}
#background-selector-list {
display: flex;
flex-wrap: wrap;
}
.selectable-background-option {
display: inline-block;
height: 10em;
width: 18em;
background-position: center;
background-size: 110%;
margin: 0.5em;
border-radius: 1em;
transition: background-size 500ms;
cursor: pointer;
}
.selectable-background-option:hover {
background-size: 125%;
}
.selectable-background-option.selected {
box-shadow: 0 0 0 2pt #06ec;
}
</style>
|