component formatting and types
This commit is contained in:
parent
c2a7d15eeb
commit
ce745c06e5
60 changed files with 464 additions and 301 deletions
|
@ -4,41 +4,30 @@
|
|||
: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-56 relative">
|
||||
<NuxtPicture
|
||||
loading="lazy"
|
||||
class="w-full h-full object-cover object-center"
|
||||
:src="data?.image?.url || logo?.url ? baseUrl + (data?.image?.url ?? logo?.url) : '/favicon.png'"
|
||||
:imgAttrs="{ class: 'w-full h-full object-cover object-center' }"
|
||||
/>
|
||||
<h1
|
||||
v-if="itemIndex"
|
||||
class="text-center text-black text-4xl my-auto absolute bottom-2 left-2"
|
||||
style="text-shadow: 2px 2px 4px white"
|
||||
>
|
||||
{{ itemIndex }}.
|
||||
</h1>
|
||||
</div>
|
||||
|
||||
<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 v-if="itemDate" class="w-full text-[#5c5c5c]">
|
||||
{{ itemDate }}
|
||||
</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]">
|
||||
<p class="w-full text-[#5c5c5c] line-clamp-2 overflow-hidden">
|
||||
{{ data?.description }}
|
||||
</p>
|
||||
</div>
|
||||
|
@ -48,14 +37,59 @@
|
|||
<script setup lang="ts">
|
||||
import type { PropType } from "vue";
|
||||
import type BaseCollection from "~/types/collection/baseCollection";
|
||||
import type Lookup from "../../types/collection/lookup";
|
||||
|
||||
const runtimeConfig = useRuntimeConfig();
|
||||
const baseUrl = runtimeConfig.public.strapi.url;
|
||||
|
||||
defineProps({
|
||||
const { logo } = await provideGlobal();
|
||||
|
||||
const props = defineProps({
|
||||
data: Object as PropType<BaseCollection>,
|
||||
lookup: Object as PropType<Lookup>,
|
||||
numberOverwrite: { type: Number, default: undefined },
|
||||
allowNavigation: { type: Boolean, default: false },
|
||||
urlOverwrite: { type: String, default: undefined },
|
||||
});
|
||||
|
||||
const itemIndex = computed(() => {
|
||||
if (props.lookup?.items_with_number != "none") {
|
||||
return props.numberOverwrite;
|
||||
} else if (props.lookup?.list_with_date != "none") {
|
||||
return new Date(props.data?.date ?? "").toLocaleString("de-DE", {
|
||||
day: "2-digit",
|
||||
});
|
||||
} else {
|
||||
return undefined;
|
||||
}
|
||||
});
|
||||
|
||||
const itemDate = computed(() => {
|
||||
let config = {
|
||||
year:
|
||||
props.lookup?.list_with_date == "none" || props.lookup?.items_with_number != "none"
|
||||
? ("numeric" as const)
|
||||
: undefined,
|
||||
month:
|
||||
props.lookup?.list_with_date != "by-month" || props.lookup?.items_with_number != "none"
|
||||
? ("long" as const)
|
||||
: undefined,
|
||||
day:
|
||||
props.lookup?.list_with_date == "none" || props.lookup?.items_with_number != "none"
|
||||
? ("2-digit" as const)
|
||||
: undefined,
|
||||
minute:
|
||||
props.data?.date.includes("T") && props.lookup?.items_with_number != "none" ? ("2-digit" as const) : undefined,
|
||||
hour:
|
||||
props.data?.date.includes("T") && props.lookup?.items_with_number != "none" ? ("2-digit" as const) : undefined,
|
||||
};
|
||||
if (Object.values(config).filter((c) => c).length != 0) {
|
||||
//(props.lookup?.list_with_date != "none" || props.lookup?.show_date)
|
||||
return (
|
||||
new Date(props.data?.date ?? "").toLocaleString("de-DE", config) + (props.data?.date.includes("T") ? "Uhr" : "")
|
||||
);
|
||||
} else {
|
||||
return undefined;
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
|
|
@ -1,43 +1,19 @@
|
|||
<template>
|
||||
<NuxtLink
|
||||
class="w-full h-fit py-2 bg-white shadow-md border border-gray-200 rounded-md justify-start items-start flex"
|
||||
class="w-full h-fit p-2 bg-white shadow-md border border-gray-200 rounded-md justify-start items-start flex"
|
||||
:class="allowNavigation ? '' : 'pointer-events-none'"
|
||||
:to="`${urlOverwrite ?? $route.path}/${data?.slug}`"
|
||||
>
|
||||
<h1 v-if="numberOverwrite != undefined" class="w-24 text-center text-black text-4xl my-auto">
|
||||
{{ numberOverwrite }}.
|
||||
<h1 v-if="itemIndex" class="min-w-20 w-20 sm:min-w-24 sm:w-24 text-center text-black text-4xl my-auto">
|
||||
{{ itemIndex }}.
|
||||
</h1>
|
||||
<h1 v-else class="w-24 text-center text-black text-4xl my-auto">
|
||||
{{
|
||||
new Date(data?.date ?? "").toLocaleString("de-DE", {
|
||||
day: "2-digit",
|
||||
})
|
||||
}}.
|
||||
</h1>
|
||||
<div class="grow shrink basis-0 flex-col justify-center items-center flex">
|
||||
|
||||
<div class="grow shrink basis-0 flex-col justify-center items-center flex overflow-hidden">
|
||||
<h1 class="w-full">{{ 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 v-if="itemDate" class="w-full text-[#5c5c5c]">
|
||||
{{ itemDate }}
|
||||
</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]">
|
||||
<p class="w-full text-[#5c5c5c] line-clamp-2 overflow-hidden">
|
||||
{{ data?.description }}
|
||||
</p>
|
||||
</div>
|
||||
|
@ -47,11 +23,54 @@
|
|||
<script setup lang="ts">
|
||||
import type { PropType } from "vue";
|
||||
import type BaseCollection from "../../types/collection/baseCollection";
|
||||
import type Lookup from "../../types/collection/lookup";
|
||||
|
||||
defineProps({
|
||||
const props = defineProps({
|
||||
data: Object as PropType<BaseCollection>,
|
||||
lookup: Object as PropType<Lookup>,
|
||||
numberOverwrite: { type: Number, default: undefined },
|
||||
allowNavigation: { type: Boolean, default: false },
|
||||
urlOverwrite: { type: String, default: undefined },
|
||||
});
|
||||
|
||||
const itemIndex = computed(() => {
|
||||
if (props.lookup?.items_with_number != "none") {
|
||||
return props.numberOverwrite;
|
||||
} else if (props.lookup?.list_with_date != "none") {
|
||||
return new Date(props.data?.date ?? "").toLocaleString("de-DE", {
|
||||
day: "2-digit",
|
||||
});
|
||||
} else {
|
||||
return undefined;
|
||||
}
|
||||
});
|
||||
|
||||
const itemDate = computed(() => {
|
||||
let config = {
|
||||
year:
|
||||
props.lookup?.list_with_date == "none" || props.lookup?.items_with_number != "none"
|
||||
? ("numeric" as const)
|
||||
: undefined,
|
||||
month:
|
||||
props.lookup?.list_with_date != "by-month" || props.lookup?.items_with_number != "none"
|
||||
? ("long" as const)
|
||||
: undefined,
|
||||
day:
|
||||
props.lookup?.list_with_date == "none" || props.lookup?.items_with_number != "none"
|
||||
? ("2-digit" as const)
|
||||
: undefined,
|
||||
minute:
|
||||
props.data?.date.includes("T") && props.lookup?.items_with_number != "none" ? ("2-digit" as const) : undefined,
|
||||
hour:
|
||||
props.data?.date.includes("T") && props.lookup?.items_with_number != "none" ? ("2-digit" as const) : undefined,
|
||||
};
|
||||
if (Object.values(config).filter((c) => c).length != 0) {
|
||||
//(props.lookup?.list_with_date != "none" || props.lookup?.show_date)
|
||||
return (
|
||||
new Date(props.data?.date ?? "").toLocaleString("de-DE", config) + (props.data?.date.includes("T") ? "Uhr" : "")
|
||||
);
|
||||
} else {
|
||||
return undefined;
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue