Files
gancio/client/src/components/Export.vue

100 lines
3.4 KiB
Vue
Raw Normal View History

2019-02-26 01:17:52 +01:00
<template lang="pug">
b-modal(hide-footer hide-header
2019-02-26 12:37:51 +01:00
@hide='$router.replace("/")' size='lg' :visible='true' v-if='type')
2019-02-26 01:17:52 +01:00
h3.text-center Export {{type}}
b-input-group.mb-2(v-if='showLink')
b-form-input( v-model='link' autocomplete='off')
b-input-group-append
b-button(variant="success" v-clipboard:copy="link") <v-icon name='clipboard'/> Copy
p {{$t('export_intro')}}
p(v-html='$t(`export_${type}_explanation`)')
li(v-if='filters.tags.length') {{$t('Tags')}} ->
b-badge.ml-1(v-for='tag in filters.tags') {{tag}}
li(v-if='filters.places.length') {{$t('Places')}}
b-badge.ml-1(v-for='place in filters.places') {{place}}
b-form(v-if="type==='email'")
el-switch(v-model='mail.sendOnInsert' :active-text="$t('notify_on_insert')")
br
el-switch(v-model='mail.reminder' :active-text="$t('send_reminder')")
b-form-input.mt-1(v-model='mail.mail' :placeholder="$t('Insert your address')")
b-button.mt-1.float-right(variant='success' @click='activate_email') {{$t('Send')}}
2019-02-26 12:37:51 +01:00
b-form(v-if="type==='embed'" style='max-width: 400px;')
el-switch(v-model='export_list' :active-text="$t('export_list')")
b-card(v-if='export_list' no-body header='Eventi')
b-list-group(flush)
b-list-group-item.flex-column.align-items-start(v-for="event in filteredEvents"
:href='`/event/${event.id}`')
b-media
img(v-if='event.image_path' slot="aside" :src="imgPath(event)" alt="Media Aside" style='max-height: 60px')
small.float-right {{event.start_datetime|short_datetime}}
h5.mb-1 {{event.title}}
small.mb-1 {{event.description}}
b-badge.float-right.ml-1(v-for='tag in event.tags') {{tag.tag}}
small.float-right(v-b-popover.hover='event.place.address') {{event.place.name}}
Calendar(v-else)
2019-02-26 01:17:52 +01:00
</template>
<script>
import { mapState } from 'vuex'
import config from '../../config'
import path from 'path'
2019-02-26 12:37:51 +01:00
import filters from '../filters'
import Calendar from '@/components/Calendar'
import {intersection} from 'lodash'
2019-02-26 01:17:52 +01:00
export default {
name: 'Export',
2019-02-26 12:37:51 +01:00
components: { Calendar },
2019-02-26 01:17:52 +01:00
data () {
return {
type: '',
link: '',
2019-02-26 12:37:51 +01:00
mail: {},
export_list: true
2019-02-26 01:17:52 +01:00
}
},
2019-02-26 12:37:51 +01:00
filters,
2019-02-26 01:17:52 +01:00
mounted () {
this.type = this.$route.params.type
this.link = this.loadLink()
if (this.type === 'email' && this.logged) {
this.mail.mail = this.user.email
}
},
methods: {
activate_email () {
this.$router.go(-1)
},
loadLink () {
const filters = this.filters.tags.join(',')
return `${config.apiurl}/export/${this.type}/${filters}`
2019-02-26 12:37:51 +01:00
},
imgPath (event) {
return event.image_path && config.apiurl + '/../' + event.image_path
},
2019-02-26 01:17:52 +01:00
},
computed: {
2019-02-26 12:37:51 +01:00
...mapState(['filters', 'user', 'logged', 'events']),
filteredEvents () {
if (!this.filters.tags.length && !this.filters.places.length) return this.events
return this.events.filter(e => {
if (this.filters.tags.length) {
const m = intersection(e.tags.map(t => t.tag), this.filters.tags)
if (m.length>0) return true
}
if (this.filters.places.length) {
if (this.filters.places.find(p => p === e.place.name))
return true
}
return 0
})
},
2019-02-26 01:17:52 +01:00
showLink () {
return (['feed', 'ics'].indexOf(this.type)>-1)
},
}
}
</script>