build: switch from yarn to npm to manage js dependencies and move js contents to root
yarn v1 is being deprecated and starts to have some issues Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
158
src/views/CategoriesView.vue
Normal file
158
src/views/CategoriesView.vue
Normal file
@@ -0,0 +1,158 @@
|
||||
<template>
|
||||
<div class="container mx-auto py-4 md:py-12 px-2 md:px-60">
|
||||
<main>
|
||||
<h1>{{ t("Category list") }}</h1>
|
||||
<div
|
||||
class="flex flex-wrap items-center justify-center gap-3 md:gap-4"
|
||||
v-if="promotedCategories.length > 0"
|
||||
>
|
||||
<CategoryCard
|
||||
v-for="category in promotedCategories"
|
||||
:key="category.key"
|
||||
:category="category"
|
||||
:with-details="true"
|
||||
/>
|
||||
</div>
|
||||
<div v-else>
|
||||
<EmptyContent icon="image" :inline="true">
|
||||
{{
|
||||
t(
|
||||
"No categories with public upcoming events on this instance were found."
|
||||
)
|
||||
}}
|
||||
</EmptyContent>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="mx-auto w-full max-w-lg rounded-2xl dark:bg-gray-800 p-2 mt-10"
|
||||
>
|
||||
<o-collapse
|
||||
v-model:open="isLicencePanelOpen"
|
||||
:aria-id="'contentIdForA11y5'"
|
||||
>
|
||||
<template #trigger>
|
||||
<o-button
|
||||
aria-controls="contentIdForA11y1"
|
||||
:icon-right="isLicencePanelOpen ? 'chevron-up' : 'chevron-down'"
|
||||
>
|
||||
{{ t("Category illustrations credits") }}
|
||||
</o-button>
|
||||
</template>
|
||||
<div class="flex flex-col dark:text-zinc-300 gap-2 py-4 px-1">
|
||||
<p
|
||||
v-for="(categoryLicence, key) in categoriesPicturesLicences"
|
||||
:key="key"
|
||||
class="flex flex-row gap-1 items-center"
|
||||
>
|
||||
<a
|
||||
:href="categoryLicence.source.url"
|
||||
target="_blank"
|
||||
class="shrink-0"
|
||||
>
|
||||
<picture class="brightness-50">
|
||||
<source
|
||||
:srcset="`/img/categories/${key.toLowerCase()}.webp 2x, /img/categories/${key.toLowerCase()}.webp`"
|
||||
media="(min-width: 1000px)"
|
||||
/>
|
||||
<source
|
||||
:srcset="`/img/categories/${key.toLowerCase()}.webp 2x, /img/categories/${key.toLowerCase()}-small.webp`"
|
||||
media="(min-width: 300px)"
|
||||
/>
|
||||
<img
|
||||
loading="lazy"
|
||||
class="w-full h-12 w-12 object-cover"
|
||||
:src="`/img/categories/${key.toLowerCase()}.webp`"
|
||||
:srcset="`/img/categories/${key.toLowerCase()}-small.webp `"
|
||||
alt=""
|
||||
/>
|
||||
</picture>
|
||||
</a>
|
||||
<span
|
||||
class="flex-0"
|
||||
v-html="
|
||||
t(
|
||||
'Illustration picture for “{category}” by {author} on {source} ({license})',
|
||||
{
|
||||
category: eventCategoryLabel(key),
|
||||
author: imageAuthor(categoryLicence.author),
|
||||
source: imageSource(categoryLicence.source),
|
||||
license: imageLicense(categoryLicence),
|
||||
}
|
||||
)
|
||||
"
|
||||
/>
|
||||
</p>
|
||||
</div>
|
||||
</o-collapse>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
import CategoryCard from "@/components/Categories/CategoryCard.vue";
|
||||
|
||||
import { computed, ref } from "vue";
|
||||
import { CATEGORY_STATISTICS } from "@/graphql/statistics";
|
||||
import { useQuery } from "@vue/apollo-composable";
|
||||
import { CategoryStatsModel } from "@/types/stats.model";
|
||||
import {
|
||||
categoriesPicturesLicences,
|
||||
CategoryPictureLicencing,
|
||||
CategoryPictureLicencingElement,
|
||||
} from "@/components/Categories/constants";
|
||||
import { useI18n } from "vue-i18n";
|
||||
import { useEventCategories } from "@/composition/apollo/config";
|
||||
import EmptyContent from "@/components/Utils/EmptyContent.vue";
|
||||
import { useHead } from "@vueuse/head";
|
||||
|
||||
const { t } = useI18n({ useScope: "global" });
|
||||
|
||||
const { eventCategories } = useEventCategories();
|
||||
|
||||
const eventCategoryLabel = (categoryId: string): string | undefined => {
|
||||
return eventCategories.value?.find(({ id }) => categoryId == id)?.label;
|
||||
};
|
||||
|
||||
const { result: categoryStatsResult } = useQuery<{
|
||||
categoryStatistics: CategoryStatsModel[];
|
||||
}>(CATEGORY_STATISTICS);
|
||||
const categoryStats = computed(
|
||||
() => categoryStatsResult.value?.categoryStatistics ?? []
|
||||
);
|
||||
|
||||
const promotedCategories = computed((): CategoryStatsModel[] => {
|
||||
return categoryStats.value
|
||||
.map(({ key, number }) => ({
|
||||
key,
|
||||
number,
|
||||
label: eventCategoryLabel(key) as string,
|
||||
}))
|
||||
.filter(
|
||||
({ key, number, label }) =>
|
||||
key !== "MEETING" && number >= 1 && label !== undefined
|
||||
)
|
||||
.sort((a, b) => a.label.localeCompare(b.label));
|
||||
});
|
||||
|
||||
const imageAuthor = (author: CategoryPictureLicencingElement) =>
|
||||
`<a target="_blank" class="underline font-medium" href="${author?.url}">${author?.name}</a>`;
|
||||
const imageSource = (source: CategoryPictureLicencingElement) =>
|
||||
`<a target="_blank" class="underline font-medium" href="${source?.url}">${source?.name}</a>`;
|
||||
|
||||
const imageLicense = (categoryLicence: CategoryPictureLicencing): string => {
|
||||
let license = categoryLicence?.license;
|
||||
if (categoryLicence?.source?.name === "Unsplash") {
|
||||
license = {
|
||||
name: "Unsplash License",
|
||||
url: "https://unsplash.com/license",
|
||||
};
|
||||
}
|
||||
return `<a target="_blank" class="underline font-medium" href="${license?.url}">${license?.name}</a>`;
|
||||
};
|
||||
|
||||
const isLicencePanelOpen = ref(false);
|
||||
|
||||
useHead({
|
||||
title: computed(() => t("Category list")),
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user