Compare commits

..

3 Commits

Author SHA1 Message Date
d94a60d33b
- cleaning 2022-07-05 11:17:42 +02:00
0040dc47a5
- updated style 2022-07-05 08:59:54 +02:00
4516df29d9
- release note added 2022-07-05 08:47:32 +02:00

View File

@ -4,8 +4,19 @@
class="min-w-full p-4 text-xs text-gray-500 flex gap-x-1" class="min-w-full p-4 text-xs text-gray-500 flex gap-x-1"
> >
<p class="flex flex-row gap-x-1"> <p class="flex flex-row gap-x-1">
<strong>Wersja:</strong> <strong>Wydanie:</strong>
<a
v-if="deployInformation.github_url"
class="text-blumilk-600 hover:underline hover:text-blumilk-500"
:href="`${deployInformation.github_url}/commit/${deployInformation.slug_commit}`"
target="_blank"
rel="noopener nofollow noreferrer"
:title="`Commit: ${deployInformation.slug_commit ?? 'unset'}`"
>
{{ deployInformation.slug_description ?? 'unset' }} ({{ deployInformation.release_version }})
</a>
<span <span
v-else
:title="`Commit: ${deployInformation.slug_commit ?? 'unset'}`" :title="`Commit: ${deployInformation.slug_commit ?? 'unset'}`"
> >
{{ deployInformation.slug_description ?? 'unset' }} ({{ deployInformation.release_version ?? 'unset' }}) {{ deployInformation.slug_description ?? 'unset' }} ({{ deployInformation.release_version ?? 'unset' }})
@ -16,8 +27,8 @@
class="flex flex-row gap-x-1" class="flex flex-row gap-x-1"
:class="{ 'border-l-2 border-gray-300 pl-1': isHorizontal() }" :class="{ 'border-l-2 border-gray-300 pl-1': isHorizontal() }"
> >
<strong>Ostatnio zbudowano:</strong> <strong>Data wydania:</strong>
<span>{{ getDate() }}</span> <span>{{ DateTime.fromISO(deployInformation.release_created_at).toLocaleString(DateTime.DATETIME_SHORT) }}</span>
</p> </p>
<p <p
v-if="deployInformation.github_url" v-if="deployInformation.github_url"
@ -26,7 +37,7 @@
<strong v-if="isVertical()">Repozytorium:</strong> <strong v-if="isVertical()">Repozytorium:</strong>
<a <a
v-if="deployInformation.github_url" v-if="deployInformation.github_url"
class="text-gray-800 underline hover:no-underline hover:text-blumilk-600" class="text-blumilk-600 hover:underline hover:text-blumilk-500"
:href="deployInformation.github_url" :href="deployInformation.github_url"
target="_blank" target="_blank"
rel="noopener nofollow noreferrer" rel="noopener nofollow noreferrer"
@ -53,15 +64,4 @@ function isVertical() {
function isHorizontal() { function isHorizontal() {
return props.layout === 'horizontal' return props.layout === 'horizontal'
} }
function getDate() {
return DateTime.fromISO(props.deployInformation.release_created_at)
.toLocaleString({
year: 'numeric',
month: '2-digit',
day: '2-digit',
hour: '2-digit',
minute: '2-digit',
})
}
</script> </script>