2023-07-29 15:53:51 +00:00
|
|
|
<template>
|
2024-08-27 14:41:58 +00:00
|
|
|
<AppContent>
|
2023-12-23 21:49:23 +00:00
|
|
|
<Loading v-if="loading" />
|
2024-08-26 14:36:13 +00:00
|
|
|
<EmptyContent
|
2024-05-06 12:47:47 +00:00
|
|
|
v-if="failed"
|
|
|
|
class="error"
|
|
|
|
:name="t('repod', 'Error loading feed')">
|
2023-08-02 09:33:48 +00:00
|
|
|
<template #icon>
|
|
|
|
<Alert />
|
|
|
|
</template>
|
2024-08-26 14:36:13 +00:00
|
|
|
</EmptyContent>
|
2024-04-29 22:48:47 +00:00
|
|
|
<Banner
|
|
|
|
v-if="feed"
|
2023-08-23 08:11:39 +00:00
|
|
|
:author="feed.author"
|
2023-08-23 15:54:09 +00:00
|
|
|
:description="feed.description"
|
2023-08-23 08:11:39 +00:00
|
|
|
:image-url="feed.imageUrl"
|
|
|
|
:link="feed.link"
|
|
|
|
:title="feed.title" />
|
2024-01-13 23:40:52 +00:00
|
|
|
<Episodes v-if="feed" />
|
2024-01-16 21:12:07 +00:00
|
|
|
</AppContent>
|
2023-07-29 15:53:51 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-08-02 09:33:48 +00:00
|
|
|
import Alert from 'vue-material-design-icons/Alert.vue'
|
2024-01-16 21:12:07 +00:00
|
|
|
import AppContent from '../components/Atoms/AppContent.vue'
|
2023-08-23 08:11:39 +00:00
|
|
|
import Banner from '../components/Feed/Banner.vue'
|
2024-08-26 14:36:13 +00:00
|
|
|
import EmptyContent from '../components/Atoms/EmptyContent.vue'
|
2023-08-30 07:27:12 +00:00
|
|
|
import Episodes from '../components/Feed/Episodes.vue'
|
2023-12-23 21:49:23 +00:00
|
|
|
import Loading from '../components/Atoms/Loading.vue'
|
2023-08-02 09:33:48 +00:00
|
|
|
import axios from '@nextcloud/axios'
|
2024-01-16 22:13:07 +00:00
|
|
|
import { decodeUrl } from '../utils/url.js'
|
2023-08-02 09:33:48 +00:00
|
|
|
import { generateUrl } from '@nextcloud/router'
|
|
|
|
|
2023-07-29 15:53:51 +00:00
|
|
|
export default {
|
|
|
|
name: 'Feed',
|
2023-08-02 09:33:48 +00:00
|
|
|
components: {
|
|
|
|
Alert,
|
2024-01-16 21:12:07 +00:00
|
|
|
AppContent,
|
2023-08-23 08:11:39 +00:00
|
|
|
Banner,
|
2024-08-26 14:36:13 +00:00
|
|
|
EmptyContent,
|
2023-08-30 07:27:12 +00:00
|
|
|
Episodes,
|
2023-12-23 21:49:23 +00:00
|
|
|
Loading,
|
2023-08-02 09:33:48 +00:00
|
|
|
},
|
2024-08-22 11:30:52 +00:00
|
|
|
data: () => ({
|
|
|
|
failed: false,
|
|
|
|
loading: true,
|
|
|
|
feed: null,
|
|
|
|
}),
|
2023-08-02 09:33:48 +00:00
|
|
|
computed: {
|
|
|
|
url() {
|
2024-01-16 22:13:07 +00:00
|
|
|
return decodeUrl(this.$route.params.url)
|
2023-08-02 09:33:48 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
async mounted() {
|
|
|
|
try {
|
2024-04-29 22:48:47 +00:00
|
|
|
const podcastData = await axios.get(
|
|
|
|
generateUrl('/apps/repod/podcast?url={url}', { url: this.url }),
|
|
|
|
)
|
2023-08-29 06:53:15 +00:00
|
|
|
this.feed = podcastData.data
|
2023-08-02 09:33:48 +00:00
|
|
|
} catch (e) {
|
|
|
|
this.failed = true
|
|
|
|
console.error(e)
|
|
|
|
} finally {
|
|
|
|
this.loading = false
|
|
|
|
}
|
|
|
|
},
|
2023-07-29 15:53:51 +00:00
|
|
|
}
|
|
|
|
</script>
|
2024-01-12 23:27:36 +00:00
|
|
|
|
|
|
|
<style scoped>
|
2024-04-29 22:48:47 +00:00
|
|
|
.error {
|
|
|
|
margin: 2rem;
|
|
|
|
}
|
2024-01-12 23:27:36 +00:00
|
|
|
</style>
|