2022-07-11 01:31:21 +02:00
|
|
|
<template>
|
2022-07-13 00:37:49 +02:00
|
|
|
<div v-if="film">
|
2022-07-22 00:48:31 +02:00
|
|
|
<div class="card movie-card">
|
2022-07-13 00:37:49 +02:00
|
|
|
<header class="card-content is-flex">
|
|
|
|
<div>
|
|
|
|
<h3 class="title is-4 is-inline mr-4">{{ film.title }}</h3>
|
|
|
|
<div class="subtitle is-5 is-inline">{{ film.director }}</div>
|
|
|
|
<div class="field is-grouped is-grouped-multiline mt-4">
|
|
|
|
<div
|
|
|
|
v-for="(tag, index) of headerTags"
|
|
|
|
:key="index"
|
|
|
|
class="control"
|
|
|
|
>
|
|
|
|
<div class="tags has-addons">
|
|
|
|
<span v-if="tag.label" class="tag">{{ tag.label }}</span>
|
|
|
|
<span class="tag is-primary">{{ tag.value }}</span>
|
|
|
|
</div>
|
2022-07-11 01:31:21 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-07-13 00:37:49 +02:00
|
|
|
<ButtonIcon
|
|
|
|
v-if="film.trailerLink"
|
|
|
|
label="Bande-annonce"
|
|
|
|
icon="ri-play-circle-fill"
|
|
|
|
class="is-primary is-outlined ml-auto"
|
|
|
|
@click="showTrailerModal = true"
|
|
|
|
/>
|
|
|
|
</header>
|
|
|
|
<div class="is-flex">
|
|
|
|
<div
|
|
|
|
class="poster-container"
|
|
|
|
:style="{ '--poster-url': `url(${film.posterLink})` }"
|
|
|
|
>
|
2022-07-13 00:51:00 +02:00
|
|
|
<figure class="image m-auto">
|
2022-07-13 00:37:49 +02:00
|
|
|
<img :src="film.posterLink" alt="Affiche du film" />
|
|
|
|
</figure>
|
|
|
|
</div>
|
|
|
|
<div class="card-content">
|
2023-01-29 01:13:14 +01:00
|
|
|
<div class="content movie-content">
|
2022-07-13 00:51:00 +02:00
|
|
|
<p v-if="film.actors && film.actors.length" class="block">
|
2022-07-13 00:37:49 +02:00
|
|
|
<span class="has-text-weight-bold">Acteurs :</span>
|
|
|
|
{{ film.actors.join(", ") }}
|
|
|
|
</p>
|
2022-07-13 00:51:00 +02:00
|
|
|
<p v-if="film.synopsis" class="block">
|
2022-07-13 00:37:49 +02:00
|
|
|
<span class="has-text-weight-bold">Synopsis :</span>
|
|
|
|
{{ film.synopsis }}
|
|
|
|
</p>
|
2023-01-29 01:13:14 +01:00
|
|
|
<div
|
|
|
|
v-if="film.projectionComment"
|
|
|
|
class="block has-text-centered has-text-weight-bold is-italic my-auto"
|
|
|
|
>
|
|
|
|
<p>{{ film.projectionComment }}</p>
|
|
|
|
</div>
|
2022-07-13 00:37:49 +02:00
|
|
|
</div>
|
2022-07-11 01:31:21 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-07-13 00:37:49 +02:00
|
|
|
<footer class="card-content is-flex">
|
|
|
|
<div class="buttons">
|
|
|
|
<template v-if="isPast">
|
|
|
|
<ButtonIcon
|
|
|
|
label="Lire notre analyse"
|
|
|
|
icon="ri-double-quotes-l"
|
|
|
|
class="is-outlined is-primary"
|
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
2022-07-13 02:18:06 +02:00
|
|
|
<a
|
2022-07-13 00:51:00 +02:00
|
|
|
v-if="film.facebookEventLink"
|
2022-07-13 02:18:06 +02:00
|
|
|
:href="film.facebookEventLink"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
target="_blank"
|
2022-12-25 23:56:01 +01:00
|
|
|
tabindex="-1"
|
2022-07-13 02:18:06 +02:00
|
|
|
>
|
|
|
|
<ButtonIcon
|
|
|
|
label="Événement Facebook"
|
|
|
|
icon="ri-facebook-box-fill"
|
|
|
|
class="is-outlined is-primary"
|
|
|
|
/>
|
|
|
|
</a>
|
2022-07-13 00:37:49 +02:00
|
|
|
<ButtonIcon
|
2022-07-13 00:51:00 +02:00
|
|
|
v-if="film.icsDownload"
|
2022-07-13 00:37:49 +02:00
|
|
|
label="Ajouter au calendrier"
|
|
|
|
icon="ri-calendar-event-fill"
|
|
|
|
class="is-outlined is-primary"
|
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
</div>
|
2022-12-25 23:56:01 +01:00
|
|
|
<time class="ml-auto title is-4" :datetime="film.projectionDate">
|
2022-07-13 01:02:23 +02:00
|
|
|
{{ prettyDate.full(film.projectionDate) }}
|
2022-12-25 23:56:01 +01:00
|
|
|
</time>
|
2022-07-13 00:37:49 +02:00
|
|
|
</footer>
|
2022-07-11 01:31:21 +02:00
|
|
|
</div>
|
2022-07-13 00:37:49 +02:00
|
|
|
<MovieCardTrailerModal
|
|
|
|
v-if="showTrailerModal"
|
|
|
|
:url="film.trailerLink"
|
|
|
|
:iframe-id="`film-card-${film.id}`"
|
|
|
|
@close="showTrailerModal = false"
|
|
|
|
/>
|
2022-07-11 01:31:21 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
import { Film } from "~/composables/types"
|
|
|
|
import { PropType } from "@vue/runtime-core"
|
2022-07-13 01:02:23 +02:00
|
|
|
import { prettyDate } from "~/composables/strUtils"
|
2022-07-11 01:31:21 +02:00
|
|
|
|
|
|
|
const props = defineProps({
|
|
|
|
film: { type: Object as PropType<Film>, required: true },
|
|
|
|
})
|
|
|
|
const isPast = ref<boolean>(false)
|
2022-07-13 00:51:00 +02:00
|
|
|
const showTrailerModal = ref<boolean>(false)
|
2022-07-11 01:31:21 +02:00
|
|
|
|
2022-07-13 00:51:00 +02:00
|
|
|
function generateTags(film: Film) {
|
|
|
|
const res = []
|
|
|
|
if ("isInColor" in film && film.isInColor != null)
|
|
|
|
res.push({
|
|
|
|
value: film.isInColor ? "Couleur" : "Noir et blanc",
|
|
|
|
})
|
2022-07-22 00:48:31 +02:00
|
|
|
if (film?.languageSubtitles)
|
2022-07-13 00:51:00 +02:00
|
|
|
res.push({ label: "Langue", value: film.languageSubtitles })
|
|
|
|
if (film?.duration)
|
|
|
|
res.push({
|
|
|
|
label: "Durée",
|
|
|
|
value: film.duration,
|
|
|
|
})
|
|
|
|
if (film?.releaseYear)
|
|
|
|
res.push({ label: "Sortie", value: film.releaseYear.toString() })
|
|
|
|
if (film?.originCountry)
|
|
|
|
res.push({ label: "Pays", value: film.originCountry })
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
const headerTags = computed<{ label?: string; value: string }[]>(() =>
|
|
|
|
generateTags(props.film)
|
|
|
|
)
|
2022-07-11 01:31:21 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="sass">
|
2022-07-22 00:48:31 +02:00
|
|
|
.movie-card .poster-container
|
2022-07-11 01:31:21 +02:00
|
|
|
width: 200px
|
2023-01-29 01:13:14 +01:00
|
|
|
|
|
|
|
.card .card-content .content.movie-content
|
|
|
|
height: 100%
|
|
|
|
display: flex
|
|
|
|
flex-direction: column
|
|
|
|
white-space: pre-wrap
|
2022-07-11 01:31:21 +02:00
|
|
|
</style>
|