gancio-upstream/pages/event/_slug.vue

375 lines
15 KiB
Vue
Raw Normal View History

2019-04-03 00:25:12 +02:00
<template lang="pug">
2021-06-05 00:51:53 +02:00
v-container#event.pa-0.pa-sm-2
2020-10-14 21:13:20 +02:00
//- EVENT PAGE
//- gancio supports microformats (http://microformats.org/wiki/h-event)
2022-05-09 16:32:06 +02:00
//- and microdata https://schema.org/Event
2022-01-24 14:12:41 +01:00
v-card.h-event(itemscope itemtype="https://schema.org/Event")
2020-10-09 00:42:03 +02:00
v-card-text
2020-10-09 00:42:03 +02:00
v-row
2022-05-06 23:26:09 +02:00
v-col.col-12.col-md-8
2022-04-27 12:34:58 +02:00
MyPicture(v-if='hasMedia' :event='event')
2022-01-24 14:12:41 +01:00
.p-description.text-body-1.pa-3.rounded(v-if='!hasMedia && event.description' itemprop='description' v-html='event.description')
2021-01-25 01:17:25 +01:00
2022-05-06 23:26:09 +02:00
v-col.col-12.col-md-4
2022-02-26 21:19:59 +01:00
v-card(outlined)
2021-03-10 16:09:59 +01:00
v-card-text
v-icon.float-right(v-if='event.parentId' color='success' v-text='mdiRepeat')
.title.text-h5
2022-06-01 14:15:16 +02:00
strong.p-name.text--primary(itemprop="name") {{event.title}}
v-divider
v-card-text
time.dt-start.text-button(:datetime='event.start_datetime|unixFormat("YYYY-MM-DD HH:mm")' itemprop="startDate" :content="event.start_datetime|unixFormat('YYYY-MM-DDTHH:mm')")
v-icon(v-text='mdiCalendar' small)
2022-06-01 14:15:16 +02:00
strong.ml-2 {{event|when}}
2022-02-04 11:27:27 +01:00
.d-none.dt-end(itemprop="endDate" :content="event.end_datetime|unixFormat('YYYY-MM-DDTHH:mm')") {{event.end_datetime|unixFormat('YYYY-MM-DD HH:mm')}}
div.text-caption.mb-3 {{event.start_datetime|from}}
2021-01-11 00:17:56 +01:00
small(v-if='event.parentId') ({{event|recurrentDetail}})
2020-10-27 11:57:01 +01:00
2022-03-18 23:07:09 +01:00
.text-h6.p-location.h-adr(itemprop="location" itemscope itemtype="https://schema.org/Place")
v-icon(v-text='mdiMapMarker' small)
nuxt-link.vcard.ml-2.p-name.text-decoration-none.text-button(itemprop="name" :to='`/place/${encodeURIComponent(event.place.name})`') {{event.place && event.place.name}}
.text-caption.p-street-address(itemprop='address') {{event.place && event.place.address}}
2020-10-09 00:42:03 +02:00
2021-03-05 14:22:52 +01:00
//- tags, hashtags
2022-06-01 14:15:16 +02:00
v-card-text.pt-0(v-if='event.tags && event.tags.length')
v-chip.p-category.ml-1.mt-1(v-for='tag in event.tags' small label color='primary'
outlined :key='tag' :to='`/tag/${encodeURIComponent(tag)}`') {{tag}}
2021-03-05 14:22:52 +01:00
v-divider
2020-10-14 21:13:20 +02:00
//- info & actions
v-list(dense nav)
2022-11-29 16:35:39 +01:00
//- v-list-group(:append-icon='mdiChevronUp' :value='true')
//- template(v-slot:activator)
//- v-list-item.text-overline {{$t('common.actions')}}
//- copy link
v-list-item(@click='clipboard(`${settings.baseurl}/event/${event.slug || event.id}`)')
v-list-item-icon
v-icon(v-text='mdiContentCopy')
v-list-item-content
v-list-item-title(v-text="$t('common.copy_link')")
//- map
v-list-item(v-if='settings.allow_geolocation && event.place.latitude && event.place.longitude' @click="mapModal = true")
v-list-item-icon
v-icon(v-text='mdiMap')
v-list-item-content
v-list-item-title(v-text="$t('common.show_map')")
//- embed
v-list-item(@click='showEmbed=true')
v-list-item-icon
v-icon(v-text='mdiCodeTags')
v-list-item-content
v-list-item-title(v-text="$t('common.embed')")
//- calendar
v-list-item(:href='`/api/event/${event.slug || event.id}.ics`')
v-list-item-icon
v-icon(v-text='mdiCalendarExport')
v-list-item-content
v-list-item-title(v-text="$t('common.add_to_calendar')")
//- download flyer
v-list-item(v-if='hasMedia' :href='event | mediaURL("download")')
v-list-item-icon
v-icon(v-text='mdiFileDownloadOutline')
v-list-item-content
v-list-item-title(v-text="$t('event.download_flyer')")
v-divider
//- admin actions
eventAdmin(v-if='is_mine' :event='event')
2020-10-14 21:13:20 +02:00
2022-01-24 14:12:41 +01:00
.p-description.text-body-1.pa-3.rounded(v-if='hasMedia && event.description' itemprop='description' v-html='event.description')
2020-10-14 21:13:20 +02:00
//- resources from fediverse
#resources.mt-1(v-if='settings.enable_federation')
2021-07-19 12:16:16 +02:00
//- div.float-right(v-if='settings.hide_boosts')
2021-06-25 12:11:45 +02:00
//- small.mr-3 🔖 {{event.likes.length}}
//- small ✊ {{event.boost.length}}<br/>
2020-10-14 21:13:20 +02:00
2022-02-24 10:22:10 +01:00
v-dialog(v-model='showResources' max-width="900" width="900" :fullscreen='$vuetify.breakpoint.xsOnly'
destroy-on-close)
2021-06-28 12:49:53 +02:00
v-card
v-btn.ma-2(icon dark @click='showResources = false')
v-icon(v-text='mdiClose')
2022-02-24 10:22:10 +01:00
v-carousel.pa-5(:interval='10000'
:next-icon='mdiArrowRight'
:prev-icon='mdiArrowLeft'
ref='carousel' hide-delimiters v-model='currentAttachment'
2021-06-28 12:49:53 +02:00
height='100%' show-arrows-on-over)
2021-06-25 12:11:45 +02:00
v-carousel-item(v-for='attachment in selectedResource.data.attachment'
v-if='isImg(attachment)'
:key='attachment.url')
2022-02-24 10:22:10 +01:00
v-img(:src='attachment.url' contain max-height='90%')
2021-06-28 12:49:53 +02:00
v-card-actions.align-center.justify-center
span {{currentAttachmentLabel}}
2021-06-25 12:11:45 +02:00
2022-02-24 10:22:10 +01:00
v-card.mb-3.resources(v-if='settings.enable_resources' v-for='resource in event.resources'
2022-02-26 21:19:59 +01:00
:key='resource.id' elevation='10' :flat='resource.hidden' outlined)
2021-06-28 12:49:53 +02:00
v-card-title
2020-10-14 21:13:20 +02:00
v-menu(v-if='$auth.user && $auth.user.is_admin' offset-y)
2021-06-25 12:11:45 +02:00
template(v-slot:activator="{ on }")
v-btn.mr-2(v-on='on' color='primary' small icon)
v-icon(v-text='mdiDotsVertical')
2020-10-14 21:13:20 +02:00
v-list
v-list-item(v-if='!resource.hidden' @click='hideResource(resource, true)')
v-list-item-title <v-icon left v-text='mdiEyeOff'></v-icon> {{$t('admin.hide_resource')}}
2020-10-14 21:13:20 +02:00
v-list-item(v-else @click='hideResource(resource, false)')
v-list-item-title <v-icon left v-text='mdiEye'></v-icon> {{$t('admin.show_resource')}}
2020-10-14 21:13:20 +02:00
v-list-item(@click='deleteResource(resource)')
v-list-item-title <v-icon left v-text='mdiDelete'></v-icon> {{$t('admin.delete_resource')}}
2020-10-14 21:13:20 +02:00
v-list-item(@click='blockUser(resource)')
v-list-item-title <v-icon left v-text='mdiLock'></v-icon> {{$t('admin.block_user')}}
2020-10-14 21:13:20 +02:00
2022-02-26 21:19:59 +01:00
v-icon.mr-1(v-show='resource.hidden' v-text='mdiEyeOff')
2020-10-14 21:13:20 +02:00
a(:href='resource.data.url || resource.data.context')
small {{resource.data.published|dateFormat('ddd, D MMMM HH:mm')}}
2021-06-25 12:11:45 +02:00
v-card-text
2020-10-14 21:13:20 +02:00
div.mt-1(v-html='resource_filter(resource.data.content)')
2022-02-24 10:22:10 +01:00
div.d-flex.flex-wrap
span.mr-1(v-for='attachment in resource.data.attachment' :key='attachment.url')
audio(v-if='isAudio(attachment)' controls)
source(:src='attachment.url')
v-img.cursorPointer(v-if='isImg(attachment)' :src='attachment.url' @click='showResource(resource)'
max-height="250px"
max-width="250px"
contain :alt='attachment.name')
2020-10-14 21:13:20 +02:00
//- Next/prev arrow
2021-03-05 14:22:52 +01:00
.text-center.mt-5.mb-5
2020-10-14 21:13:20 +02:00
v-btn.mr-2(nuxt icon outlined color='primary'
:to='`/event/${event.prev}`' :disabled='!event.prev')
v-icon(v-text='mdiArrowLeft')
2020-10-14 21:13:20 +02:00
v-btn(nuxt bottom right outlined icon color='primary'
:to='`/event/${event.next}`' :disabled='!event.next')
v-icon(v-text='mdiArrowRight')
2020-10-14 21:13:20 +02:00
2021-12-02 11:14:53 +01:00
v-dialog(v-model='showEmbed' width='700px' :fullscreen='$vuetify.breakpoint.xsOnly')
2020-10-14 21:13:20 +02:00
EmbedEvent(:event='event' @close='showEmbed=false')
v-dialog(v-show='settings.allow_geolocation && event.place.latitude && event.place.longitude' v-model='mapModal' :fullscreen='$vuetify.breakpoint.xsOnly' destroy-on-close)
Map(:event='event' @close='mapModal=false')
2020-10-09 00:42:03 +02:00
2019-04-03 00:25:12 +02:00
</template>
<script>
2020-06-03 22:52:10 +02:00
import { mapState } from 'vuex'
2021-06-28 12:49:53 +02:00
import get from 'lodash/get'
2020-11-06 11:05:05 +01:00
import moment from 'dayjs'
import clipboard from '../../assets/clipboard'
2022-04-27 12:34:58 +02:00
import MyPicture from '~/components/MyPicture'
2022-06-01 14:15:16 +02:00
import EventAdmin from '@/components/eventAdmin'
import EmbedEvent from '@/components/embedEvent'
2022-05-03 18:03:41 +02:00
const { htmlToText } = require('html-to-text')
2019-04-03 00:25:12 +02:00
import { mdiArrowLeft, mdiArrowRight, mdiDotsVertical, mdiCodeTags, mdiClose, mdiMap,
2022-04-27 12:34:58 +02:00
mdiEye, mdiEyeOff, mdiDelete, mdiRepeat, mdiLock, mdiFileDownloadOutline,
mdiCalendarExport, mdiCalendar, mdiContentCopy, mdiMapMarker, mdiChevronUp } from '@mdi/js'
2019-04-03 00:25:12 +02:00
export default {
name: 'Event',
mixins: [clipboard],
components: {
2022-06-01 14:15:16 +02:00
EventAdmin,
EmbedEvent,
2022-09-18 23:15:22 +02:00
MyPicture,
[process.client && 'Map']: () => import('@/components/Map.vue')
},
2022-04-27 12:34:58 +02:00
async asyncData ({ $axios, params, error }) {
2020-01-15 23:55:19 +01:00
try {
2021-11-11 16:56:27 +01:00
const event = await $axios.$get(`/event/${params.slug}`)
return { event }
2020-01-15 23:55:19 +01:00
} catch (e) {
error({ statusCode: 404, message: 'Event not found' })
}
},
data () {
2019-10-20 14:23:28 +02:00
return {
2022-04-27 12:34:58 +02:00
mdiArrowLeft, mdiArrowRight, mdiDotsVertical, mdiCodeTags, mdiCalendarExport, mdiCalendar, mdiFileDownloadOutline,
mdiMapMarker, mdiContentCopy, mdiClose, mdiDelete, mdiEye, mdiEyeOff, mdiRepeat, mdiLock, mdiMap, mdiChevronUp,
2021-06-28 12:49:53 +02:00
currentAttachment: 0,
2021-03-05 14:22:52 +01:00
event: {},
diocane: '',
2019-10-30 15:01:34 +01:00
showEmbed: false,
2020-02-05 00:45:08 +01:00
showResources: false,
2022-09-18 23:15:22 +02:00
selectedResource: { data: { attachment: [] } },
mapModal: false
2019-10-20 14:23:28 +02:00
}
},
2020-01-15 23:55:19 +01:00
head () {
2019-11-06 11:33:36 +01:00
if (!this.event) {
return {}
}
2022-06-01 14:15:16 +02:00
const tags_feed = this.event.tags && this.event.tags.map(tag => ({
2019-11-06 11:33:36 +01:00
rel: 'alternate',
2019-10-28 17:33:20 +01:00
type: 'application/rss+xml',
title: `${this.settings.title} events tagged ${tag}`,
2019-11-06 11:33:36 +01:00
href: this.settings.baseurl + `/feed/rss?tags=${tag}`
}))
const place_feed = {
rel: 'alternate',
2019-10-28 17:33:20 +01:00
type: 'application/rss+xml',
2021-07-27 17:20:16 +02:00
title: `${this.settings.title} events @${this.event.place && this.event.place.name}`,
href: this.settings.baseurl + `/feed/rss?places=${this.event.place && this.event.place.id}`
2019-11-06 11:33:36 +01:00
}
2019-10-28 17:33:20 +01:00
return {
2019-08-07 19:15:15 +02:00
title: `${this.settings.title} - ${this.event.title}`,
meta: [
// hid is used as unique identifier. Do not use `vmid` for it as it will not work
2019-11-06 11:33:36 +01:00
{
hid: 'description',
2019-09-11 19:12:24 +02:00
name: 'description',
content: this.plainDescription
2019-11-06 11:33:36 +01:00
},
{
hid: 'og-description',
2019-09-11 19:12:24 +02:00
name: 'og:description',
content: this.plainDescription
2019-11-06 11:33:36 +01:00
},
2019-07-23 01:31:43 +02:00
{ hid: 'og-title', property: 'og:title', content: this.event.title },
2019-11-06 11:33:36 +01:00
{
hid: 'og-url',
property: 'og:url',
2021-04-14 01:30:51 +02:00
content: `${this.settings.baseurl}/event/${this.event.slug || this.event.id}`
2019-11-06 11:33:36 +01:00
},
2019-09-11 19:12:24 +02:00
{ property: 'og:type', content: 'event' },
2019-11-06 11:33:36 +01:00
{
property: 'og:image',
content: this.$options.filters.mediaURL(this.event)
2019-11-06 11:33:36 +01:00
},
2019-09-18 12:55:33 +02:00
{ property: 'og:site_name', content: this.settings.title },
2019-11-06 11:33:36 +01:00
{
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 },
2019-11-06 11:33:36 +01:00
{
property: 'twitter:image',
2022-10-27 14:58:49 +02:00
content: this.$options.filters.mediaURL(this.event)
2019-11-06 11:33:36 +01:00
},
{
property: 'twitter:description',
content: this.plainDescription
2019-11-06 11:33:36 +01:00
}
2019-09-17 18:16:59 +02:00
],
link: [
2022-10-27 14:58:49 +02:00
{ rel: 'image_src', href: this.$options.filters.mediaURL(this.event) },
2019-11-06 11:33:36 +01:00
{
rel: 'alternate',
type: 'application/rss+xml',
title: this.settings.title,
href: this.settings.baseurl + '/feed/rss'
},
2019-09-17 18:16:59 +02:00
...tags_feed,
place_feed
2019-10-28 17:33:20 +01:00
]
}
},
2019-04-03 00:25:12 +02:00
computed: {
...mapState(['settings']),
2021-07-19 12:16:16 +02:00
hasMedia () {
return this.event.media && this.event.media.length
},
plainDescription () {
2022-06-01 14:15:16 +02:00
return htmlToText(this.event.description && this.event.description.replace('\n', '').slice(0, 1000))
},
2021-06-28 12:49:53 +02:00
currentAttachmentLabel () {
return get(this.selectedResource, `data.attachment[${this.currentAttachment}].name`, '')
},
2020-01-15 23:55:19 +01:00
is_mine () {
2019-11-06 11:33:36 +01:00
if (!this.$auth.user) {
return false
}
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
},
mounted () {
window.addEventListener('keydown', this.keyDown)
},
destroyed () {
window.removeEventListener('keydown', this.keyDown)
},
2019-04-03 00:25:12 +02:00
methods: {
2021-06-25 12:11:45 +02:00
isImg (attachment) {
const type = attachment.mediaType.split('/')[0]
return type === 'image'
},
isAudio (attachment) {
const type = attachment.mediaType.split('/')[0]
return type === 'audio'
},
keyDown (ev) {
2021-01-22 21:16:22 +01:00
if (ev.altKey || ev.ctrlKey || ev.metaKey || ev.shiftKey) { return }
if (ev.key === 'ArrowRight' && this.event.next) {
2021-03-05 14:22:52 +01:00
this.$router.replace(`/event/${this.event.next}`)
}
if (ev.key === 'ArrowLeft' && this.event.prev) {
2021-03-05 14:22:52 +01:00
this.$router.replace(`/event/${this.event.prev}`)
}
},
2020-02-05 00:45:08 +01:00
showResource (resource) {
this.showResources = true
this.selectedResource = resource
2021-06-25 12:11:45 +02:00
// document.getElementById('resourceDialog').focus()
2020-02-05 00:45:08 +01:00
},
2019-12-04 01:18:05 +01:00
async hideResource (resource, hidden) {
await this.$axios.$put(`/resources/${resource.id}`, { hidden })
resource.hidden = hidden
},
2019-12-04 01:18:05 +01:00
async blockUser (resource) {
2020-02-05 00:45:08 +01:00
try {
2020-10-07 11:12:13 +02:00
const ret = await this.$root.$confirm('admin.user_block_confirm', { user: resource.ap_user.ap_id })
if (!ret) { return }
2020-02-05 00:45:08 +01:00
await this.$axios.post('/instances/toggle_user_block', { ap_id: resource.ap_user.ap_id })
2020-10-07 11:12:13 +02:00
this.$root.$message('admin.user_blocked', { user: resource.ap_user.ap_id, color: 'success' })
2020-02-05 00:45:08 +01:00
} catch (e) { }
},
async deleteResource (resource) {
try {
2020-10-07 11:12:13 +02:00
const ret = await this.$root.$confirm('admin.delete_resource_confirm')
if (!ret) { return }
2020-01-15 23:55:19 +01:00
await this.$axios.delete(`/resources/${resource.id}`)
this.event.resources = this.event.resources.filter(r => r.id !== resource.id)
2020-02-05 00:45:08 +01:00
} catch (e) { }
},
2020-01-15 23:55:19 +01:00
copyLink () {
2020-10-07 11:12:13 +02:00
this.$root.$message('common.copied', { color: 'success' })
2019-10-20 14:23:28 +02:00
},
2020-02-05 00:45:08 +01:00
// TOFIX
2020-01-15 23:55:19 +01:00
resource_filter (value) {
2019-11-06 11:33:36 +01:00
return value.replace(
/<a.*href="([^">]+).*>(?:.(?!<\/a>))*.<\/a>/,
(orig, url) => {
// get extension
const ext = url.slice(-4)
if (['.mp3', '.ogg'].includes(ext)) {
return `<audio controls><source src='${url}'></audio>`
} else {
return orig
}
2019-04-30 01:04:24 +02:00
}
2019-11-06 11:33:36 +01:00
)
2019-10-28 17:33:20 +01:00
}
2019-04-03 00:25:12 +02:00
}
}
2022-09-05 13:03:35 +02:00
</script>
2022-11-24 17:30:55 +01:00