2018-11-24 11:22:23 -05:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<content-with-heading>
|
|
|
|
<template slot="heading-left">
|
|
|
|
<p class="title is-4">{{ genre }}</p>
|
|
|
|
</template>
|
|
|
|
<template slot="heading-right">
|
|
|
|
<a class="button is-small is-dark is-rounded" @click="play">
|
|
|
|
<span class="icon"><i class="mdi mdi-shuffle"></i></span> <span>Shuffle</span>
|
|
|
|
</a>
|
|
|
|
</template>
|
|
|
|
<template slot="content">
|
2018-12-08 03:30:45 -05:00
|
|
|
<p class="heading has-text-centered-mobile"><a class="has-text-link" @click="open_genre">albums</a> | {{ tracks.total }} tracks</p>
|
2018-12-03 13:42:59 -05:00
|
|
|
<list-item-track v-for="(track, index) in tracks.items" :key="track.id" :track="track" :position="index" :context_uri="tracks.items.map(a => a.uri).join(',')" :links="links"></list-item-track>
|
2018-11-24 11:22:23 -05:00
|
|
|
</template>
|
|
|
|
</content-with-heading>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { LoadDataBeforeEnterMixin } from './mixin'
|
|
|
|
import ContentWithHeading from '@/templates/ContentWithHeading'
|
|
|
|
import ListItemTrack from '@/components/ListItemTrack'
|
|
|
|
import webapi from '@/webapi'
|
|
|
|
|
|
|
|
const tracksData = {
|
|
|
|
load: function (to) {
|
|
|
|
return webapi.library_genre_tracks(to.params.genre)
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function (vm, response) {
|
|
|
|
vm.genre = vm.$route.params.genre
|
|
|
|
vm.tracks = response.data.tracks
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'PageGenreTracks',
|
|
|
|
mixins: [ LoadDataBeforeEnterMixin(tracksData) ],
|
|
|
|
components: { ContentWithHeading, ListItemTrack },
|
|
|
|
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
tracks: {},
|
|
|
|
genre: '',
|
|
|
|
links: []
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
open_genre: function () {
|
|
|
|
this.show_details_modal = false
|
|
|
|
this.$router.push({ path: '/music/genres/' + this.genre })
|
|
|
|
},
|
|
|
|
|
|
|
|
play: function () {
|
|
|
|
webapi.player_play_uri(this.tracks.items.map(a => a.uri).join(','), true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|