mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
59 lines
1.5 KiB
Vue
59 lines
1.5 KiB
Vue
<template>
|
|
<div>
|
|
<ds-space margin="small">
|
|
<ds-heading tag="h1">{{ $t('post.editPost.title') }}</ds-heading>
|
|
<ds-heading v-if="contribution && contribution.group" tag="h2">
|
|
{{ $t('post.editPost.forGroup.title', { name: contribution.group.name }) }}
|
|
</ds-heading>
|
|
</ds-space>
|
|
<ds-space margin="large" />
|
|
<ds-flex :width="{ base: '100%' }" gutter="base">
|
|
<ds-flex-item :width="{ base: '100%', md: 3 }">
|
|
<contribution-form
|
|
:contribution="contribution"
|
|
:group="contribution && contribution.group ? contribution.group : null"
|
|
/>
|
|
</ds-flex-item>
|
|
<ds-flex-item :width="{ base: '100%', md: 1 }"> </ds-flex-item>
|
|
</ds-flex>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ContributionForm from '~/components/ContributionForm/ContributionForm'
|
|
import PostQuery from '~/graphql/PostQuery'
|
|
import { mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
components: {
|
|
ContributionForm,
|
|
},
|
|
computed: {
|
|
...mapGetters({
|
|
user: 'auth/user',
|
|
}),
|
|
},
|
|
async asyncData(context) {
|
|
const {
|
|
app,
|
|
store,
|
|
error,
|
|
params: { id },
|
|
} = context
|
|
const client = app.apolloProvider.defaultClient
|
|
const {
|
|
data: {
|
|
Post: [contribution],
|
|
},
|
|
} = await client.query({
|
|
query: PostQuery(app.$i18n),
|
|
variables: { id },
|
|
})
|
|
if (contribution.author.id !== store.getters['auth/user'].id) {
|
|
error({ statusCode: 403, message: 'error-pages.cannot-edit-post' })
|
|
}
|
|
return { contribution }
|
|
},
|
|
}
|
|
</script>
|