gancio/pages/event/_id.vue

327 lines
12 KiB
Vue
Raw Normal View History

2019-04-03 00:25:12 +02:00
<template lang="pug">
2020-10-16 14:16:47 +02:00
v-container
2020-10-14 21:13:20 +02:00
//- EVENT PAGE
//- gancio supports microformats (http://microformats.org/wiki/h-event)
2021-01-11 00:17:56 +01:00
v-card.h-event
2020-10-14 21:13:20 +02:00
v-card-text
2020-07-25 21:41:22 +02:00
2020-10-27 11:57:01 +01:00
//- admin controls
2020-10-09 00:42:03 +02:00
EventAdmin(v-if='is_mine' :event='event')
v-row
2020-10-16 14:16:47 +02:00
v-col.col-12.col-lg-8
2020-10-09 00:42:03 +02:00
v-img.main_image.mb-3(
contain
:src='imgPath'
:lazy-src='thumbImgPath'
v-if='event.image_path')
//- template(v-slot:placeholder)
//- v-row(
//- class="fill-height ma-0"
//- align="center"
//- justify="center")
//- v-progress-circular(indeterminate
//- color="grey lighten-5")
2020-10-16 14:16:47 +02:00
v-col.col-12.col-lg-4
2020-10-09 00:42:03 +02:00
v-card(color='secondary')
v-card-text.white--text
2020-10-16 14:16:47 +02:00
.title.text-h5
b.p-name {{event.title}}
2021-01-22 21:16:22 +01:00
time.dt-start.text-h6(:datetime='event.start_datetime|unixFormat("YYYY-MM-DD HH:mm")')
2020-10-09 00:42:03 +02:00
v-icon mdi-calendar
b.ml-2 {{event|when}}
2021-01-11 00:17:56 +01:00
div.subtitle-1 {{event.start_datetime|from}}
small(v-if='event.parentId') ({{event|recurrentDetail}})
2020-10-27 11:57:01 +01:00
2021-01-22 21:16:22 +01:00
.text-h6.p-location
2020-10-09 00:42:03 +02:00
v-icon mdi-map-marker
2020-10-10 00:40:47 +02:00
b.vcard.ml-2 {{event.place.name}}
p.adr {{event.place.address}}
2020-10-09 00:42:03 +02:00
2020-10-14 21:13:20 +02:00
//- info & actions
2020-10-16 14:16:47 +02:00
v-toolbar
v-tooltip(bottom) {{$t('common.copy_link')}}
template(v-slot:activator="{on, attrs} ")
v-btn.ml-2(large icon v-on='on' color='primary'
v-clipboard:success='copyLink'
v-clipboard:copy='`${settings.baseurl}/event/${event.id}`')
v-icon mdi-content-copy
v-tooltip(bottom) {{$t('common.embed')}}
template(v-slot:activator="{on, attrs} ")
v-btn.ml-2(large icon v-on='on' @click='showEmbed=true' color='primary')
v-icon mdi-code-tags
v-tooltip(bottom) {{$t('common.add_to_calendar')}}
template(v-slot:activator="{on, attrs} ")
v-btn.ml-2(large icon v-on='on' color='primary'
:href='`/api/event/${event.id}.ics`')
v-icon mdi-calendar-export
2020-10-14 21:13:20 +02:00
2021-01-22 21:16:22 +01:00
.p-description.text-body-1.px-5(v-html='event.description')
2020-10-14 21:13:20 +02:00
v-chip.p-category.ml-1(v-for='tag in event.tags' color='primary'
outlined :key='tag' v-text='tag')
//- resources from fediverse
#resources.mt-1(v-if='settings.enable_federation')
div.float-right(v-if='!settings.hide_boosts')
small.mr-3 🔖 {{event.likes.length}}
small {{event.boost.length}}<br/>
//- p.p-2
//- v-btn(type='text' @click='showFollowMe=true') {{$t('event.interact_with_me')}}
//- span(v-if='settings.enable_resources && event.resources.length') - {{$tc('common.n_resources', event.resources.length)}}
//- v-dialog(v-model='showFollowMe' destroy-on-close max-width='500px')
h4(slot='title') {{$t('common.follow_me_title')}}
FollowMe(@close='showFollowMe=false' is-dialog)
v-dialog.showResource#resourceDialog(v-model='showResources' fullscreen
width='95vw'
destroy-on-close
@keydown.native.right='$refs.carousel.next()'
@keydown.native.left='$refs.carousel.prev()')
v-carousel(:interval='10000' ref='carousel' arrow='always')
v-carousel-item(v-for='attachment in selectedResource.data.attachment' :key='attachment.url')
v-img(:src='attachment.url')
v-list.mb-1(v-if='settings.enable_resources' v-for='resource in event.resources' dark
:key='resource.id' :class='{disabled: resource.hidden}')
v-list-item
v-list-title
v-menu(v-if='$auth.user && $auth.user.is_admin' offset-y)
template(v-slot:activator="{ on, attrs }")
v-btn.mr-2(v-on='on' v-attrs='attrs' color='primary' small icon outlined)
v-icon mdi-dots-vertical
v-list
v-list-item(v-if='!resource.hidden' @click='hideResource(resource, true)')
v-list-item-title <v-icon left>mdi-eye-off</v-icon> {{$t('admin.hide_resource')}}
v-list-item(v-else @click='hideResource(resource, false)')
v-list-item-title <v-icon left>mdi-eye-on</v-icon> {{$t('admin.show_resource')}}
v-list-item(@click='deleteResource(resource)')
v-list-item-title <v-icon left>mdi-delete</v-icon> {{$t('admin.delete_resource')}}
v-list-item(@click='blockUser(resource)')
v-list-item-title <v-icon left>mdi-lock</v-icon> {{$t('admin.block_user')}}
a(:href='resource.data.url || resource.data.context')
small {{resource.data.published|dateFormat('ddd, D MMMM HH:mm')}}
div.mt-1(v-html='resource_filter(resource.data.content)')
span.previewImage(@click='showResource(resource)')
img(v-for='img in resource.data.attachment' :src='img.url')
//- Next/prev arrow
.text-center
v-btn.mr-2(nuxt icon outlined color='primary'
:to='`/event/${event.prev}`' :disabled='!event.prev')
v-icon mdi-arrow-left
v-btn(nuxt bottom right outlined icon color='primary'
:to='`/event/${event.next}`' :disabled='!event.next')
v-icon mdi-arrow-right
2020-10-16 14:16:47 +02:00
v-dialog(v-model='showEmbed' width='1000px')
2020-10-14 21:13:20 +02:00
EmbedEvent(:event='event' @close='showEmbed=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'
2019-10-22 01:12:36 +02:00
import EventAdmin from './eventAdmin'
2019-10-30 15:01:34 +01:00
import EmbedEvent from './embedEvent'
2020-02-10 00:45:51 +01:00
import FollowMe from '../../components/FollowMe'
2020-11-06 11:05:05 +01:00
import moment from 'dayjs'
const htmlToText = require('html-to-text')
2019-04-03 00:25:12 +02:00
export default {
name: 'Event',
2019-11-06 11:33:14 +01:00
components: { EventAdmin, EmbedEvent, FollowMe },
2020-11-13 00:13:44 +01:00
transition: null,
2020-01-15 23:55:19 +01:00
async asyncData ({ $axios, params, error, store }) {
try {
const event = await $axios.$get(`/event/${params.id}`)
return { event, id: Number(params.id) }
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 {
2019-10-30 15:01:34 +01:00
showEmbed: false,
2020-02-05 00:45:08 +01:00
showFollowMe: false,
showResources: false,
selectedResource: { data: { attachment: [] } }
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 {}
}
const tags_feed = this.event.tags.map(tag => ({
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',
title: `${this.settings.title} events @${this.event.place.name}`,
2020-02-11 11:53:32 +01:00
href: this.settings.baseurl + `/feed/rss?places=${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',
content: `${this.settings.baseurl}/event/${this.event.id}`
},
2019-09-11 19:12:24 +02:00
{ property: 'og:type', content: 'event' },
2019-11-06 11:33:36 +01:00
{
property: 'og:image',
2019-11-14 16:39:23 +01:00
content: this.thumbImgPath
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',
2019-11-14 16:39:23 +01:00
content: this.thumbImgPath
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: [
2019-11-14 16:39:23 +01:00
{ rel: 'image_src', href: this.thumbImgPath },
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']),
plainDescription () {
return htmlToText.fromString(this.event.description.replace('\n', '').slice(0, 1000))
},
2019-11-14 16:39:23 +01:00
imgPath () {
return '/media/' + this.event.image_path
},
2020-01-15 23:55:19 +01:00
thumbImgPath () {
if (this.event.image_path) {
2019-11-14 16:39:23 +01:00
return this.settings.baseurl + '/media/thumb/' + this.event.image_path
} else {
2019-11-14 16:39:23 +01:00
return this.settings.baseurl + '/logo.png'
}
2019-09-11 19:12:24 +02:00
},
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: {
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) {
this.$router.push(`/event/${this.event.next}`)
}
if (ev.key === 'ArrowLeft' && this.event.prev) {
this.$router.push(`/event/${this.event.prev}`)
}
},
2020-02-05 00:45:08 +01:00
showResource (resource) {
this.showResources = true
this.selectedResource = resource
document.getElementById('resourceDialog').focus()
},
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
}
}
</script>
2019-05-30 12:04:14 +02:00
<style lang='less'>
2020-10-16 14:16:47 +02:00
.title {
margin-bottom: 25px;
}
.main_image {
width: 100%;
margin: 0 auto;
max-height: 80vh;
border-radius: 5px;
2020-11-06 11:05:05 +01:00
transition: max-height 0.2s;
2020-07-28 12:24:39 +02:00
}
2019-04-03 00:25:12 +02:00
</style>