sebastian2357 2fd138697f
feat(webapp): badges UI (#8426)
- New badge UI, including editor.
- Adds config to enable/disable badges.

---------

Co-authored-by: Sebastian Stein <sebastian@codepassion.de>
Co-authored-by: Maximilian Harz <maxharz@gmail.com>
2025-04-25 16:55:46 +00:00

172 lines
3.9 KiB
Vue

<template>
<div :class="[badges.length === 2 && 'hc-badges-dual']" class="hc-badges">
<component
:is="selectionMode ? 'button' : 'div'"
class="hc-badge-container"
v-for="(badge, index) in badges"
:key="index"
:class="{ selectable: selectionMode && index > 0, selected: selectedIndex === index }"
@click="handleBadgeClick(index)"
>
<img :title="badge.description" :src="badge.icon | proxyApiUrl" class="hc-badge" />
</component>
</div>
</template>
<script>
export default {
name: 'Badges',
props: {
badges: {
type: Array,
default: () => [],
},
selectionMode: {
type: Boolean,
default: false,
},
},
data() {
return {
selectedIndex: null,
}
},
methods: {
handleBadgeClick(index) {
if (!this.selectionMode || index === 0) {
return
}
if (this.selectedIndex === index) {
this.selectedIndex = null
this.$emit('badge-selected', null)
return
}
this.selectedIndex = index
this.$emit('badge-selected', index)
},
resetSelection() {
this.selectedIndex = null
},
},
}
</script>
<style lang="scss">
.hc-badges {
position: relative;
transform: scale(var(--badges-scale, 1));
$badge-size-x: 30px;
$badge-size-y: 26px;
$main-badge-size-x: 60px;
$main-badge-size-y: 52px;
$gap-x: -6px;
$gap-y: 1px;
$slot-x: $badge-size-x + $gap-x;
$slot-y: $badge-size-y + $gap-y;
$offset-y: calc($badge-size-y / 2) - 2 * $gap-x;
width: $main-badge-size-x + 4 * $badge-size-x + 4 * $gap-x;
height: $offset-y + 3 * $badge-size-y + 4 * $gap-y;
margin: auto;
.hc-badge-container {
position: absolute;
width: $badge-size-x;
height: $badge-size-y;
clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
&.selectable {
cursor: pointer;
transition: transform 0.1s ease-in;
&:hover {
transform: scale(1.1);
}
}
&.selected {
filter: drop-shadow(0 0 0 $color-primary);
img {
opacity: 0.6;
}
}
}
.hc-badge {
display: block;
width: 100%;
height: 100%;
}
.hc-badge-container:nth-child(1) {
width: $main-badge-size-x;
height: $main-badge-size-y;
top: $offset-y + calc($gap-y / 2) - 1px;
left: 0;
}
.hc-badge-container:nth-child(1)::before {
content: '';
position: absolute;
top: -20px;
left: 0;
width: 100%;
height: 20px;
background-image: url('/img/badges/stars.svg');
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
.hc-badge-container:nth-child(2) {
top: $offset-y + calc(-1 * $gap-y / 2) - 1px;
left: $main-badge-size-x + $gap-x;
}
.hc-badge-container:nth-child(3) {
top: $offset-y + $slot-y + calc($gap-y / 2) - 1px;
left: $main-badge-size-x + $gap-x;
}
.hc-badge-container:nth-child(4) {
top: $offset-y + calc(-1 * $badge-size-y / 2) - (2 * $gap-y) - 0.5px;
left: $main-badge-size-x + $gap-x + $slot-x;
}
.hc-badge-container:nth-child(5) {
top: $offset-y + calc($badge-size-y / 2) - 0.5px;
left: $main-badge-size-x + $gap-x + $slot-x;
}
.hc-badge-container:nth-child(6) {
top: $offset-y + (1.5 * $badge-size-y) + (2 * $gap-y) - 0.5px;
left: $main-badge-size-x + $gap-x + $slot-x;
}
.hc-badge-container:nth-child(7) {
top: $offset-y + calc(-1 * $gap-y / 2) - 1px;
left: $main-badge-size-x + $gap-x + (2 * $slot-x);
}
.hc-badge-container:nth-child(8) {
top: $offset-y + $slot-y + calc($gap-y / 2) - 1px;
left: $main-badge-size-x + $gap-x + (2 * $slot-x);
}
.hc-badge-container:nth-child(9) {
top: $offset-y + $slot-y - calc($badge-size-y / 2) - $gap-y - 0.5px;
left: $main-badge-size-x + $gap-x + (3 * $slot-x);
}
.hc-badge-container:nth-child(10) {
top: $offset-y + ($badge-size-y * 1.5) + (2 * $gap-y) - 0.5px;
left: $main-badge-size-x + $gap-x + (3 * $slot-x);
}
}
</style>