repod/src/views/Feed.vue

66 lines
1.4 KiB
Vue
Raw Normal View History

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