mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
148 lines
4.8 KiB
Vue
148 lines
4.8 KiB
Vue
<template lang="pug">
|
|
v-container
|
|
p {{$t('export.intro')}}
|
|
//- Search
|
|
v-tabs(v-model='type')
|
|
|
|
//- TOFIX
|
|
//- v-tab.pt-1(label='email' name='email')
|
|
//- v-tab-item
|
|
//- p(v-html='$t(`export.email_description`)')
|
|
//- el-form(@submit.native.prevent)
|
|
//- //- el-switch(v-model='notification.notify_on_add' :active-text="$t('notify_on_insert')")
|
|
//- //- br
|
|
//- //- el-switch.mt-2(v-model='notification.send_notification' :active-text="$t('send_notification')")
|
|
//- el-input.mt-2(v-model='notification.email' :placeholder="$t('export.insert_your_address')" ref='email')
|
|
//- el-button.mt-2.float-right(native-type= 'submit' type='success' @click='add_notification') {{$t('common.send')}}
|
|
|
|
v-tab {{$t('common.feed')}}
|
|
v-tab-item
|
|
span(v-html='$t(`export.feed_description`)')
|
|
v-text-field(v-model='link' readonly)
|
|
v-btn(slot='append' plain text
|
|
v-clipboard:copy='link'
|
|
v-clipboard:success='copyLink') {{$t("common.copy")}}
|
|
|
|
v-tab(v-if='settings.enable_federation') {{$t('common.fediverse')}}
|
|
v-tab-item
|
|
FollowMe
|
|
|
|
v-tab ics/ical
|
|
v-tab-item
|
|
p(v-html='$t(`export.ical_description`)')
|
|
v-text-field(v-model='link')
|
|
v-btn(slot='append' v-clipboard:copy='link' v-clipboard:success='copyLink') {{$t("common.copy")}}
|
|
|
|
v-tab List
|
|
v-tab-item
|
|
p(v-html='$t(`export.list_description`)')
|
|
|
|
v-row
|
|
v-col.mr-2(:span='11')
|
|
v-text-field(v-model='list.title') Title
|
|
v-col.float-right(:span='12')
|
|
List(
|
|
:title='list.title'
|
|
:events='filteredEvents')
|
|
v-text-field.mb-1(type='textarea' v-model='listScript' readonly )
|
|
v-btn(plain v-clipboard:copy='listScript' v-clipboard:success='copyLink') {{$t('common.copy')}}
|
|
|
|
//- TOFIX
|
|
//- v-tab.pt-1(label='calendar' name='calendar')
|
|
//- v-tab-item
|
|
//- p(v-html='$t(`export.calendar_description`)')
|
|
//- //- no-ssr
|
|
//- Calendar.mb-1
|
|
//- v-text-field.mb-1(type='textarea' v-model='script')
|
|
//- el-button.float-right(plain type="primary" icon='el-icon-document') Copy
|
|
|
|
</template>
|
|
<script>
|
|
import { mapState, mapGetters } from 'vuex'
|
|
import List from '@/components/List'
|
|
import FollowMe from '../components/FollowMe'
|
|
|
|
export default {
|
|
name: 'Exports',
|
|
components: { List, FollowMe },
|
|
async asyncData ({ $axios, params, store }) {
|
|
// get metadata just in case we are not coming from home
|
|
if (store.state.tags.length) { return }
|
|
const { tags, places } = await $axios.$get('/event/meta')
|
|
store.commit('update', { tags, places })
|
|
},
|
|
data () {
|
|
return {
|
|
type: 'rss',
|
|
notification: { email: '' },
|
|
list: { title: 'Gancio' }
|
|
}
|
|
},
|
|
computed: {
|
|
...mapState(['filters', 'events', 'settings']),
|
|
...mapGetters(['filteredEvents']),
|
|
domain () {
|
|
const URL = url.parse(this.settings.baseurl)
|
|
return URL.hostname
|
|
},
|
|
listScript () {
|
|
const params = []
|
|
if (this.list.title) {
|
|
params.push(`title=${this.list.title}`)
|
|
}
|
|
|
|
if (this.filters.places.length) {
|
|
params.push(`places=${this.filters.places.map(p => p.id)}`)
|
|
}
|
|
|
|
if (this.filters.tags.length) {
|
|
params.push(`tags=${this.filters.tags.map(t => t.id)}`)
|
|
}
|
|
|
|
return `<iframe style='border: 0px; width: 100%;' src="${this.settings.baseurl}/embed/list?${params.join('&')}"></iframe>`
|
|
},
|
|
link () {
|
|
const tags = this.filters.tags.join(',')
|
|
const places = this.filters.places.join(',')
|
|
let query = ''
|
|
if (tags || places) {
|
|
query = '?'
|
|
if (tags) {
|
|
query += 'tags=' + tags
|
|
if (places) { query += '&places=' + places }
|
|
} else {
|
|
query += 'places=' + places
|
|
}
|
|
}
|
|
|
|
return `${this.settings.baseurl}/feed/${this.type}${query}`
|
|
},
|
|
showLink () {
|
|
return (['rss', 'ics'].includes(this.type))
|
|
}
|
|
},
|
|
methods: {
|
|
copyLink () {
|
|
// Message({ message: this.$t('common.copied'), type: 'success', showClose: true })
|
|
this.$root.$emit('message', { message: this.$t('common.feed_url_copied') })
|
|
},
|
|
add_notification () {
|
|
if (!this.notification.email) {
|
|
// Message({ message: 'Inserisci una mail', showClose: true, type: 'error' })
|
|
// return this.$refs.email.focus()
|
|
}
|
|
// await api.addNotification({ ...this.notification, filters: this.filters})
|
|
// this.$refs.modal.hide()
|
|
// Message({ message: this.$t('email_notification_activated'), showClose: true, type: 'success' })
|
|
},
|
|
imgPath (event) {
|
|
return event.image_path && event.image_path
|
|
}
|
|
},
|
|
head () {
|
|
return {
|
|
title: `${this.settings.title} - ${this.$t('common.export')}`
|
|
}
|
|
}
|
|
}
|
|
</script>
|