| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- <template>
- <h1 id="news-anchor" class="title mt-12 mb-12">
- Toutes les news
- </h1>
- <div v-if="pending">
- <v-row class="justify-center progress">
- <v-progress-circular
- indeterminate
- color="grey"
- />
- </v-row>
- </div>
- <div v-else>
- <v-row
- v-for="(newsItem, index) in newsCollection!.items"
- :key="index"
- class="news d-flex align-center mr-10"
- >
- <v-card class="alt-theme">
- <v-card-item>
- <v-container fluid>
- <v-row align="center">
- <v-col cols="3">
- <v-img
- v-if="newsItem.attachment"
- :src="getImageUrl(newsItem.attachment)"
- alt="poster"
- height="200"
- width="400"
- />
- </v-col>
- <v-col cols="9">
- <div class="details">
- <NuxtLink
- :to="`/actualites/${newsItem.id}`"
- class="text-decoration-none"
- >
- <v-card-title>
- {{ newsItem.title }}
- <v-icon
- v-if="newsItem.featured"
- size="16"
- icon="star fas fa-star"
- />
- </v-card-title>
- </NuxtLink>
- <v-card-text>
- <div class="flex-container">
- <div class="text-container">
- <table>
- <tr>
- <td>
- {{ newsItem.leadText }}
- </td>
- </tr>
- </table>
- </div>
- <div class="button-container">
- <v-card-actions class="justify-end">
- <v-btn
- :to="`/actualites/${newsItem.id}`"
- prepend-icon="fas fa-info"
- class="btn mr-2 mb-1"
- >
- En savoir plus
- </v-btn>
- </v-card-actions>
- </div>
- </div>
- </v-card-text>
- </div>
- </v-col>
- </v-row>
- </v-container>
- </v-card-item>
- </v-card>
- </v-row>
- <v-row>
- <v-col cols="12">
- <LayoutPagination
- v-if="newsCollection && newsCollection.pagination"
- :model-value="page"
- :pagination="newsCollection.pagination"
- @update:model-value="onPageUpdated"
- class="mt-4"
- />
- </v-col>
- </v-row>
- </div>
- </template>
- <script setup lang="ts">
- import { ComputedRef } from "vue";
- import { useEntityFetch } from "~/composables/data/useEntityFetch";
- import News from "~/models/Maestro/News";
- const i18n = useI18n();
- const config = useRuntimeConfig();
- const { fetchCollection } = useEntityFetch()
- const getImageUrl = (attachment: string) =>
- `${config.public.apiBaseUrl}/uploads/news/${attachment}`;
- const page: Ref<number> = ref(1);
- const query: ComputedRef<Record<string, string | number>> = computed(() => {
- return {
- page: page.value,
- type: "ENTREPRISE",
- "startPublication[before]": "now",
- "endPublication[after]": "now"
- };
- });
- const { data: newsCollection, pending, refresh } = fetchCollection(News, null, query)
- const onPageUpdated = async (newVal: number): Promise<void> => {
- page.value = newVal
- pending.value = true
- await refresh()
- setTimeout(
- async () => await navigateTo({ path: '', hash: '#news-anchor' }),
- 200
- )
- }
- </script>
- <style scoped lang="scss">
- .v-container {
- padding: 0 !important;
- }
- h1 {
- color: #d1cdc7; /* TODO: pqoi cette couleur ici? */
- margin-left: 3rem;
- margin-top: 2rem;
- font-family: Barlow, serif;
- font-size: 4rem;
- font-style: normal;
- font-weight: 600;
- line-height: 42px;
- }
- .news {
- .v-card {
- border-radius: 10px;
- min-width: 100%;
- margin-bottom: 1rem;
- margin-left: 2rem;
- margin-right: 2rem;
- padding-top: 0.2rem;
- padding-bottom: 0.2rem;
- height: 60%;
- .v-card-text {
- letter-spacing: 0 !important;
- padding: 0 !important;
- }
- .v-card-item {
- padding: 0 !important;
- }
- }
- .v-img {
- width: 80%;
- margin-left: auto;
- margin-right: auto;
- }
- .details {
- border: 1px solid white !important;
- padding: 9px;
- border-radius: 20px;
- width: 99%;
- .v-card-title {
- color: #fff;
- font-family: Barlow, serif;
- font-size: 36px;
- font-style: normal;
- font-weight: 600;
- line-height: 39px;
- }
- .star {
- color: yellow !important;
- }
- .v-card-text {
- td {
- color: #fff;
- font-family: Barlow, serif;
- font-size: 22px;
- font-style: normal;
- font-weight: 500;
- line-height: 26px;
- margin-left: 1rem;
- }
- }
- .v-btn {
- background: var(--secondary-color);
- color: var(--on-secondary-color);
- display: flex;
- left: 0;
- padding: 25px 28px;
- align-items: center;
- gap: 9px;
- font-family: Barlow, serif;
- font-size: 0.9rem;
- border-radius: 5px;
- font-style: normal;
- font-weight: 700;
- line-height: 15px;
- letter-spacing: 1.3px;
- text-transform: uppercase;
- margin-bottom: -1rem;
- }
- }
- }
- </style>
|