mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-10 04:22:09 +10:00
* feat: small library tweaks + company page * feat: new store view * fix: ci merge error * feat: add genres to store page * feat: sorting * feat: lock game/version imports while their tasks are running * feat: feature games * feat: tag based filtering * fix: make tags alphabetical * refactor: move a bunch of i18n to common * feat: add localizations for everything * fix: title description on panel * fix: feature carousel text * fix: i18n footer strings * feat: add tag page * fix: develop merge * feat: offline games support (don't error out if provider throws) * feat: tag management * feat: show library next to game import + small fixes * feat: most of the company and tag managers * feat: company text field editing * fix: small fixes + tsgo experiemental * feat: upload icon and banner * feat: store infinite scrolling and bulk import mode * fix: lint * fix: add drop-base to prettier ignore
168 lines
4.5 KiB
Vue
168 lines
4.5 KiB
Vue
<!-- eslint-disable vue/no-v-html -->
|
|
<template>
|
|
<div>
|
|
<div v-if="article" class="px-4 sm:px-6 lg:px-8">
|
|
<!-- Banner header with blurred background -->
|
|
<div class="relative w-full h-[300px] mb-8 rounded-lg overflow-hidden">
|
|
<div class="absolute inset-0">
|
|
<img
|
|
:src="
|
|
article.imageObjectId
|
|
? useObject(article.imageObjectId)
|
|
: '/wallpapers/news-placeholder.jpg'
|
|
"
|
|
alt=""
|
|
class="w-full h-full object-cover blur-sm scale-110"
|
|
/>
|
|
<div
|
|
class="absolute inset-0 bg-gradient-to-b from-transparent to-zinc-950"
|
|
/>
|
|
</div>
|
|
|
|
<div class="relative h-full flex flex-col justify-end p-8">
|
|
<div class="flex items-center gap-x-3 mb-6">
|
|
<NuxtLink
|
|
to="/news"
|
|
class="px-2 py-1 rounded bg-zinc-900/80 backdrop-blur-sm transition text-sm/6 font-semibold text-zinc-400 hover:text-zinc-100 inline-flex gap-x-2 items-center duration-200 hover:scale-105"
|
|
>
|
|
<ArrowLeftIcon class="h-4 w-4" aria-hidden="true" />
|
|
{{ $t("news.back") }}
|
|
</NuxtLink>
|
|
|
|
<button
|
|
v-if="user?.admin"
|
|
class="px-2 py-1 rounded bg-red-900/50 backdrop-blur-sm transition text-sm/6 font-semibold text-red-400 hover:text-red-100 inline-flex gap-x-2 items-center duration-200 hover:scale-105"
|
|
@click="() => (currentlyDeleting = article)"
|
|
>
|
|
<TrashIcon class="h-4 w-4" aria-hidden="true" />
|
|
{{ $t("news.delete") }}
|
|
</button>
|
|
</div>
|
|
|
|
<div class="max-w-[calc(100%-2rem)]">
|
|
<h1 class="text-4xl font-bold text-white mb-3">
|
|
{{ article.title }}
|
|
</h1>
|
|
<div
|
|
class="flex flex-col gap-y-3 sm:flex-row sm:items-center sm:gap-x-4 text-zinc-300"
|
|
>
|
|
<div class="flex items-center gap-x-4">
|
|
<time :datetime="article.publishedAt">{{
|
|
formatDate(article.publishedAt)
|
|
}}</time>
|
|
<span class="text-blue-400">{{
|
|
article.author?.displayName ?? "System"
|
|
}}</span>
|
|
</div>
|
|
<div class="flex flex-wrap gap-2">
|
|
<span
|
|
v-for="tag in article.tags"
|
|
:key="tag.id"
|
|
class="inline-flex items-center rounded-full bg-zinc-800/80 backdrop-blur-sm px-3 py-1 text-sm font-semibold text-zinc-100"
|
|
>
|
|
{{ tag.name }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<p class="mt-4 text-lg text-zinc-300">{{ article.description }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Article content - markdown -->
|
|
<div
|
|
class="mx-auto prose prose-blue prose-invert prose-lg"
|
|
v-html="renderedContent"
|
|
/>
|
|
</div>
|
|
|
|
<ModalDeleteNews v-model="currentlyDeleting" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ArrowLeftIcon } from "@heroicons/vue/20/solid";
|
|
import { TrashIcon } from "@heroicons/vue/24/outline";
|
|
import { micromark } from "micromark";
|
|
|
|
const route = useRoute();
|
|
const currentlyDeleting = ref();
|
|
const user = useUser();
|
|
const news = useNews();
|
|
const { t } = useI18n();
|
|
if (!news.value) {
|
|
news.value = await fetchNews();
|
|
}
|
|
const article = computed(() =>
|
|
news.value?.find((e) => e.id == route.params.id),
|
|
);
|
|
if (!article.value)
|
|
throw createError({
|
|
statusCode: 404,
|
|
statusMessage: t("news.notFound"),
|
|
fatal: true,
|
|
});
|
|
|
|
// Render markdown content
|
|
const renderedContent = computed(() => {
|
|
return micromark(article.value?.content ?? "");
|
|
});
|
|
|
|
const formatDate = (date: string) => {
|
|
return new Date(date).toLocaleDateString("en-US", {
|
|
year: "numeric",
|
|
month: "long",
|
|
day: "numeric",
|
|
});
|
|
};
|
|
|
|
useHead({
|
|
title: article.value.title,
|
|
});
|
|
</script>
|
|
|
|
<style>
|
|
.prose {
|
|
max-width: none;
|
|
}
|
|
|
|
.prose a {
|
|
color: #60a5fa;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.prose a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.prose img {
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.prose code {
|
|
background: #27272a;
|
|
padding: 0.2em 0.4em;
|
|
border-radius: 0.25rem;
|
|
font-size: 0.875em;
|
|
}
|
|
|
|
.prose pre {
|
|
background: #18181b;
|
|
padding: 1em;
|
|
border-radius: 0.5rem;
|
|
}
|
|
</style>
|
|
|
|
<style scoped>
|
|
.fade-enter-active,
|
|
.fade-leave-active {
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.fade-enter-from,
|
|
.fade-leave-to {
|
|
opacity: 0;
|
|
transform: translateX(30px);
|
|
}
|
|
</style>
|