aboutsummaryrefslogtreecommitdiff
path: root/src/lib/minecraft/ItemIcon.svelte
blob: b5506e211278152e6bcef00a561e148fd42edf12 (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
73
74
75
<script lang="ts">
	import type { MatcherFile } from 'skyblock-assets'
	import { itemToUrl } from './inventory'
	import { removeFormattingCode } from '$lib/utils'

	export let isslot = true
	export let item: any | null
	export let pack: MatcherFile | undefined = undefined
	export let headSize: number | undefined = undefined
	let imageUrl: string | null
	$: imageUrl = item ? itemToUrl(item, pack, headSize) : null
</script>

{#if item}
	<span class="item" class:item-slot={isslot}>
		{#if imageUrl}
			<img
				loading="lazy"
				src={imageUrl}
				alt={removeFormattingCode(item.display.name)}
				class:item-custom-head={imageUrl.startsWith('https://mc-heads.net/head/')}
			/>
		{/if}
		{#if item.count !== undefined && item.count !== 1}
			<span class="item-count">{item.count}</span>
		{/if}
	</span>
{:else}
	<!-- don't do all that if the item doesn't actually exist -->
	<span class="item" class:item-slot={isslot} />
{/if}

<style>
	.item-count {
		font-size: 0.45em;
		float: right;
		position: relative;
		top: 1.21em;
		right: 0.1em;
		font-family: Minecraft, 'Atkinson Hyperlegible', sans-serif;
	}
	.item-slot {
		border: 1px solid #888;
		border-radius: 0.1em;
		margin: 0.05em;
	}

	.item {
		display: inline-block;
		font-size: 32px;
		width: 1.2em;
		height: 1.2em;
		transition-property: font-size;
		transition-duration: 500ms;
	}
	.item img {
		position: absolute;
		margin-top: 0.075em;
		margin-left: 0.075em;
		width: 1em;
		height: 1em;
	}
	/* only pixelate items if they're not a head */
	.item img:not(.item-custom-head) {
		image-rendering: crisp-edges;
		image-rendering: pixelated;
	}

	img.item-custom-head {
		width: 0.75em;
		height: 0.75em;
		margin-top: 0.1875em;
		margin-left: 0.1875em;
	}
</style>