2019-04-03 00:25:12 +02:00
|
|
|
<template lang="pug">
|
2019-10-20 14:23:28 +02:00
|
|
|
el-main#eventDetail
|
2019-05-30 12:04:14 +02:00
|
|
|
|
2019-10-22 23:49:21 +02:00
|
|
|
.head
|
|
|
|
nuxt-link.mr-2(to='/')
|
|
|
|
img#logo(src='/favicon.ico')
|
2019-05-30 12:04:14 +02:00
|
|
|
|
2019-10-22 23:49:21 +02:00
|
|
|
span.title {{event.title}}
|
2019-07-23 01:31:43 +02:00
|
|
|
|
2019-10-22 23:49:21 +02:00
|
|
|
div.float-right
|
|
|
|
nuxt-link.mr-1(:to='`/event/${prev}`')
|
|
|
|
el-button(circle plain size='small' icon='el-icon-arrow-left' :disabled='!prev')
|
|
|
|
nuxt-link(:to='`/event/${next}`')
|
|
|
|
el-button(circle plain size='small' :disabled='!next' icon='el-icon-arrow-right')
|
2019-05-30 12:04:14 +02:00
|
|
|
|
2019-10-22 23:49:21 +02:00
|
|
|
el-row
|
2019-10-22 01:12:36 +02:00
|
|
|
el-col(:md='18')
|
2019-10-22 23:49:21 +02:00
|
|
|
//- event image
|
2019-10-20 14:23:28 +02:00
|
|
|
img.main.mb-3(:src='imgPath' v-if='event.image_path')
|
2019-10-22 23:49:21 +02:00
|
|
|
//- info for mobile screen
|
2019-10-22 01:12:36 +02:00
|
|
|
div.d-block.d-lg-none
|
2019-11-03 00:55:55 +01:00
|
|
|
span <b>{{event|when}}</b>, <small>{{event|to}}</small><br/>
|
2019-10-22 01:12:36 +02:00
|
|
|
span <b>{{event.place.name}}</b> - {{event.place.address}}
|
|
|
|
hr
|
2019-06-26 14:44:21 +02:00
|
|
|
pre(v-html='$options.filters.linkify(event.description)')
|
2019-10-20 14:23:28 +02:00
|
|
|
el-tag.mr-1.mb-1(v-for='tag in event.tags'
|
2019-10-26 00:35:33 +02:00
|
|
|
size='mini' :key='tag') {{tag}}
|
2019-05-30 12:04:14 +02:00
|
|
|
|
2019-10-22 23:49:21 +02:00
|
|
|
//- info & actions for desktop
|
2019-11-03 00:55:55 +01:00
|
|
|
el-dialog.embedDialog(:visible.sync='showEmbed')
|
|
|
|
h4(slot='title') {{$t('common.embed_title')}}
|
2019-10-30 15:01:34 +01:00
|
|
|
EmbedEvent(:event='event')
|
2019-10-22 01:12:36 +02:00
|
|
|
el-col.d-none.d-lg-block(:md='6')
|
2019-10-22 23:49:21 +02:00
|
|
|
el-menu.menu.mt-2
|
2019-11-03 00:55:55 +01:00
|
|
|
p <i class='el-icon-watch'></i> <b>{{event|when}}</b> <br/><small>{{event|to}}</small>
|
|
|
|
p <i class='el-icon-map-location'></i> <b>{{event.place.name}}</b> - {{event.place.address}}
|
2019-10-20 14:23:28 +02:00
|
|
|
el-divider {{$t('common.actions')}}
|
2019-10-30 15:01:34 +01:00
|
|
|
el-menu-item(
|
|
|
|
v-clipboard:success='copyLink'
|
2019-10-20 14:23:28 +02:00
|
|
|
v-clipboard:copy='`${settings.baseurl}/event/${event.id}`') <i class='el-icon-paperclip'></i> {{$t('common.copy_link')}}
|
2019-10-30 15:01:34 +01:00
|
|
|
|
2019-11-03 00:55:55 +01:00
|
|
|
el-menu-item(@click='showEmbed=true') <i class='el-icon-copy-document'></i> {{$t('common.embed')}}
|
2019-10-30 15:01:34 +01:00
|
|
|
|
2019-10-22 23:49:21 +02:00
|
|
|
//- TODO (ics of recurrent events)
|
|
|
|
el-menu-item(v-if='!event.recurrent')
|
2019-11-03 00:55:55 +01:00
|
|
|
a.d-block(:href='`${settings.baseurl}/api/event/${event.id}.ics`') <i class='el-icon-date'></i> {{$t('common.add_to_calendar')}}
|
2019-10-22 01:12:36 +02:00
|
|
|
EventAdmin(v-if='is_mine' :event='event')
|
2019-10-20 14:23:28 +02:00
|
|
|
hr
|
2019-10-22 01:12:36 +02:00
|
|
|
|
|
|
|
.d-block.d-lg-none
|
|
|
|
el-button(plain size='mini' type='primary' v-clipboard:success='copyLink'
|
|
|
|
v-clipboard:copy='`${settings.baseurl}/event/${event.id}`') <i class='el-icon-paperclip'></i> {{$t('common.copy_link')}}
|
2019-11-03 00:55:55 +01:00
|
|
|
a.el-button.el-button--success.el-button--mini.is-plain(role='button' plain size='mini' type='success'
|
|
|
|
:href='`${settings.baseurl}/api/event/${event.id}.ics`') <i class='el-icon-date'></i> {{$t('common.add_to_calendar')}}
|
|
|
|
|
2019-10-20 14:23:28 +02:00
|
|
|
//- comments from fediverse
|
|
|
|
#comments(v-if='settings.enable_federation')
|
2019-10-20 20:59:59 +02:00
|
|
|
div.float-right(v-if='!settings.disable_gamification')
|
|
|
|
small.mr-3 🔖 {{event.likes.length}}
|
|
|
|
small ✊ {{event.boost.length}}<br/>
|
2019-06-26 18:37:02 +02:00
|
|
|
|
2019-10-28 17:33:20 +01:00
|
|
|
strong(v-if='settings.enable_comments') {{$tc('common.comments', event.comments.length)}} -
|
2019-10-20 20:59:59 +02:00
|
|
|
small {{$t('event.interact_with_me_at')}} <u>{{fedi_user}}@{{settings.baseurl|url2host}}</u>
|
|
|
|
|
|
|
|
.card-header(v-if='settings.enable_comments' v-for='comment in event.comments' :key='comment.id')
|
2019-10-20 14:23:28 +02:00
|
|
|
a.float-right(:href='comment.data.url')
|
2019-10-24 00:37:01 +02:00
|
|
|
small {{comment.data.published|datetime}}
|
2019-10-20 14:23:28 +02:00
|
|
|
div.mt-1(v-html='comment_filter(comment.data.content)')
|
|
|
|
img(v-for='img in comment.data.media_attachments' :src='img.url')
|
2019-05-30 12:04:14 +02:00
|
|
|
|
2019-04-03 00:25:12 +02:00
|
|
|
</template>
|
|
|
|
<script>
|
2019-10-28 17:33:20 +01:00
|
|
|
import { mapState, mapGetters } from 'vuex'
|
2019-10-22 01:12:36 +02:00
|
|
|
import EventAdmin from './eventAdmin'
|
2019-10-30 15:01:34 +01:00
|
|
|
import EmbedEvent from './embedEvent'
|
|
|
|
import { Message } from 'element-ui'
|
|
|
|
|
2019-09-18 12:55:33 +02:00
|
|
|
import moment from 'dayjs'
|
2019-04-03 00:25:12 +02:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Event',
|
2019-09-18 12:55:33 +02:00
|
|
|
transition: null,
|
2019-10-30 15:01:34 +01:00
|
|
|
components: { EventAdmin, EmbedEvent },
|
2019-10-20 14:23:28 +02:00
|
|
|
data () {
|
|
|
|
return {
|
2019-10-30 15:01:34 +01:00
|
|
|
showEmbed: false,
|
2019-10-20 14:23:28 +02:00
|
|
|
copied: false
|
|
|
|
}
|
|
|
|
},
|
2019-04-29 00:27:29 +02:00
|
|
|
head () {
|
2019-09-11 19:12:24 +02:00
|
|
|
if (!this.event) { return {} }
|
2019-10-28 17:33:20 +01:00
|
|
|
const tags_feed = this.event.tags.map(tag => ({ rel: 'alternate',
|
|
|
|
type: 'application/rss+xml',
|
|
|
|
title: `${this.settings.title} events tagged ${tag}`,
|
|
|
|
href: this.settings.baseurl + `/feed/rss?tags=${tag}` }))
|
|
|
|
const place_feed = { rel: 'alternate',
|
|
|
|
type: 'application/rss+xml',
|
|
|
|
title: `${this.settings.title} events @${this.event.place.name}`,
|
|
|
|
href: this.settings.baseurl + `/feed/rss?places=${this.event.placeId}` }
|
|
|
|
|
2019-04-29 00:27:29 +02:00
|
|
|
return {
|
2019-08-07 19:15:15 +02:00
|
|
|
title: `${this.settings.title} - ${this.event.title}`,
|
2019-04-29 00:27:29 +02:00
|
|
|
meta: [
|
|
|
|
// hid is used as unique identifier. Do not use `vmid` for it as it will not work
|
2019-09-11 19:12:24 +02:00
|
|
|
{ hid: 'description',
|
|
|
|
name: 'description',
|
2019-10-28 17:33:20 +01:00
|
|
|
content: this.event.description.replace('\n', '').slice(0, 1000) },
|
2019-09-11 19:12:24 +02:00
|
|
|
{ hid: 'og-description',
|
|
|
|
name: 'og:description',
|
2019-10-28 17:33:20 +01:00
|
|
|
content: this.event.description.replace('\n', '').slice(0, 100) },
|
2019-07-23 01:31:43 +02:00
|
|
|
{ hid: 'og-title', property: 'og:title', content: this.event.title },
|
2019-09-18 12:55:33 +02:00
|
|
|
{ hid: 'og-url', property: 'og:url', content: `${this.settings.baseurl}/event/${this.event.id}` },
|
2019-09-11 19:12:24 +02:00
|
|
|
{ property: 'og:type', content: 'event' },
|
2019-09-27 16:17:00 +02:00
|
|
|
{ property: 'og:image', content: `${this.settings.baseurl}${this.imgPath}` },
|
2019-09-18 12:55:33 +02:00
|
|
|
{ property: 'og:site_name', content: this.settings.title },
|
|
|
|
{ property: 'og:updated_time', content: moment.unix(this.event.start_datetime).format() },
|
|
|
|
{ property: 'article:published_time', content: moment.unix(this.event.start_datetime).format() },
|
2019-10-28 17:33:20 +01:00
|
|
|
{ property: 'article:section', content: 'event' },
|
|
|
|
{ property: 'twitter:card', content: 'summary' },
|
2019-09-18 12:55:33 +02:00
|
|
|
{ property: 'twitter:title', content: this.event.title },
|
|
|
|
{ property: 'twitter:image', content: `${this.settings.baseurl}${this.imgPath}` },
|
2019-10-28 17:33:20 +01:00
|
|
|
{ property: 'twitter:description', content: this.event.description.replace('\n', '').slice(0, 100) }
|
2019-09-17 18:16:59 +02:00
|
|
|
],
|
|
|
|
link: [
|
2019-09-27 16:17:00 +02:00
|
|
|
{ rel: 'image_src', href: `${this.settings.baseurl}${this.imgPath}` },
|
2019-09-17 18:16:59 +02:00
|
|
|
{ rel: 'alternate', type: 'application/rss+xml', title: this.settings.title, href: this.settings.baseurl + '/feed/rss' },
|
|
|
|
...tags_feed,
|
|
|
|
place_feed
|
2019-10-28 17:33:20 +01:00
|
|
|
]
|
2019-04-29 00:27:29 +02:00
|
|
|
}
|
|
|
|
},
|
2019-10-24 00:37:01 +02:00
|
|
|
async asyncData ({ $axios, params, error, store }) {
|
2019-07-04 01:09:35 +02:00
|
|
|
try {
|
2019-07-23 01:31:43 +02:00
|
|
|
const [ id, start_datetime ] = params.id.split('_')
|
|
|
|
const event = await $axios.$get(`/event/${id}`)
|
2019-08-07 19:15:15 +02:00
|
|
|
event.start_datetime = start_datetime ? Number(start_datetime) : event.start_datetime
|
2019-10-24 00:37:01 +02:00
|
|
|
const now = new Date()
|
|
|
|
const events = await $axios.$get(`/event/${now.getMonth()}/${now.getFullYear()}`)
|
|
|
|
store.commit('setEvents', events)
|
2019-08-07 19:15:15 +02:00
|
|
|
return { event, id: Number(id) }
|
2019-09-11 19:12:24 +02:00
|
|
|
} catch (e) {
|
|
|
|
error({ statusCode: 404, message: 'Event not found' })
|
|
|
|
}
|
|
|
|
},
|
2019-04-03 00:25:12 +02:00
|
|
|
computed: {
|
2019-05-30 12:04:14 +02:00
|
|
|
...mapGetters(['filteredEvents']),
|
2019-06-12 23:41:19 +02:00
|
|
|
...mapState(['settings']),
|
2019-09-26 22:46:04 +02:00
|
|
|
fedi_user () {
|
|
|
|
// TODO:
|
|
|
|
return this.settings.fedi_admin
|
|
|
|
},
|
2019-05-30 12:04:14 +02:00
|
|
|
next () {
|
|
|
|
let found = false
|
2019-07-23 01:31:43 +02:00
|
|
|
const event = this.filteredEvents.find(e => {
|
2019-09-11 19:12:24 +02:00
|
|
|
if (found) { return e }
|
2019-08-07 19:15:15 +02:00
|
|
|
found = (e.start_datetime === this.event.start_datetime && e.id === this.event.id)
|
2019-05-30 12:04:14 +02:00
|
|
|
})
|
2019-09-11 19:12:24 +02:00
|
|
|
if (!event) { return false }
|
2019-07-23 01:31:43 +02:00
|
|
|
if (event.recurrent) {
|
2019-07-27 13:05:02 +02:00
|
|
|
return `${event.id}_${event.start_datetime}`
|
2019-07-23 01:31:43 +02:00
|
|
|
}
|
|
|
|
return event.id
|
2019-09-11 19:12:24 +02:00
|
|
|
},
|
2019-05-30 12:04:14 +02:00
|
|
|
prev () {
|
2019-07-23 01:31:43 +02:00
|
|
|
let event = false
|
2019-05-30 12:04:14 +02:00
|
|
|
this.filteredEvents.find(e => {
|
2019-09-11 19:12:24 +02:00
|
|
|
if (e.start_datetime === this.event.start_datetime && e.id === this.event.id) { return true }
|
2019-07-23 01:31:43 +02:00
|
|
|
event = e
|
2019-05-30 12:04:14 +02:00
|
|
|
})
|
2019-09-11 19:12:24 +02:00
|
|
|
if (!event) { return false }
|
2019-07-23 01:31:43 +02:00
|
|
|
if (event.recurrent) {
|
2019-07-27 13:05:02 +02:00
|
|
|
return `${event.id}_${event.start_datetime}`
|
2019-07-23 01:31:43 +02:00
|
|
|
}
|
2019-09-11 19:12:24 +02:00
|
|
|
return event.id
|
2019-05-30 12:04:14 +02:00
|
|
|
},
|
2019-04-03 00:25:12 +02:00
|
|
|
imgPath () {
|
2019-04-29 00:27:29 +02:00
|
|
|
return this.event.image_path && '/media/' + this.event.image_path
|
2019-09-11 19:12:24 +02:00
|
|
|
},
|
2019-10-22 01:12:36 +02:00
|
|
|
is_mine () {
|
2019-09-11 19:12:24 +02:00
|
|
|
if (!this.$auth.user) { return false }
|
2019-04-29 00:27:29 +02:00
|
|
|
return this.event.userId === this.$auth.user.id || this.$auth.user.is_admin
|
2019-09-11 19:12:24 +02:00
|
|
|
}
|
2019-04-03 00:25:12 +02:00
|
|
|
},
|
|
|
|
methods: {
|
2019-10-20 14:23:28 +02:00
|
|
|
copyLink () {
|
2019-10-30 15:01:34 +01:00
|
|
|
Message({ message: this.$t('common.copied'), type: 'success' })
|
2019-10-20 14:23:28 +02:00
|
|
|
},
|
2019-04-30 01:04:24 +02:00
|
|
|
comment_filter (value) {
|
2019-10-28 17:33:20 +01:00
|
|
|
return value.replace(/<a.*href="([^">]+).*>(?:.(?!<\/a>))*.<\/a>/, (orig, url) => {
|
2019-04-30 01:04:24 +02:00
|
|
|
// get extension
|
|
|
|
const ext = url.slice(-4)
|
2019-09-11 19:12:24 +02:00
|
|
|
if (['.mp3', '.ogg'].includes(ext)) {
|
2019-04-30 01:04:24 +02:00
|
|
|
return `<audio controls><source src='${url}'></audio>`
|
|
|
|
} else {
|
|
|
|
return orig
|
|
|
|
}
|
|
|
|
})
|
2019-10-28 17:33:20 +01:00
|
|
|
}
|
2019-04-03 00:25:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
2019-05-30 12:04:14 +02:00
|
|
|
<style lang='less'>
|
2019-04-23 15:45:52 +02:00
|
|
|
|
2019-05-30 12:04:14 +02:00
|
|
|
#eventDetail {
|
2019-10-22 23:49:21 +02:00
|
|
|
background-color: white;
|
|
|
|
margin-bottom: 30px;
|
2019-10-26 00:03:11 +02:00
|
|
|
padding-top: 0px;
|
|
|
|
|
2019-10-30 15:01:34 +01:00
|
|
|
.embedDialog {
|
|
|
|
.el-dialog {
|
|
|
|
min-height: 500px;
|
|
|
|
max-width: 1000px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-22 23:49:21 +02:00
|
|
|
.head {
|
|
|
|
z-index: 1;
|
|
|
|
position: sticky;
|
|
|
|
top: 0px;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
background-color: white;
|
|
|
|
border-bottom: 1px solid #e6e6e6;
|
|
|
|
}
|
|
|
|
|
2019-10-20 14:23:28 +02:00
|
|
|
.menu {
|
|
|
|
border-right: none;
|
|
|
|
border-left: 1px solid #e6e6e6;
|
|
|
|
p {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
2019-10-22 01:12:36 +02:00
|
|
|
max-width: 80%;
|
|
|
|
max-height: 0.1rem;
|
|
|
|
overflow: hidden;
|
2019-10-20 14:23:28 +02:00
|
|
|
font-size: 1.6rem;
|
|
|
|
color: #404246;
|
|
|
|
line-height: 1;
|
|
|
|
}
|
2019-04-30 01:04:24 +02:00
|
|
|
|
2019-05-30 12:04:14 +02:00
|
|
|
pre {
|
|
|
|
color: #404246;
|
|
|
|
font-size: 1em;
|
|
|
|
font-family: BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Arial,sans-serif !important;
|
|
|
|
}
|
2019-04-30 01:04:24 +02:00
|
|
|
|
2019-05-30 12:04:14 +02:00
|
|
|
img {
|
2019-10-22 01:12:36 +02:00
|
|
|
max-height: 88vh;
|
2019-05-30 12:04:14 +02:00
|
|
|
object-fit: contain;
|
2019-06-26 18:37:02 +02:00
|
|
|
&.main {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#comments {
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2019-07-05 23:58:47 +02:00
|
|
|
.invisible {
|
|
|
|
visibility: visible !important;
|
|
|
|
}
|
2019-05-30 12:04:14 +02:00
|
|
|
}
|
|
|
|
.nextprev {
|
|
|
|
font-size: 10px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
2019-04-03 00:25:12 +02:00
|
|
|
}
|
|
|
|
|
2019-05-30 12:04:14 +02:00
|
|
|
@media only screen and (max-width: 768px) {
|
|
|
|
#eventDetail {
|
2019-10-22 01:12:36 +02:00
|
|
|
.menu {
|
|
|
|
border: 0px;
|
|
|
|
}
|
2019-05-30 12:04:14 +02:00
|
|
|
}
|
2019-04-03 00:25:12 +02:00
|
|
|
}
|
2019-05-30 12:04:14 +02:00
|
|
|
|
2019-04-03 00:25:12 +02:00
|
|
|
</style>
|