blob: f6f9911fa532cd9ac1b164746b3aa7d61a90aae6 (
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
|
<script lang="ts">
import type { CleanPlayer, CleanBasicMember, LeaderboardBasicPlayer } from '$lib/APITypes'
import ConditionalLink from '$lib/ConditionalLink.svelte'
import Head2d from '$lib/minecraft/heads/Head2d.svelte'
import Head3d from '$lib/minecraft/heads/Head3d.svelte'
import { formattingCodeToHtml } from '../utils'
export let player: CleanPlayer | CleanBasicMember | LeaderboardBasicPlayer
export let headType: null | '3d' | '2d' = null
export let hyperlinkToProfile: boolean | string = false
export let prefix = false
/** whether the username should be crossed out and the avatar grayscaled */
export let disabled = false
</script>
<ConditionalLink
href="/player/{typeof hyperlinkToProfile === 'string'
? `${player.username}/${hyperlinkToProfile}`
: player.username}"
isWrapped={!!hyperlinkToProfile}
>
{#if headType == '3d'}
<span class="head" class:grayscale={disabled}><Head3d {player} isPartOfUsername={true} /></span
>{:else if headType == '2d'}
<span class="head" class:grayscale={disabled}><Head2d {player} isPartOfUsername={true} /></span>
{/if}{#if prefix}
<span class="username-rank-prefix">
{@html formattingCodeToHtml(player.rank.colored)}
</span>
{/if}<span class="username" style="color: {player.rank.color}">
{#if disabled}<span class="strikethrough" />{/if}{player.username}
</span>
</ConditionalLink>
<style>
.username {
/* usernames have the minecraft font */
font-family: Minecraft, 'Atkinson Hyperlegible', sans-serif;
/* reduce the size of the text because the font is too big */
font-size: 0.8em;
overflow-wrap: anywhere;
width: 100%;
/* display: inline-block; */
position: relative;
}
.strikethrough {
position: absolute;
right: 0;
left: 0;
top: 0.7em;
display: inline-block;
width: auto;
border-bottom: 2px solid #fff;
}
.grayscale {
filter: grayscale(100%);
}
.username-rank-prefix {
font-family: Minecraft, 'Atkinson Hyperlegible', sans-serif;
font-size: 0.8em;
overflow-wrap: anywhere;
}
</style>
|