2018-12-17 11:52:09 +01:00
|
|
|
<template>
|
2024-03-05 14:21:35 +01:00
|
|
|
<transition name="fade">
|
|
|
|
<div v-if="show" class="modal is-active">
|
|
|
|
<div class="modal-background" @click="$emit('close')" />
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-content">
|
2024-03-26 03:13:17 +01:00
|
|
|
<p class="title is-4" v-text="item.name" />
|
|
|
|
<p class="subtitle" v-text="item.artists[0].name" />
|
2024-03-05 14:21:35 +01:00
|
|
|
<div class="content is-small">
|
|
|
|
<p>
|
|
|
|
<span
|
|
|
|
class="heading"
|
|
|
|
v-text="$t('dialog.spotify.track.album')"
|
|
|
|
/>
|
|
|
|
<a
|
|
|
|
class="title is-6 has-text-link"
|
|
|
|
@click="open_album"
|
2024-03-26 03:13:17 +01:00
|
|
|
v-text="item.album.name"
|
2024-03-05 14:21:35 +01:00
|
|
|
/>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<span
|
|
|
|
class="heading"
|
|
|
|
v-text="$t('dialog.spotify.track.album-artist')"
|
|
|
|
/>
|
|
|
|
<a
|
|
|
|
class="title is-6 has-text-link"
|
|
|
|
@click="open_artist"
|
2024-03-26 03:13:17 +01:00
|
|
|
v-text="item.artists[0].name"
|
2024-03-05 14:21:35 +01:00
|
|
|
/>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<span
|
|
|
|
class="heading"
|
|
|
|
v-text="$t('dialog.spotify.track.release-date')"
|
|
|
|
/>
|
|
|
|
<span
|
|
|
|
class="title is-6"
|
2024-03-26 03:13:17 +01:00
|
|
|
v-text="$filters.date(item.album.release_date)"
|
2024-03-05 14:21:35 +01:00
|
|
|
/>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<span
|
|
|
|
class="heading"
|
|
|
|
v-text="$t('dialog.spotify.track.position')"
|
|
|
|
/>
|
|
|
|
<span
|
|
|
|
class="title is-6"
|
2024-03-26 03:13:17 +01:00
|
|
|
v-text="[item.disc_number, item.track_number].join(' / ')"
|
2024-03-05 14:21:35 +01:00
|
|
|
/>
|
|
|
|
</p>
|
|
|
|
<p>
|
2022-05-29 18:49:00 +02:00
|
|
|
<span
|
2024-03-05 14:21:35 +01:00
|
|
|
class="heading"
|
|
|
|
v-text="$t('dialog.spotify.track.duration')"
|
2022-05-29 18:49:00 +02:00
|
|
|
/>
|
|
|
|
<span
|
2024-03-05 14:21:35 +01:00
|
|
|
class="title is-6"
|
2024-03-26 03:13:17 +01:00
|
|
|
v-text="$filters.durationInHours(item.duration_ms)"
|
2022-05-29 18:49:00 +02:00
|
|
|
/>
|
2024-03-05 14:21:35 +01:00
|
|
|
</p>
|
|
|
|
<p>
|
2022-05-29 18:49:00 +02:00
|
|
|
<span
|
2024-03-05 14:21:35 +01:00
|
|
|
class="heading"
|
|
|
|
v-text="$t('dialog.spotify.track.path')"
|
2022-05-29 18:49:00 +02:00
|
|
|
/>
|
2024-03-26 03:13:17 +01:00
|
|
|
<span class="title is-6" v-text="item.uri" />
|
2024-03-05 14:21:35 +01:00
|
|
|
</p>
|
|
|
|
</div>
|
2018-12-17 11:52:09 +01:00
|
|
|
</div>
|
2024-03-05 14:21:35 +01:00
|
|
|
<footer class="card-footer">
|
|
|
|
<a class="card-footer-item has-text-dark" @click="queue_add">
|
|
|
|
<mdicon class="icon" name="playlist-plus" size="16" />
|
|
|
|
<span class="is-size-7" v-text="$t('dialog.spotify.track.add')" />
|
|
|
|
</a>
|
|
|
|
<a class="card-footer-item has-text-dark" @click="queue_add_next">
|
|
|
|
<mdicon class="icon" name="playlist-play" size="16" />
|
|
|
|
<span
|
|
|
|
class="is-size-7"
|
|
|
|
v-text="$t('dialog.spotify.track.add-next')"
|
|
|
|
/>
|
|
|
|
</a>
|
|
|
|
<a class="card-footer-item has-text-dark" @click="play">
|
|
|
|
<mdicon class="icon" name="play" size="16" />
|
|
|
|
<span
|
|
|
|
class="is-size-7"
|
|
|
|
v-text="$t('dialog.spotify.track.play')"
|
|
|
|
/>
|
|
|
|
</a>
|
|
|
|
</footer>
|
2018-12-17 11:52:09 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-05 14:21:35 +01:00
|
|
|
<button
|
|
|
|
class="modal-close is-large"
|
|
|
|
aria-label="close"
|
|
|
|
@click="$emit('close')"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</transition>
|
2018-12-17 11:52:09 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import webapi from '@/webapi'
|
|
|
|
|
|
|
|
export default {
|
2023-07-18 15:19:24 +02:00
|
|
|
name: 'ModalDialogTrackSpotify',
|
2024-03-26 03:13:17 +01:00
|
|
|
props: { item: { required: true, type: Object }, show: Boolean },
|
2022-02-19 07:05:59 +01:00
|
|
|
emits: ['close'],
|
2018-12-17 11:52:09 +01:00
|
|
|
|
|
|
|
methods: {
|
2023-06-07 21:25:54 +02:00
|
|
|
open_album() {
|
2023-07-18 15:19:24 +02:00
|
|
|
this.$emit('close')
|
2023-07-12 21:30:52 +02:00
|
|
|
this.$router.push({
|
|
|
|
name: 'music-spotify-album',
|
2024-03-26 03:13:17 +01:00
|
|
|
params: { id: this.item.album.id }
|
2023-07-12 21:30:52 +02:00
|
|
|
})
|
2018-12-17 11:52:09 +01:00
|
|
|
},
|
2023-06-07 21:25:54 +02:00
|
|
|
open_artist() {
|
2023-07-18 15:19:24 +02:00
|
|
|
this.$emit('close')
|
2022-02-19 06:39:14 +01:00
|
|
|
this.$router.push({
|
2023-07-12 21:30:52 +02:00
|
|
|
name: 'music-spotify-artist',
|
2024-03-26 03:13:17 +01:00
|
|
|
params: { id: this.item.artists[0].id }
|
2022-02-19 06:39:14 +01:00
|
|
|
})
|
2024-03-25 14:00:42 +01:00
|
|
|
},
|
|
|
|
play() {
|
|
|
|
this.$emit('close')
|
2024-03-26 03:13:17 +01:00
|
|
|
webapi.player_play_uri(this.item.uri, false)
|
2024-03-25 14:00:42 +01:00
|
|
|
},
|
|
|
|
queue_add() {
|
|
|
|
this.$emit('close')
|
2024-03-26 03:13:17 +01:00
|
|
|
webapi.queue_add(this.item.uri)
|
2024-03-25 14:00:42 +01:00
|
|
|
},
|
|
|
|
queue_add_next() {
|
|
|
|
this.$emit('close')
|
2024-03-26 03:13:17 +01:00
|
|
|
webapi.queue_add_next(this.item.uri)
|
2018-12-17 11:52:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2022-02-19 06:39:14 +01:00
|
|
|
<style></style>
|