1
0
Fork 0
activist/src/views/StickerView.vue
Brian DeRocher 5b48c5a8c5 Resolve issues from 'npm run build'.
One of them needed a patch in primevue 4.4.2 which was release only 2 weeks ago.
2025-10-19 00:56:36 -04:00

105 lines
2.6 KiB
Vue

<script setup lang="ts">
import {computed, onBeforeMount, ref} from 'vue';
import { useRoute } from 'vue-router';
import Button from 'primevue/button';
import Panel from 'primevue/panel';
import Sticker from "@/components/Sticker.vue";
import { type User } from "@/stores/types";
import { useSessionStore } from "@/stores/sessionStore";
import {
type Sticker as StickerType,
useStickersStore
} from "@/stores/stickersStore";
const sessionStore = useSessionStore();
const stickersStore = useStickersStore();
const route = useRoute();
const id = ref<string>(route.params.id as string);
const { getSticker } = stickersStore;
let sticker = ref<StickerType>();
onBeforeMount(async () => {
await stickersStore.fetch(id.value);
sticker.value = getSticker(id.value);
});
const first = computed(() => {
const parts = id.value.split('-')
return [parts[0], parts[1], parts[2]].join('-');
})
const second = computed(() => {
const parts = id.value.split('-')
return [parts[3], parts[4]].join('-');
})
function claimSticker() {
if (!sticker.value) {
console.error("No sticker to set owner");
return;
}
stickersStore.setOwner(sticker.value, sessionStore.user as User);
}
</script>
<template>
<div class="profilePage">
<Panel>
<div class="flex flex-row content-end">
<div>
<div class="font-mono text-sn tracking-wider col">
{{ first }}
</div>
<div class="font-mono text-sn tracking-wider col">
{{ second }}
</div>
</div>
</div>
</Panel>
<Panel header="Sticker">
<div class="flex flex-col gap-5">
<div id="StickerWrapper">
<Sticker
class="sticker"
v-bind="sticker"
v-if="sticker"
id="Sticker"
/>
</div>
<Button
v-bind:disabled="sessionStore.isAnonymous"
v-if="sticker?.owner == null"
v-on:click="claimSticker">
This is my sticker!
</Button>
<span v-if="sessionStore.isAnonymous">
Log in to claim your sticker.
</span>
<Button
as="router-link"
:to="{ name: 'stickerbuilder', params: { id: stickersStore.activeSticker }}"
v-bind:disabled="sessionStore.isAnonymous"
v-if="sticker?.owner == sessionStore.user.username">
Customize my sticker!
</Button>
</div>
</Panel>
</div>
</template>
<style scoped>
#StickerWrapper {
background-color: #DDD;
padding: 10px;
#Sticker {
width: 300px;
@media (screen(sm)) {
zoom: 250%;
}
}
}
</style>