mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
64 lines
1.4 KiB
Vue
64 lines
1.4 KiB
Vue
<template>
|
|
<div>
|
|
<ds-page-title heading="Group Setting"></ds-page-title>
|
|
<ds-flex gutter="small">
|
|
<ds-flex-item :width="{ base: '100%', md: '200px' }">
|
|
<ds-menu :routes="routes" :is-exact="() => true" />
|
|
</ds-flex-item>
|
|
<ds-flex-item :width="{ base: '100%', md: 1 }">
|
|
<transition name="slide-up" appear>
|
|
<nuxt-child :group="group" />
|
|
</transition>
|
|
</ds-flex-item>
|
|
</ds-flex>
|
|
<ds-space centered>
|
|
<nuxt-link to="/group/my-groups">zurück</nuxt-link>
|
|
</ds-space>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { groupQuery } from '~/graphql/groups.js'
|
|
import { mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
computed: {
|
|
...mapGetters({
|
|
user: 'auth/user',
|
|
}),
|
|
routes() {
|
|
return [
|
|
{
|
|
name: 'General',
|
|
path: `/group/edit/${this.group.id}`,
|
|
},
|
|
{
|
|
name: 'Members',
|
|
path: `/group/edit/${this.group.id}/members`,
|
|
},
|
|
]
|
|
},
|
|
},
|
|
async asyncData(context) {
|
|
const {
|
|
app,
|
|
error,
|
|
params: { id },
|
|
} = context
|
|
const client = app.apolloProvider.defaultClient
|
|
const {
|
|
data: {
|
|
Group: [group],
|
|
},
|
|
} = await client.query({
|
|
query: groupQuery,
|
|
variables: { id },
|
|
})
|
|
if (group.myRole !== 'owner') {
|
|
error({ statusCode: 403, message: 'NONONNNO' })
|
|
}
|
|
return { group }
|
|
},
|
|
}
|
|
</script>
|