61 lines
2 KiB
Vue
61 lines
2 KiB
Vue
<template>
|
|
<NuxtLink
|
|
class="w-full sm:w-72 h-96 rounded-lg shadow-md border border-gray-200 flex-col justify-start items-start inline-flex overflow-hidden"
|
|
:class="allowNavigation ? '' : 'pointer-events-none'"
|
|
:to="`${urlOverwrite ?? $route.path}/${data?.slug}`"
|
|
>
|
|
<NuxtPicture
|
|
loading="lazy"
|
|
class="w-full h-56 object-cover object-center"
|
|
:src="baseUrl + data?.image?.url"
|
|
:imgAttrs="{ class: 'w-full h-56 object-cover object-center' }"
|
|
/>
|
|
<div class="w-full h-44 relative bg-white px-2 py-5 flex flex-col justify-start items-start gap-2 overflow-y-auto">
|
|
<h1>
|
|
<span v-if="numberOverwrite != undefined" class="w-24 text-center text-black text-4xl my-auto">
|
|
{{ numberOverwrite }}.
|
|
</span>
|
|
{{ data?.title }}
|
|
</h1>
|
|
<p v-if="numberOverwrite != undefined && data?.date && data.date.includes('T')" class="w-full text-[#5c5c5c]">
|
|
{{
|
|
new Date(data?.date ?? "").toLocaleString("de-DE", {
|
|
day: "2-digit",
|
|
month: "long",
|
|
year: "numeric",
|
|
minute: "2-digit",
|
|
hour: "2-digit",
|
|
})
|
|
}}
|
|
Uhr
|
|
</p>
|
|
<p v-else-if="data?.date && data.date.includes('T')" class="w-full text-[#5c5c5c]">
|
|
{{
|
|
new Date(data?.date ?? "").toLocaleString("de-DE", {
|
|
minute: "2-digit",
|
|
hour: "2-digit",
|
|
})
|
|
}}
|
|
Uhr
|
|
</p>
|
|
<p class="w-full text-[#5c5c5c]">
|
|
{{ data?.description }}
|
|
</p>
|
|
</div>
|
|
</NuxtLink>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { PropType } from "vue";
|
|
import type BaseCollection from "~/types/collection/baseCollection";
|
|
|
|
const runtimeConfig = useRuntimeConfig();
|
|
const baseUrl = runtimeConfig.public.strapi.url;
|
|
|
|
defineProps({
|
|
data: Object as PropType<BaseCollection>,
|
|
numberOverwrite: { type: Number, default: undefined },
|
|
allowNavigation: { type: Boolean, default: false },
|
|
urlOverwrite: { type: String, default: undefined },
|
|
});
|
|
</script>
|