2022-10-30 21:48:49 +01:00
|
|
|
<main class="layout-maxed ma-collection-details" id="ma-collection-details" v-cloak @keyup="changeImage">
|
2022-03-03 17:03:18 +01:00
|
|
|
|
2022-08-30 15:17:14 +02:00
|
|
|
<h1>
|
2023-03-23 14:34:18 +01:00
|
|
|
<template v-for="artist in item.artists">
|
|
|
|
<a :href="`/ma-collection?page=1&limit=16&sort=year&order=asc&artist=${artist.name}`">{{artist.name}}</a>
|
|
|
|
<template v-if="artist.join"> {{artist.join}} </template>
|
|
|
|
</template>
|
|
|
|
- {{item.title}}
|
2022-08-30 15:17:14 +02:00
|
|
|
<i class="icon-trash" title="Supprimer cette fiche" @click="showConfirmDelete()"></i>
|
|
|
|
<i class="icon-refresh" title="Mettre à jour les données de cette fiche" @click="updateItem()"></i>
|
2023-09-22 21:52:03 +02:00
|
|
|
<i class="icon-share" title="Partager cet album sur le fédiverse" @click="showModalShare = true" v-if="canShareItem"></i>
|
2022-08-30 15:17:14 +02:00
|
|
|
</h1>
|
2022-03-04 08:14:29 +01:00
|
|
|
<div class="grid sm:grid-cols-3 gap-16">
|
2022-03-03 17:03:18 +01:00
|
|
|
<div class="text-center">
|
|
|
|
<img :src="item.thumb %>" :alt="`Miniature pour l'album ${item.title}`" />
|
|
|
|
</div>
|
2022-03-04 08:14:29 +01:00
|
|
|
<div class="sm:col-span-2 text-center galerie">
|
2022-03-03 17:03:18 +01:00
|
|
|
<div v-for="(image, index) in item.images" :data-index="index" @click.stop.prevent="showGallery">
|
|
|
|
<img :src="image.uri150" :alt="`Miniature de type ${image.type}`" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<hr />
|
2023-12-15 08:30:41 +01:00
|
|
|
<%- include('../../../components/album.ejs') %>
|
2022-03-03 17:03:18 +01:00
|
|
|
|
|
|
|
<div class="modal" :class="{'is-visible': modalIsVisible}">
|
|
|
|
<div class="modal-background"></div>
|
|
|
|
<button type="button" aria-label="Fermer" class="close" @click="toggleModal"></button>
|
2024-01-13 18:30:45 +01:00
|
|
|
<div class="carousel">
|
|
|
|
<button type="button" aria-label="Image précédente" class="navigation previous" @click="previous">
|
|
|
|
<i class="icon-left-open"></i>
|
|
|
|
</button>
|
|
|
|
<div class="text-center">
|
|
|
|
<img :src="preview" />
|
|
|
|
</div>
|
|
|
|
<button type="button" aria-label="Image suivante" class="navigation next" @click="next">
|
|
|
|
<i class="icon-right-open"></i>
|
|
|
|
</button>
|
|
|
|
|
2022-03-03 17:03:18 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-08-30 15:17:14 +02:00
|
|
|
|
|
|
|
<div class="modal" :class="{'is-visible': showModalDelete}">
|
|
|
|
<div class="modal-background"></div>
|
|
|
|
<div class="modal-card">
|
|
|
|
<header></header>
|
|
|
|
<section>
|
|
|
|
Êtes-vous sûr de vouloir supprimer cet album ?
|
|
|
|
</section>
|
|
|
|
<footer>
|
|
|
|
<button class="button is-primary" @click="deleteItem">Supprimer</button>
|
2022-10-30 21:48:49 +01:00
|
|
|
<button class="button" @click="toggleModalDelete">Annuler</button>
|
2022-08-30 15:17:14 +02:00
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-09-22 21:52:03 +02:00
|
|
|
|
|
|
|
<div class="modal" :class="{'is-visible': showModalShare}">
|
|
|
|
<div class="modal-background"></div>
|
|
|
|
<div class="modal-card">
|
|
|
|
<header>Partager un album sur le fédiverse</header>
|
|
|
|
<section>
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-10">
|
|
|
|
<div class="field">
|
|
|
|
<label for="shareMessage">Message</label>
|
|
|
|
<textarea
|
|
|
|
name="shareMessage"
|
|
|
|
id="shareMessage"
|
|
|
|
v-model="shareMessage"
|
|
|
|
rows="6"
|
|
|
|
></textarea>
|
|
|
|
Caractères utilisés : {{ shareMessageLength }}
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<small>
|
|
|
|
Variables possibles :
|
|
|
|
<ul>
|
|
|
|
<li>{artist}, exemple : Iron Maiden</li>
|
|
|
|
<li>{album}, exemple : Powerslave</li>
|
|
|
|
<li>{format}, exemple : Cassette</li>
|
|
|
|
<li>{year}, exemple: 1984</li>
|
|
|
|
<li>{video}, exemple : https://www.youtube.com/watch?v=Qx0s8OqgBIw</li>
|
|
|
|
</ul>
|
|
|
|
</small>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<footer>
|
|
|
|
<button :class="['button is-primary', shareSubmiting ? 'is-disabled' : '']" @click="shareAlbum">Partager</button>
|
|
|
|
<button class="button" @click="showModalShare=!showModalShare">Annuler</button>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-03-03 17:03:18 +01:00
|
|
|
</main>
|
|
|
|
|
|
|
|
<script>
|
2022-10-30 21:48:49 +01:00
|
|
|
const item = <%- JSON.stringify(page.item) %>;
|
2023-09-22 21:52:03 +02:00
|
|
|
const canShareItem = <%= user.mastodon?.publish || false %>;
|
2022-03-03 17:03:18 +01:00
|
|
|
</script>
|