mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
feature: open spawns tooltip
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
<template>
|
||||
<div class="tooltip-content" v-if="spawns.length != 0">
|
||||
<span v-for="(spawn, i) in spawns">
|
||||
<template v-if="i > 0"> | </template>
|
||||
<b>{{ spawn.spawnName }}</b> ({{ spawn.spawnLength }}m)
|
||||
</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue';
|
||||
import { useTooltipStore } from '../../store/tooltipStore';
|
||||
import { ScenerySpawn } from '../../typings/common';
|
||||
|
||||
export default defineComponent({
|
||||
data() {
|
||||
return {
|
||||
tooltipStore: useTooltipStore()
|
||||
};
|
||||
},
|
||||
|
||||
computed: {
|
||||
spawns() {
|
||||
if (this.tooltipStore.content == '') return [];
|
||||
|
||||
const parsedSpawns = JSON.parse(this.tooltipStore.content) as ScenerySpawn[];
|
||||
return parsedSpawns ?? [];
|
||||
}
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.tooltip-content {
|
||||
width: 300px;
|
||||
|
||||
padding: 0.25em 0.5em;
|
||||
border-radius: 0.25em;
|
||||
|
||||
width: 100%;
|
||||
background-color: #1b1b1b;
|
||||
box-shadow: 0 0 5px 2px #aaa;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user