aboutsummaryrefslogtreecommitdiff
path: root/src/lib/minecraft/Username.svelte
blob: 54c803e6f4859e3200b65a9b8bf761d1d81c5c90 (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 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 */
	export let strikethrough = 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'}
		<Head3d {player} isPartOfUsername={true} />{:else if headType == '2d'}
		<Head2d {player} isPartOfUsername={true} />
	{/if}{#if prefix}
		<span class="username-rank-prefix">
			{@html formattingCodeToHtml(player.rank.colored)}
		</span>
	{/if}<span class="username" style="color: {player.rank.color}">
		{#if strikethrough}<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;
	}

	.username-rank-prefix {
		font-family: Minecraft, 'Atkinson Hyperlegible', sans-serif;
		font-size: 0.8em;
		overflow-wrap: anywhere;
	}
</style>