2018-08-11 01:47:10 -04:00
|
|
|
<template>
|
|
|
|
<content-with-heading>
|
|
|
|
<template slot="heading-left">
|
2020-02-21 15:21:08 -05:00
|
|
|
<div class="title is-4">{{ album.name }}
|
|
|
|
<a class="button is-small is-danger is-outlined" @click="rss_unsubscribe">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="mdi mdi-bookmark-remove"></i>
|
|
|
|
</span>
|
|
|
|
<span>Unsubscribe</span>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</template>
|
2018-08-11 01:47:10 -04:00
|
|
|
<template slot="heading-right">
|
2019-02-17 05:24:30 -05:00
|
|
|
<div class="buttons is-centered">
|
2020-02-21 15:21:08 -05:00
|
|
|
<a class="button is-small" @click="mark_all_played" v-if="unplayed">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="mdi mdi-pencil"></i>
|
|
|
|
</span>
|
|
|
|
<span>Mark All Played</span>
|
|
|
|
</a>
|
2019-02-17 05:24:30 -05:00
|
|
|
<a class="button is-small is-light is-rounded" @click="show_album_details_modal = true">
|
|
|
|
<span class="icon"><i class="mdi mdi-dots-horizontal mdi-18px"></i></span>
|
|
|
|
</a>
|
|
|
|
<a class="button is-small is-dark is-rounded" @click="play">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="mdi mdi-play"></i>
|
|
|
|
</span>
|
|
|
|
<span>Play</span>
|
|
|
|
</a>
|
|
|
|
</div>
|
2018-08-11 01:47:10 -04:00
|
|
|
</template>
|
|
|
|
<template slot="content">
|
|
|
|
<p class="heading has-text-centered-mobile">{{ album.track_count }} tracks</p>
|
2018-12-19 02:02:23 -05:00
|
|
|
<list-item-track v-for="track in tracks" :key="track.id" :track="track" @click="play_track(track)">
|
2019-01-31 05:42:40 -05:00
|
|
|
<template slot="progress">
|
|
|
|
<range-slider
|
|
|
|
class="track-progress"
|
|
|
|
min="0"
|
|
|
|
:max="track.length_ms"
|
|
|
|
step="1"
|
|
|
|
:disabled="true"
|
|
|
|
:value="track.seek_ms" >
|
|
|
|
</range-slider>
|
|
|
|
</template>
|
2018-12-15 03:56:09 -05:00
|
|
|
<template slot="actions">
|
|
|
|
<a @click="open_dialog(track)">
|
|
|
|
<span class="icon has-text-dark"><i class="mdi mdi-dots-vertical mdi-18px"></i></span>
|
|
|
|
</a>
|
|
|
|
</template>
|
|
|
|
</list-item-track>
|
2019-01-29 11:50:47 -05:00
|
|
|
<modal-dialog-track :show="show_details_modal" :track="selected_track" @close="show_details_modal = false" @play_count_changed="reload_tracks" />
|
2019-02-17 05:24:30 -05:00
|
|
|
<modal-dialog-album :show="show_album_details_modal" :album="album" :media_kind="'podcast'" @close="show_album_details_modal = false" />
|
2018-08-11 01:47:10 -04:00
|
|
|
</template>
|
|
|
|
</content-with-heading>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { LoadDataBeforeEnterMixin } from './mixin'
|
|
|
|
import ContentWithHeading from '@/templates/ContentWithHeading'
|
|
|
|
import ListItemTrack from '@/components/ListItemTrack'
|
2018-12-15 03:56:09 -05:00
|
|
|
import ModalDialogTrack from '@/components/ModalDialogTrack'
|
2019-02-17 05:24:30 -05:00
|
|
|
import ModalDialogAlbum from '@/components/ModalDialogAlbum'
|
2019-01-31 05:42:40 -05:00
|
|
|
import RangeSlider from 'vue-range-slider'
|
2018-08-11 01:47:10 -04:00
|
|
|
import webapi from '@/webapi'
|
|
|
|
|
|
|
|
const albumData = {
|
|
|
|
load: function (to) {
|
|
|
|
return Promise.all([
|
|
|
|
webapi.library_album(to.params.album_id),
|
2019-01-27 00:36:19 -05:00
|
|
|
webapi.library_podcast_episodes(to.params.album_id)
|
2018-08-11 01:47:10 -04:00
|
|
|
])
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function (vm, response) {
|
|
|
|
vm.album = response[0].data
|
2019-01-27 00:36:19 -05:00
|
|
|
vm.tracks = response[1].data.tracks.items
|
2020-02-21 15:21:08 -05:00
|
|
|
vm.unplayed = !vm.tracks.every(track => track.play_count > 0)
|
2018-08-11 01:47:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'PagePodcast',
|
|
|
|
mixins: [ LoadDataBeforeEnterMixin(albumData) ],
|
2019-02-17 05:24:30 -05:00
|
|
|
components: { ContentWithHeading, ListItemTrack, ModalDialogTrack, RangeSlider, ModalDialogAlbum },
|
2018-08-11 01:47:10 -04:00
|
|
|
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
album: {},
|
2018-12-15 03:56:09 -05:00
|
|
|
tracks: [],
|
2020-02-21 15:21:08 -05:00
|
|
|
unplayed: false,
|
2018-12-15 03:56:09 -05:00
|
|
|
|
|
|
|
show_details_modal: false,
|
2019-02-17 05:24:30 -05:00
|
|
|
selected_track: {},
|
|
|
|
|
|
|
|
show_album_details_modal: false
|
2018-08-11 01:47:10 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
play: function () {
|
2018-11-06 15:44:01 -05:00
|
|
|
webapi.player_play_uri(this.album.uri, false)
|
2018-12-15 03:56:09 -05:00
|
|
|
},
|
|
|
|
|
2018-12-19 02:02:23 -05:00
|
|
|
play_track: function (track) {
|
|
|
|
webapi.player_play_uri(track.uri, false)
|
2018-12-17 04:35:39 -05:00
|
|
|
},
|
|
|
|
|
2020-02-21 15:21:08 -05:00
|
|
|
mark_all_played: function () {
|
|
|
|
webapi.library_album_track_update(this.album.id, { 'play_count': 'played' }).then(({ data }) => (
|
|
|
|
this.tracks.forEach(track => {
|
|
|
|
if (track.play_count === 0) {
|
|
|
|
track.play_count = 1
|
|
|
|
}
|
|
|
|
})
|
|
|
|
))
|
|
|
|
this.unplayed = false
|
|
|
|
},
|
|
|
|
|
2018-12-15 03:56:09 -05:00
|
|
|
open_dialog: function (track) {
|
|
|
|
this.selected_track = track
|
|
|
|
this.show_details_modal = true
|
2019-01-29 11:50:47 -05:00
|
|
|
},
|
|
|
|
|
2020-02-21 15:21:08 -05:00
|
|
|
rss_unsubscribe: function () {
|
|
|
|
webapi.search({ type: 'playlist', query: this.album.name }).then(({ data }) => {
|
|
|
|
var plids = [...new Set(data.playlists.items
|
|
|
|
.filter(pl => pl.name === this.album.name)
|
|
|
|
.map(pl => pl.id))]
|
|
|
|
|
|
|
|
if (plids.length === 1) {
|
|
|
|
plids.forEach(pl => {
|
|
|
|
webapi.library_playlist_delete(pl)
|
|
|
|
})
|
|
|
|
this.$router.push({ path: '/podcasts' })
|
|
|
|
} else {
|
|
|
|
this.$store.dispatch('add_notification', { text: 'Failed to delete playlist, unable to find unique plid', type: 'danger' })
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
2019-01-29 11:50:47 -05:00
|
|
|
reload_tracks: function () {
|
|
|
|
webapi.library_podcast_episodes(this.album.id).then(({ data }) => {
|
|
|
|
this.tracks = data.tracks.items
|
|
|
|
})
|
2018-08-11 01:47:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|