2018-08-11 01:47:10 -04:00
|
|
|
<template>
|
2018-12-08 02:48:15 -05:00
|
|
|
<div class="media" :id="'index_' + anchor">
|
2018-08-11 01:47:10 -04:00
|
|
|
<div class="media-content fd-has-action is-clipped" v-on:click="open_artist">
|
|
|
|
<h1 class="title is-6">{{ artist.name }}</h1>
|
|
|
|
</div>
|
|
|
|
<div class="media-right">
|
|
|
|
<a @click="show_details_modal = true">
|
|
|
|
<span class="icon has-text-dark"><i class="mdi mdi-dots-vertical mdi-18px"></i></span>
|
|
|
|
</a>
|
|
|
|
<modal-dialog :show="show_details_modal" @close="show_details_modal = false">
|
|
|
|
<template slot="modal-content">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-content">
|
|
|
|
<p class="title is-4">
|
|
|
|
<a class="has-text-link" @click="open_artist">{{ artist.name }}</a>
|
|
|
|
</p>
|
|
|
|
<div class="content is-small">
|
|
|
|
<p>
|
|
|
|
<span class="heading">Albums</span>
|
|
|
|
<span class="title is-6">{{ artist.album_count }}</span>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<span class="heading">Tracks</span>
|
|
|
|
<span class="title is-6">{{ artist.track_count }}</span>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<footer class="card-footer">
|
|
|
|
<a class="card-footer-item has-text-dark" @click="queue_add">
|
|
|
|
<span class="icon"><i class="mdi mdi-playlist-plus mdi-18px"></i></span> <span>Add</span>
|
|
|
|
</a>
|
2018-10-13 02:32:25 -04:00
|
|
|
<a class="card-footer-item has-text-dark" @click="queue_add_next">
|
|
|
|
<span class="icon"><i class="mdi mdi-playlist-play mdi-18px"></i></span> <span>Add Next</span>
|
|
|
|
</a>
|
2018-08-11 01:47:10 -04:00
|
|
|
<a class="card-footer-item has-text-dark" @click="play">
|
|
|
|
<span class="icon"><i class="mdi mdi-play mdi-18px"></i></span> <span>Play</span>
|
|
|
|
</a>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</modal-dialog>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import ModalDialog from '@/components/ModalDialog'
|
|
|
|
import webapi from '@/webapi'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'PartArtist',
|
|
|
|
components: { ModalDialog },
|
|
|
|
|
2018-12-08 02:48:15 -05:00
|
|
|
props: ['artist', 'anchor'],
|
2018-08-11 01:47:10 -04:00
|
|
|
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
show_details_modal: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
play: function () {
|
|
|
|
this.show_details_modal = false
|
2018-11-06 15:44:01 -05:00
|
|
|
webapi.player_play_uri(this.artist.uri, false)
|
2018-08-11 01:47:10 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
queue_add: function () {
|
|
|
|
this.show_details_modal = false
|
|
|
|
webapi.queue_add(this.artist.uri).then(() =>
|
|
|
|
this.$store.dispatch('add_notification', { text: 'Artist tracks appended to queue', type: 'info', timeout: 2000 })
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2018-10-13 02:32:25 -04:00
|
|
|
queue_add_next: function () {
|
|
|
|
this.show_details_modal = false
|
|
|
|
webapi.queue_add_next(this.artist.uri).then(() =>
|
|
|
|
this.$store.dispatch('add_notification', { text: 'Album tracks appended to queue', type: 'info', timeout: 2000 })
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2018-08-11 01:47:10 -04:00
|
|
|
open_artist: function () {
|
|
|
|
this.show_details_modal = false
|
|
|
|
this.$router.push({ path: '/music/artists/' + this.artist.id })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|