mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-06 04:23:24 -05:00
9d62c94d86
Whenever an artist or album page is opened from a modal dialog, the latter is properly closed. Moreover, the views have been renamed for better maintainability.
109 lines
3.0 KiB
Vue
109 lines
3.0 KiB
Vue
<template>
|
|
<div>
|
|
<transition name="fade">
|
|
<div v-if="show" class="modal is-active">
|
|
<div class="modal-background" @click="$emit('close')" />
|
|
<div class="modal-content fd-modal-card">
|
|
<div class="card">
|
|
<div class="card-content">
|
|
<p class="title is-4">
|
|
<a
|
|
class="has-text-link"
|
|
@click="open_artist"
|
|
v-text="artist.name"
|
|
/>
|
|
</p>
|
|
<div class="content is-small">
|
|
<p>
|
|
<span
|
|
class="heading"
|
|
v-text="$t('dialog.spotify.artist.popularity')"
|
|
/>
|
|
<span
|
|
class="title is-6"
|
|
v-text="
|
|
[artist.popularity, artist.followers.total].join(' / ')
|
|
"
|
|
/>
|
|
</p>
|
|
<p>
|
|
<span
|
|
class="heading"
|
|
v-text="$t('dialog.spotify.artist.genres')"
|
|
/>
|
|
<span class="title is-6" v-text="artist.genres.join(', ')" />
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<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.artist.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.artist.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.artist.play')"
|
|
/>
|
|
</a>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
<button
|
|
class="modal-close is-large"
|
|
aria-label="close"
|
|
@click="$emit('close')"
|
|
/>
|
|
</div>
|
|
</transition>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import webapi from '@/webapi'
|
|
|
|
export default {
|
|
name: 'ModalDialogArtistSpotify',
|
|
props: ['show', 'artist'],
|
|
emits: ['close'],
|
|
|
|
methods: {
|
|
play() {
|
|
this.$emit('close')
|
|
webapi.player_play_uri(this.artist.uri, false)
|
|
},
|
|
|
|
queue_add() {
|
|
this.$emit('close')
|
|
webapi.queue_add(this.artist.uri)
|
|
},
|
|
|
|
queue_add_next() {
|
|
this.$emit('close')
|
|
webapi.queue_add_next(this.artist.uri)
|
|
},
|
|
|
|
open_artist() {
|
|
this.$emit('close')
|
|
this.$router.push({
|
|
name: 'music-spotify-artist',
|
|
params: { id: this.artist.id }
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style></style>
|