Migrate to vue3 (fix #126) #127
@ -195,6 +195,15 @@ export default {
|
||||
return decodeUrl(this.$route.params.url)
|
||||
},
|
||||
},
|
||||
watch: {
|
||||
episode() {
|
||||
if (this.episode) {
|
||||
this.episodes = this.episodes.map((e) =>
|
||||
e.url === this.episode.url ? this.episode : e,
|
||||
)
|
||||
}
|
||||
},
|
||||
},
|
||||
async mounted() {
|
||||
try {
|
||||
this.loading = true
|
||||
@ -258,7 +267,6 @@ export default {
|
||||
generateUrl('/apps/gpoddersync/episode_action/create'),
|
||||
[episode.action],
|
||||
)
|
||||
this.updateList(episode)
|
||||
if (read && this.episode && episode.url === this.episode.url) {
|
||||
this.load(null)
|
||||
}
|
||||
@ -269,11 +277,6 @@ export default {
|
||||
this.loadingAction = false
|
||||
}
|
||||
},
|
||||
updateList(episode) {
|
||||
this.episodes = this.episodes.map((e) =>
|
||||
e.url === episode.url ? episode : e,
|
||||
)
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
@ -66,6 +66,7 @@ export const usePlayer = defineStore('player', {
|
||||
pause() {
|
||||
audio.pause()
|
||||
this.paused = true
|
||||
this.time()
|
||||
},
|
||||
play() {
|
||||
audio.play()
|
||||
|
Loading…
Reference in New Issue
Block a user