mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
51 lines
1.0 KiB
Vue
51 lines
1.0 KiB
Vue
<template>
|
|
<div>
|
|
<ds-container>
|
|
<group-form :group="group" :update="true" @updateGroup="updateGroup" />
|
|
</ds-container>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import GroupForm from '~/components/Group/GroupForm'
|
|
import { updateGroupMutation } from '~/graphql/groups.js'
|
|
|
|
export default {
|
|
components: {
|
|
GroupForm,
|
|
},
|
|
props: {
|
|
group: {
|
|
type: Object,
|
|
required: false,
|
|
default: () => ({}),
|
|
},
|
|
},
|
|
methods: {
|
|
async updateGroup(value) {
|
|
const { id, name, about, description, groupType, actionRadius, locationName, categoryIds } =
|
|
value
|
|
const variables = {
|
|
id,
|
|
name,
|
|
about,
|
|
description,
|
|
groupType,
|
|
actionRadius,
|
|
locationName,
|
|
categoryIds,
|
|
}
|
|
try {
|
|
await this.$apollo.mutate({
|
|
mutation: updateGroupMutation,
|
|
variables,
|
|
})
|
|
this.$toast.success(this.$t('group.group-updated'))
|
|
} catch (error) {
|
|
this.$toast.error(error.message)
|
|
}
|
|
},
|
|
},
|
|
}
|
|
</script>
|