2018-08-11 01:47:10 -04:00
|
|
|
<template>
|
|
|
|
<div class="media">
|
|
|
|
<div class="media-content fd-has-action is-clipped" v-on:click="play">
|
|
|
|
<h1 class="title is-6">{{ track.title }}</h1>
|
|
|
|
<h2 class="subtitle is-7 has-text-grey"><b>{{ track.artist }}</b></h2>
|
|
|
|
<h2 class="subtitle is-7 has-text-grey">{{ track.album }}</h2>
|
|
|
|
</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">
|
|
|
|
{{ track.title }}
|
|
|
|
</p>
|
|
|
|
<p class="subtitle">
|
|
|
|
{{ track.artist }}
|
|
|
|
</p>
|
|
|
|
<div class="content is-small">
|
|
|
|
<p>
|
|
|
|
<span class="heading">Album</span>
|
|
|
|
<a class="title is-6 has-text-link" @click="open_album">{{ track.album }}</a>
|
|
|
|
</p>
|
|
|
|
<p v-if="track.album_artist && track.media_kind !== 'audiobook'">
|
|
|
|
<span class="heading">Album artist</span>
|
|
|
|
<a class="title is-6 has-text-link" @click="open_artist">{{ track.album_artist }}</a>
|
|
|
|
</p>
|
|
|
|
<p v-if="track.date_released">
|
|
|
|
<span class="heading">Release date</span>
|
|
|
|
<span class="title is-6">{{ track.date_released | time('L')}}</span>
|
|
|
|
</p>
|
|
|
|
<p v-else-if="track.year > 0">
|
|
|
|
<span class="heading">Year</span>
|
|
|
|
<span class="title is-6">{{ track.year }}</span>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<span class="heading">Genre</span>
|
|
|
|
<span class="title is-6">{{ track.genre }}</span>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<span class="heading">Track / Disc</span>
|
|
|
|
<span class="title is-6">{{ track.track_number }} / {{ track.disc_number }}</span>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<span class="heading">Length</span>
|
|
|
|
<span class="title is-6">{{ track.length_ms | duration }}</span>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<span class="heading">Path</span>
|
|
|
|
<span class="title is-6">{{ track.path }}</span>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<span class="heading">Type</span>
|
|
|
|
<span class="title is-6">{{ track.media_kind }} - {{ track.data_kind }}</span>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<span class="heading">Added at</span>
|
|
|
|
<span class="title is-6">{{ track.time_added | time('L LT')}}</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_track">
|
|
|
|
<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: 'PartTrack',
|
|
|
|
components: { ModalDialog },
|
|
|
|
|
|
|
|
props: ['track', 'position', 'context_uri'],
|
|
|
|
|
|
|
|
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.context_uri, false, this.position)
|
2018-08-11 01:47:10 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
play_track: function () {
|
|
|
|
this.show_details_modal = false
|
2018-11-06 15:44:01 -05:00
|
|
|
webapi.player_play_uri(this.track.uri, false)
|
2018-08-11 01:47:10 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
queue_add: function () {
|
|
|
|
this.show_details_modal = false
|
|
|
|
webapi.queue_add(this.track.uri).then(() =>
|
|
|
|
this.$store.dispatch('add_notification', { text: 'Track 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.track.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_album: function () {
|
|
|
|
this.show_details_modal = false
|
|
|
|
if (this.track.media_kind === 'podcast') {
|
|
|
|
this.$router.push({ path: '/podcasts/' + this.track.album_id })
|
|
|
|
} else if (this.track.media_kind === 'audiobook') {
|
|
|
|
this.$router.push({ path: '/audiobooks/' + this.track.album_id })
|
|
|
|
} else {
|
|
|
|
this.$router.push({ path: '/music/albums/' + this.track.album_id })
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
open_artist: function () {
|
|
|
|
this.show_details_modal = false
|
|
|
|
this.$router.push({ path: '/music/artists/' + this.track.album_artist_id })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|