mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
137 lines
4.6 KiB
Vue
137 lines
4.6 KiB
Vue
<template lang="pug">
|
|
v-container.container.pa-0.pa-md-3
|
|
v-card
|
|
v-alert(v-if='url!==settings.baseurl' outlined type='warning' color='red' show-icon :icon='mdiAlert')
|
|
span(v-html="$t('admin.wrong_domain_warning', { url, baseurl: settings.baseurl })")
|
|
v-tabs(v-model='selectedTab' show-arrows :next-icon='mdiChevronRight' :prev-icon='mdiChevronLeft')
|
|
|
|
//- SETTINGS
|
|
v-tab(href='#settings') {{$t('common.settings')}}
|
|
v-tab-item(value='settings')
|
|
Settings
|
|
|
|
//- THEME
|
|
v-tab(href='#theme') {{$t('common.theme')}}
|
|
v-tab-item(value='theme')
|
|
Theme
|
|
|
|
//- USERS
|
|
v-tab(href='#users')
|
|
v-badge(:value='!!unconfirmedUsers.length' :content='unconfirmedUsers.length') {{$t('common.users')}}
|
|
v-tab-item(value='users')
|
|
Users(:users='users' @update='updateUsers')
|
|
|
|
//- PLACES
|
|
v-tab(href='#places') {{$t('common.places')}}
|
|
v-tab-item(value='places')
|
|
Places
|
|
|
|
//- Collections
|
|
v-tab(href='#collections') {{$t('common.collections')}}
|
|
v-tab-item(value='collections')
|
|
Collections
|
|
|
|
//- EVENTS
|
|
v-tab(href='#unconfirmed_events')
|
|
v-badge(:value='!!unconfirmedEvents.length' :content='unconfirmedEvents.length') {{$t('common.events')}}
|
|
v-tab-item(value='unconfirmed_events')
|
|
Events(:unconfirmedEvents='unconfirmedEvents'
|
|
@confirmed='id => { unconfirmedEvents = unconfirmedEvents.filter(e => e.id !== id)}')
|
|
|
|
//- ANNOUNCEMENTS
|
|
v-tab(href='#announcements') {{$t('common.announcements')}}
|
|
v-tab-item(value='announcements')
|
|
Announcement
|
|
|
|
//- PLUGINS
|
|
v-tab(href='#plugins') {{$t('common.plugins')}}
|
|
v-tab-item(value='plugins')
|
|
Plugin
|
|
|
|
//- FEDERATION
|
|
v-tab(href='#federation') {{$t('common.federation')}}
|
|
v-tab-item(value='federation')
|
|
Federation
|
|
|
|
//- MODERATION
|
|
v-tab(v-if='settings.enable_federation' href='#moderation') {{$t('common.moderation')}}
|
|
v-tab-item(value='moderation')
|
|
Moderation
|
|
</template>
|
|
<script>
|
|
import { mapState } from 'vuex'
|
|
import { mdiAlert, mdiChevronRight, mdiChevronLeft } from '@mdi/js'
|
|
import Settings from '@/components/admin/Settings'
|
|
|
|
export default {
|
|
name: 'Admin',
|
|
components: {
|
|
Settings,
|
|
Users: () => import(/* webpackChunkName: "admin" */'../components/admin/Users'),
|
|
Events: () => import(/* webpackChunkName: "admin" */'../components/admin/Events'),
|
|
Places: () => import(/* webpackChunkName: "admin" */'../components/admin/Places'),
|
|
Collections: () => import(/* webpackChunkName: "admin" */'../components/admin/Collections'),
|
|
Federation: () => import(/* webpackChunkName: "admin" */'../components/admin/Federation.vue'),
|
|
Moderation: () => import(/* webpackChunkName: "admin" */'../components/admin/Moderation.vue'),
|
|
Plugin: () => import(/* webpackChunkName: "admin" */'../components/admin/Plugin.vue'),
|
|
Announcement: () => import(/* webpackChunkName: "admin" */'../components/admin/Announcement.vue'),
|
|
Theme: () => import(/* webpackChunkName: "admin" */'../components/admin/Theme.vue')
|
|
},
|
|
middleware: ['auth'],
|
|
async asyncData ({ $axios, req }) {
|
|
let url
|
|
if (process.client) {
|
|
url = window.location.protocol + '//' + window.location.host
|
|
} else {
|
|
url = req.protocol + '://' + req.headers.host
|
|
}
|
|
try {
|
|
const users = await $axios.$get('/users')
|
|
const unconfirmedEvents = await $axios.$get('/event/unconfirmed')
|
|
return { users, unconfirmedEvents, url }
|
|
} catch (e) {
|
|
return { users: [], unconfirmedEvents: [], url }
|
|
}
|
|
},
|
|
data () {
|
|
return {
|
|
mdiAlert, mdiChevronRight, mdiChevronLeft,
|
|
users: [],
|
|
description: '',
|
|
unconfirmedEvents: [],
|
|
}
|
|
},
|
|
head () {
|
|
return { title: `${this.settings.title} - ${this.$t('common.admin')}` }
|
|
},
|
|
computed: {
|
|
...mapState(['settings']),
|
|
unconfirmedUsers () {
|
|
return this.users.filter(u => !u.is_active)
|
|
},
|
|
selectedTab: {
|
|
set (tab) {
|
|
this.$router.replace({ query: { ...this.$route.query, tab } })
|
|
},
|
|
get () {
|
|
return this.$route.query.tab
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
async updateUsers () {
|
|
this.users = await this.$axios.$get('/users')
|
|
},
|
|
preview (id) {
|
|
this.$router.push(`/event/${id}`)
|
|
},
|
|
async confirm (id) {
|
|
this.loading = true
|
|
await this.$axios.$get(`/event/confirm/${id}`)
|
|
this.loading = false
|
|
this.$root.$message('event.confirmed', { color: 'success' })
|
|
this.unconfirmedEvents = this.unconfirmedEvents.filter(e => e.id !== id)
|
|
}
|
|
}
|
|
}
|
|
</script>
|