50 lines
872 B
Vue
50 lines
872 B
Vue
|
<template>
|
||
|
<a @click="addSubscription">
|
||
|
<img :src="imgUrl" :alt="author" :title="author">
|
||
|
</a>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import axios from '@nextcloud/axios'
|
||
|
import { generateUrl } from '@nextcloud/router'
|
||
|
import { showError } from '@nextcloud/dialogs'
|
||
|
|
||
|
export default {
|
||
|
name: 'TopItem',
|
||
|
components: {},
|
||
|
props: {
|
||
|
xmlUrl: {
|
||
|
type: String,
|
||
|
required: true,
|
||
|
},
|
||
|
imgUrl: {
|
||
|
type: String,
|
||
|
required: true,
|
||
|
},
|
||
|
author: {
|
||
|
type: String,
|
||
|
required: true,
|
||
|
},
|
||
|
},
|
||
|
methods: {
|
||
|
async addSubscription() {
|
||
|
try {
|
||
|
await axios.post(generateUrl('/apps/gpoddersync/subscription_change/create'), { add: [this.xmlUrl], remove: [] })
|
||
|
} catch (e) {
|
||
|
console.error(e)
|
||
|
showError(t('Error while adding the feed'))
|
||
|
}
|
||
|
|
||
|
this.$store.dispatch('subscriptions/fetch')
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
img {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
}
|
||
|
</style>
|