gancio/pages/event/_id.vue

476 lines
14 KiB
Vue
Raw Normal View History

2019-04-03 00:25:12 +02:00
<template lang="pug">
2020-01-15 23:55:19 +01:00
el-container#eventDetail
el-header
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
2020-01-15 23:55:19 +01:00
#arrow
2019-10-22 23:49:21 +02:00
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')
2020-02-09 18:15:44 +01:00
2020-01-15 23:55:19 +01:00
el-main
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-11-06 11:33:36 +01:00
2020-01-15 23:55:19 +01:00
el-row
2020-02-05 00:45:08 +01:00
el-col.p-2(:sm='18' :xs="24")
2019-10-30 15:01:34 +01:00
2020-01-15 23:55:19 +01:00
//- event image
el-image.main_image.mb-3(:src='imgPath' v-if='event.image_path' fit='contain')
div.loading(slot='placeholder')
el-icon(name='loading')
2019-10-30 15:01:34 +01:00
2020-01-15 23:55:19 +01:00
pre(v-html='event.description')
2020-02-09 18:15:44 +01:00
el-button.ml-1.text-primary(plain round size='mini' v-for='tag in event.tags' :key='tag') {{tag}}
2019-10-22 01:12:36 +02:00
2020-02-09 18:15:44 +01:00
//- info & actions
2020-01-15 23:55:19 +01:00
el-col.menu(:sm='6' :xs='24')
el-menu.menu.mt-2(router)
p <i class='el-icon-date'></i> <b>{{event|when}}</b> <br/><small>{{event|to}}</small>
p <i class='el-icon-location-outline'></i> <b>{{event.place.name}}</b> - {{event.place.address}}
2020-01-15 23:55:19 +01:00
el-divider {{$t('common.actions')}}
el-menu-item(
v-clipboard:success='copyLink'
v-clipboard:copy='`${settings.baseurl}/event/${event.id}`') <i class='el-icon-paperclip'></i> {{$t('common.copy_link')}}
2019-12-10 22:58:10 +01:00
2020-01-15 23:55:19 +01:00
el-menu-item(@click='showEmbed=true') <i class='el-icon-copy-document'></i> {{$t('common.embed')}}
2019-11-03 00:55:55 +01:00
2020-01-15 23:55:19 +01:00
//- TODO (ics of recurrent events)
2020-01-21 01:24:10 +01:00
el-menu-item(v-if='!event.recurrent')
2020-01-15 23:55:19 +01:00
a(:href='`${settings.baseurl}/api/event/${event.id}.ics`') <i class='el-icon-date'></i> {{$t('common.add_to_calendar')}}
EventAdmin(v-if='is_mine' :event='event')
hr
//- 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/>
2019-06-26 18:37:02 +02:00
2020-02-05 00:45:08 +01:00
p.p-2
el-button(type='text' @click='showFollowMe=true') {{$t('event.interact_with_me')}}
2020-02-09 18:15:44 +01:00
span(v-if='settings.enable_resources && event.resources.length') - {{$tc('common.n_resources', event.resources.length)}}
2019-11-06 11:33:14 +01:00
2020-02-10 00:45:51 +01:00
el-dialog(:visible.sync='showFollowMe' destroy-on-close)
2020-01-15 23:55:19 +01:00
h4(slot='title') {{$t('common.follow_me_title')}}
FollowMe
2019-10-20 20:59:59 +02:00
2020-02-05 00:45:08 +01:00
el-dialog.showResource#resourceDialog(:visible.sync='showResources' fullscreen
width='95vw'
destroy-on-close
@keydown.native.right='$refs.carousel.next()'
@keydown.native.left='$refs.carousel.prev()')
el-carousel(:interval='10000' ref='carousel' arrow='always')
el-carousel-item(v-for='attachment in selectedResource.data.attachment' :key='attachment.url')
el-image(:src='attachment.url')
el-card.mb-1(v-if='settings.enable_resources' v-for='resource in event.resources' :key='resource.id' :class='{disabled: resource.hidden}')
span
el-dropdown.mr-2(v-if='$auth.user && $auth.user.is_admin')
el-button(circle icon='el-icon-more' size='mini')
el-dropdown-menu(slot='dropdown')
el-dropdown-item(v-if='!resource.hidden' icon='el-icon-remove' @click.native='hideResource(resource, true)') {{$t('admin.hide_resource')}}
el-dropdown-item(v-else icon='el-icon-success' @click.native='hideResource(resource, false)') {{$t('admin.show_resource')}}
el-dropdown-item(icon='el-icon-delete' @click.native='deleteResource(resource)') {{$t('admin.delete_resource')}}
el-dropdown-item(icon='el-icon-lock' @click.native='blockUser(resource)') {{$t('admin.block_user')}}
a(:href='resource.data.url || resource.data.context')
small {{resource.data.published|datetime}}
2020-01-15 23:55:19 +01:00
div.mt-1(v-html='resource_filter(resource.data.content)')
2020-02-05 00:45:08 +01:00
span.previewImage(@click='showResource(resource)')
img(v-for='img in resource.data.attachment' :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'
2020-02-10 00:45:51 +01:00
import FollowMe from '../../components/FollowMe'
import { Message, MessageBox } from 'element-ui'
2019-10-30 15:01:34 +01:00
import moment from 'moment-timezone'
2019-04-03 00:25:12 +02:00
export default {
name: 'Event',
2019-09-18 12:55:33 +02:00
transition: null,
2019-11-06 11:33:14 +01:00
components: { EventAdmin, EmbedEvent, FollowMe },
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}`,
2019-11-06 11:33:36 +01:00
href: this.settings.baseurl + `/feed/rss?places=${this.event.placeId}`
}
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',
2019-11-06 11:33:36 +01:00
content: this.event.description.replace('\n', '').slice(0, 1000)
},
{
hid: 'og-description',
2019-09-11 19:12:24 +02:00
name: 'og:description',
2019-11-06 11:33:36 +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-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.event.description.replace('\n', '').slice(0, 100)
}
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: {
2019-05-30 12:04:14 +02:00
...mapGetters(['filteredEvents']),
...mapState(['settings']),
2020-01-15 23:55:19 +01:00
next () {
2019-05-30 12:04:14 +02:00
let found = false
2019-07-23 01:31:43 +02:00
const event = this.filteredEvents.find(e => {
2019-11-06 11:33:36 +01:00
if (found) {
return e
}
found =
e.start_datetime === this.event.start_datetime &&
e.id === this.event.id
2019-05-30 12:04:14 +02:00
})
2019-11-06 11:33:36 +01:00
if (!event) {
return false
}
2019-07-23 01:31:43 +02:00
return event.id
2019-09-11 19:12:24 +02:00
},
2020-01-15 23:55:19 +01: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-11-06 11:33:36 +01: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-11-06 11:33:36 +01:00
if (!event) {
return false
}
2019-09-11 19:12:24 +02:00
return event.id
2019-05-30 12:04:14 +02:00
},
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
},
methods: {
2020-02-05 00:45:08 +01:00
showResource (resource) {
this.showResources = true
this.selectedResource = resource
document.getElementById('resourceDialog').focus()
},
2019-12-10 22:58:10 +01:00
async remove () {
try {
await MessageBox.confirm(this.$t('event.remove_confirmation'), this.$t('common.confirm'), {
confirmButtonText: this.$t('common.ok'),
cancelButtonText: this.$t('common.cancel'),
2020-01-15 23:55:19 +01:00
type: 'error'
})
2019-12-10 22:58:10 +01:00
await this.$axios.delete(`/user/event/${this.event.id}`)
this.delEvent(Number(this.event.id))
this.$router.replace('/')
} catch (e) {
console.error(e)
}
},
async toggle () {
try {
if (this.event.is_visible) {
await this.$axios.$get(`/event/unconfirm/${this.event.id}`)
this.event.is_visible = false
} else {
await this.$axios.$get(`/event/confirm/${this.event.id}`)
this.event.is_visible = true
}
} catch (e) {
console.error(e)
}
},
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 {
await MessageBox.confirm(this.$t('admin.user_block_confirm'), {
confirmButtonText: this.$t('common.ok'),
cancelButtonText: this.$t('common.cancel'),
type: 'error'
2020-02-05 00:45:08 +01:00
})
await this.$axios.post('/instances/toggle_user_block', { ap_id: resource.ap_user.ap_id })
Message({ message: this.$t('admin.user_blocked', { user: resource.ap_user.ap_id }), type: 'success', showClose: true })
} catch (e) { }
},
async deleteResource (resource) {
try {
await MessageBox.confirm(this.$t('admin.delete_resource_confirm'),
this.$t('common.confirm'), {
confirmButtonText: this.$t('common.ok'),
cancelButtonText: this.$t('common.cancel'),
type: 'error'
})
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 () {
2019-11-06 11:33:36 +01:00
Message({ message: this.$t('common.copied'), type: 'success', showClose: true })
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'>
#eventDetail {
2020-01-15 23:55:19 +01:00
#arrow {
position: absolute;
top: 1em;
right: 1em;
}
.el-header {
position: sticky;
padding-top: 1em;
top: 0px;
border-bottom: 1px solid lightgray;
z-index: 1;
}
2019-10-30 15:01:34 +01:00
.embedDialog {
.el-dialog {
min-height: 500px;
max-width: 1000px;
width: 100%;
}
}
2019-11-06 11:33:14 +01:00
.followDialog {
.el-dialog {
min-height: 300px;
max-width: 600px;
width: 100%;
2020-02-02 21:08:16 +01:00
.el-dialog__body {
2020-02-05 00:45:08 +01:00
word-break: normal !important;
2020-02-02 21:08:16 +01:00
}
2019-11-06 11:33:14 +01:00
}
}
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;
2020-01-24 00:35:00 +01:00
background-color: transparent;
2020-01-30 14:51:34 +01:00
}
div.menu {
border-left: 1px solid #e6e6e6;
2019-10-20 14:23:28 +02:00
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;
2020-01-15 23:55:19 +01:00
padding-right: 40px;
2019-10-20 14:23:28 +02:00
}
2019-04-30 01:04:24 +02:00
2019-05-30 12:04:14 +02:00
pre {
2020-01-15 23:55:19 +01:00
white-space: pre-line;
word-break: break-word;
2019-05-30 12:04:14 +02:00
color: #404246;
font-size: 1em;
2020-01-15 23:55:19 +01:00
font-family: inherit;
// font-family: BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen,
// Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Helvetica, Arial,
// sans-serif !important;
2019-05-30 12:04:14 +02:00
}
2019-04-30 01:04:24 +02:00
2019-11-06 11:33:36 +01:00
.main_image {
width: 100%;
transition: height .100s;
height: auto;
img {
// object-fit: contain;
margin: 0 auto;
max-height: 88vh;
}
.loading {
display: flex;
justify-content: center;
align-items: center;
font-size: 30px;
margin: 0 auto;
height: 100px;
2019-06-26 18:37:02 +02:00
}
}
2019-12-04 01:18:05 +01:00
#resources {
2019-06-26 18:37:02 +02:00
img {
max-width: 100%;
}
.card-header {
border-left: 3px solid transparent;
}
.card-header:hover {
border-left: 3px solid #888;
}
2019-07-05 23:58:47 +02:00
.invisible {
visibility: visible !important;
}
.disabled {
opacity: 0.5;
}
2020-02-05 00:45:08 +01:00
.previewImage {
display: flex;
flex-flow: wrap;
justify-content: space-evenly;
img {
margin-left: 5px;
margin-top: 5px;
object-fit: cover;
min-height: 100px;
max-width: 45%;
border-radius: 5px;
border: 1px solid #ccc;
}
}
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 {
2020-01-30 14:51:34 +01:00
border: 0px !important;
2019-10-22 01:12:36 +02:00
}
2020-01-15 23:55:19 +01:00
.title {
font-size: 1em;
font-weight: bold;
}
2019-05-30 12:04:14 +02:00
}
2019-04-03 00:25:12 +02:00
}
</style>