mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
87 lines
1.7 KiB
Vue
87 lines
1.7 KiB
Vue
<template>
|
|
<div class="popup-content">
|
|
<div v-if="imageState == 'loading'" class="loading-info">
|
|
{{ $t('vehicle-preview.loading') }}
|
|
</div>
|
|
|
|
<div v-if="imageState == 'error'">{{ $t('vehicle-preview.error') }}</div>
|
|
|
|
<img
|
|
v-if="popupStore.currentPopupContent"
|
|
@load="onImageLoad"
|
|
@error="onImageError"
|
|
@click="popupStore.onPopUpHide"
|
|
width="300"
|
|
height="176"
|
|
class="rounded-md w-full h-auto"
|
|
:src="`https://spythere.github.io/api/td2/images/${popupStore.currentPopupContent}--300px.jpg`"
|
|
/>
|
|
|
|
<div class="vehicle-name" v-if="imageState != 'error'">
|
|
{{ popupStore.currentPopupContent.replace(/_/g, ' ') }}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import { usePopupStore } from '../../store/popupStore';
|
|
|
|
export default defineComponent({
|
|
data() {
|
|
return {
|
|
popupStore: usePopupStore(),
|
|
imageState: 'loading'
|
|
};
|
|
},
|
|
|
|
mounted() {
|
|
this.imageState = 'loading';
|
|
},
|
|
|
|
methods: {
|
|
onImageLoad() {
|
|
this.imageState = 'loaded';
|
|
},
|
|
|
|
onImageError(e: Event) {
|
|
this.imageState = 'error';
|
|
|
|
(e.target as HTMLElement).style.display = 'none';
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.popup-content {
|
|
// min-w-[300px] min-h-[200px] p-2 bg-slate-800 rounded-md
|
|
|
|
width: 300px;
|
|
min-height: 200px;
|
|
background-color: #333;
|
|
box-shadow: 0 0 10px 2px #aaa;
|
|
|
|
padding: 0.5em;
|
|
border-radius: 0.5em;
|
|
}
|
|
|
|
.loading-info {
|
|
position: absolute;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.vehicle-name {
|
|
text-align: center;
|
|
margin-top: 0.5em;
|
|
color: #ccc;
|
|
text-wrap: wrap;
|
|
}
|
|
</style>
|