blob: c944f1b75bbc4c841bcd88b9876d1745fbffd3cd (
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
76
77
78
79
80
81
82
83
84
85
86
|
<script lang="ts">
import MinecraftTooltip from './MinecraftTooltip.svelte'
import { formattingCodeToHtml, removeFormattingCode } from '$lib/utils'
import { itemToUrl } from './inventory'
export let item: any | null
export let isslot = true
export let pack = ''
let itemLoreHtml: string | null
let itemNameHtml: string | null
let imageUrl: string | null
$: itemLoreHtml = item ? item.display.lore.map(l => formattingCodeToHtml(l)).join('<br>') : null
$: itemNameHtml = item ? formattingCodeToHtml(item.display.name) : null
$: imageUrl = item ? itemToUrl(item, pack) : null
</script>
<MinecraftTooltip>
<span slot="name">{@html itemNameHtml}</span>
<span slot="lore">{@html itemLoreHtml}</span>
<span class="item" class:item-slot={isslot}>
<!-- we have an if here because the item might be air -->
{#if item}
{#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 !== 1}
<span class="item-count">{item.count}</span>
{/if}
{/if}
</span>
</MinecraftTooltip>
<style>
.item {
display: inline-block;
font-size: 32px;
width: 1.2em;
height: 1.2em;
transition-property: font-size;
transition-duration: 500ms;
}
.item-slot {
border: 1px solid #888;
border-radius: 0.1em;
}
.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;
}
.item-slot {
margin: 0.05em;
}
.item-count {
font-size: 0.45em;
float: right;
position: relative;
top: 1.21em;
right: 0.1em;
font-family: Minecraft;
}
</style>
|