aboutsummaryrefslogtreecommitdiff
path: root/src/lib/minecraft/Username.svelte
blob: df9e093f9c357609a7b95cb79f9cc5acced68a41 (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
<script lang="ts">
	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
	export let headType: null | '3d' | '2d' = null
	export let hyperlinkToProfile = false
	export let prefix = false

	/** whether the username should be crossed out and the avatar grayscaled */
	export let disabled = false
</script>

<!-- {%- macro username(player, headType=none, hyperlinkToProfile=false, prefix=false) -%}
{%- if hyperlinkToProfile %}<a href="/player/{{ player.username }}{% if hyperlinkToProfile|isString %}/{{ hyperlinkToProfile }}{% endif %}">{% endif -%}
{%- if headType === '3d' %}{{ head3d(player, isPartOfUsername=true) -}}
{%- elif headType === '2d' %}{{ head2d(player, isPartOfUsername=true) -}}
{%- endif -%}
{%- if prefix -%}<span class="username-rank-prefix">{{ player.rank.colored|formattingCodeToHtml|safe }} </span>{%- endif -%}
		<span class="username" style="color: {{ player.rank.color }}">{{ player.username }}</span>
{%- if hyperlinkToProfile %}</a>{% endif -%}
{%- endmacro -%} -->

<ConditionalLink href="/player/{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>