owntone-server/web-src/src/pages/PagePodcast.vue

136 lines
4.0 KiB
Vue
Raw Normal View History

<template>
<content-with-heading>
<template #heading-left>
2022-05-20 13:44:22 +02:00
<div class="title is-4" v-text="album.name" />
</template>
<template #heading-right>
<div class="buttons is-centered">
2022-05-20 13:44:22 +02:00
<a class="button is-small is-light is-rounded" @click="show_album_details_modal = true">
<mdicon class="icon" name="dots-horizontal" size="16" />
</a>
<a class="button is-small is-dark is-rounded" @click="play">
2022-05-20 13:44:22 +02:00
<mdicon class="icon" name="play" size="16" />
<span v-text="$t('page.podcast.play')" />
</a>
</div>
</template>
<template #content>
2022-05-20 13:44:22 +02:00
<p class="heading has-text-centered-mobile" v-text="$t('page.podcast.track-count', { count: album.track_count })" />
<list-tracks :tracks="tracks" :show_progress="true" @play-count-changed="reload_tracks" />
<modal-dialog-album :show="show_album_details_modal" :album="album" :media_kind="'podcast'" :new_tracks="new_tracks" @close="show_album_details_modal = false" @play-count-changed="reload_tracks" @remove-podcast="open_remove_podcast_dialog" />
<modal-dialog :show="show_remove_podcast_modal" title="Remove podcast" delete_action="Remove" @close="show_remove_podcast_modal = false" @delete="remove_podcast">
<template #modal-content>
2022-05-20 13:44:22 +02:00
<p v-text="$t('page.podcast.remove-info-1')" />
<p class="is-size-7">
2022-05-20 13:44:22 +02:00
(<span v-text="$t('page.podcast.remove-info-2')" />
<b v-text="rss_playlist_to_remove.name" />)
</p>
</template>
</modal-dialog>
</template>
</content-with-heading>
</template>
<script>
2022-02-19 06:18:01 +01:00
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
import ListTracks from '@/components/ListTracks.vue'
2022-02-19 06:18:01 +01:00
import ModalDialogAlbum from '@/components/ModalDialogAlbum.vue'
import ModalDialog from '@/components/ModalDialog.vue'
import webapi from '@/webapi'
2022-02-19 06:18:01 +01:00
const dataObject = {
load: function (to) {
return Promise.all([
webapi.library_album(to.params.album_id),
webapi.library_podcast_episodes(to.params.album_id)
])
},
set: function (vm, response) {
vm.album = response[0].data
vm.tracks = response[1].data.tracks.items
}
}
export default {
name: 'PagePodcast',
2022-02-19 06:18:01 +01:00
components: {
ContentWithHeading,
ListTracks,
2022-02-19 06:18:01 +01:00
ModalDialogAlbum,
ModalDialog
2022-02-19 06:18:01 +01:00
},
beforeRouteEnter(to, from, next) {
dataObject.load(to).then((response) => {
next((vm) => dataObject.set(vm, response))
})
},
beforeRouteUpdate(to, from, next) {
const vm = this
dataObject.load(to).then((response) => {
dataObject.set(vm, response)
next()
})
},
data() {
return {
album: {},
tracks: [],
show_album_details_modal: false,
show_remove_podcast_modal: false,
rss_playlist_to_remove: {}
}
},
computed: {
new_tracks() {
return this.tracks.filter((track) => track.play_count === 0).length
}
},
methods: {
play: function () {
webapi.player_play_uri(this.album.uri, false)
},
open_remove_podcast_dialog: function () {
this.show_album_details_modal = false
webapi.library_track_playlists(this.tracks[0].id).then(({ data }) => {
const rssPlaylists = data.items.filter((pl) => pl.type === 'rss')
if (rssPlaylists.length !== 1) {
this.$store.dispatch('add_notification', {
2022-05-20 13:44:22 +02:00
text: this.$t('page.podcast.remove-error'),
type: 'danger'
})
return
}
this.rss_playlist_to_remove = rssPlaylists[0]
this.show_remove_podcast_modal = true
})
},
remove_podcast: function () {
this.show_remove_podcast_modal = false
webapi
.library_playlist_delete(this.rss_playlist_to_remove.id)
.then(() => {
this.$router.replace({ path: '/podcasts' })
})
},
reload_tracks: function () {
webapi.library_podcast_episodes(this.album.id).then(({ data }) => {
this.tracks = data.tracks.items
})
}
}
}
</script>
<style></style>