blob: 6a5c9cc91ed1ddf82771abc6e6b671ac9c8027ef (
plain)
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
|
<script lang="ts">
import type { CleanMemberProfile } from '$lib/APITypes'
import Emoji from '$lib/Emoji.svelte'
import { cleanId, millisecondsToTime, toTitleCase } from '$lib/utils'
export let data: CleanMemberProfile
</script>
<div class="info-text primary-info-text">
<p>Claimed Melody's hair: <Emoji value={data.member.harp.claimedMelodysHair ? '✅' : '❌'} /></p>
{#if data.member.harp.selected}
<p>
Selected song:
<b class="info-text-value">{toTitleCase(cleanId(data.member.harp.selected.id))}</b>
<span class="harp-selection-timeago">
{millisecondsToTime(Date.now() - data.member.harp.selected.timestamp)} ago
</span>
</p>
{/if}
</div>
<div class="harp-songs-list">
{#each data.member.harp.songs as song}
<div class="harp-song" class:selected-harp-song={song.id === data.member.harp.selected?.id}>
<h3>{toTitleCase(cleanId(song.id))}</h3>
<div class="info-text">
{#if song.completions}
<p>Completions: <b class="info-text-value">{song.completions}</b></p>
{/if}
{#if song.perfectCompletions}
<p>Perfect completions: <b class="info-text-value">{song.perfectCompletions}</b></p>
{:else}
<p>Progress: <b class="info-text-value">{Math.floor(song.progress * 100)}%</b></p>
{/if}
</div>
</div>
{/each}
</div>
<style>
p {
margin: 0;
}
.primary-info-text {
margin: 0.5em 0;
}
.info-text {
color: var(--theme-darker-text);
}
.info-text .info-text-value {
color: var(--theme-main-text);
}
.harp-songs-list {
display: flex;
flex-wrap: wrap;
max-width: 40rem;
column-gap: 0.5rem;
row-gap: 0.5rem;
}
.harp-song {
border: 1px solid rgba(255, 255, 255, 0.1);
background: rgba(0, 0, 0, 0.1);
padding: 0.75em;
border-radius: 1em;
width: 12em;
}
.selected-harp-song {
border: 1px solid rgba(255, 255, 255, 0.2);
}
</style>
|