wikijs-fork/client/components/admin/admin-groups-edit.vue

147 lines
4.7 KiB
Vue
Raw Normal View History

2018-03-26 05:11:49 +00:00
<template lang='pug'>
v-container(fluid, grid-list-lg)
v-layout(row wrap)
v-flex(xs12)
.admin-header
img(src='/svg/icon-social-group.svg', alt='Edit Group', style='width: 80px;')
.admin-header-title
.headline.blue--text.text--darken-2 Edit Group
2019-08-03 04:48:55 +00:00
.subtitle-1.grey--text {{group.name}}
v-spacer
.caption.grey--text ID #[strong {{group.id}}]
v-divider.mx-3(vertical)
v-btn(color='grey', large, outlined, to='/groups')
v-icon mdi-arrow-left
2018-10-14 21:38:39 +00:00
v-dialog(v-model='deleteGroupDialog', max-width='500', v-if='!group.isSystem')
template(v-slot:activator='{ on }')
v-btn.ml-2(color='red', large, outlined, v-on='on')
v-icon(color='red') mdi-trash-can-outline
v-card
.dialog-header.is-red Delete Group?
v-card-text.pa-4 Are you sure you want to delete group #[strong {{ group.name }}]? All users will be unassigned from this group.
v-card-actions
v-spacer
2019-10-05 03:51:51 +00:00
v-btn(text, @click='deleteGroupDialog = false') Cancel
v-btn(color='red', dark, @click='deleteGroup') Delete
v-btn.ml-2(color='success', large, depressed, @click='updateGroup')
v-icon(left) mdi-check
span Update Group
v-card.mt-3
v-tabs(v-model='tab', :background-color='$vuetify.theme.dark ? "primary" : "grey darken-2"', fixed-tabs, slider-color='white', show-arrows, dark)
v-tab(key='permissions') Permissions
v-tab(key='rules') Page Rules
v-tab(key='users') Users
2018-03-26 05:11:49 +00:00
v-tab-item(key='permissions', :transition='false', :reverse-transition='false')
group-permissions(v-model='group', @refresh='refresh')
2018-03-26 05:11:49 +00:00
v-tab-item(key='rules', :transition='false', :reverse-transition='false')
group-rules(v-model='group', @refresh='refresh')
v-tab-item(key='users', :transition='false', :reverse-transition='false')
group-users(v-model='group', @refresh='refresh')
2018-03-26 05:11:49 +00:00
</template>
<script>
2018-10-14 03:28:59 +00:00
import _ from 'lodash'
import GroupPermissions from './admin-groups-edit-permissions.vue'
import GroupRules from './admin-groups-edit-rules.vue'
import GroupUsers from './admin-groups-edit-users.vue'
2018-03-31 05:48:04 +00:00
import groupQuery from 'gql/admin/groups/groups-query-single.gql'
import deleteGroupMutation from 'gql/admin/groups/groups-mutation-delete.gql'
import updateGroupMutation from 'gql/admin/groups/groups-mutation-update.gql'
2018-03-26 05:11:49 +00:00
export default {
2018-03-31 05:48:04 +00:00
components: {
GroupPermissions,
GroupRules,
GroupUsers
2018-03-31 05:48:04 +00:00
},
2018-03-26 05:11:49 +00:00
data() {
return {
group: {
id: 0,
name: '',
2018-10-14 21:38:39 +00:00
isSystem: false,
permissions: [],
pageRules: [],
2018-03-28 04:02:32 +00:00
users: []
2018-03-26 05:11:49 +00:00
},
deleteGroupDialog: false,
tab: null
2018-03-26 05:11:49 +00:00
}
},
methods: {
async updateGroup() {
try {
await this.$apollo.mutate({
mutation: updateGroupMutation,
variables: {
id: this.group.id,
name: this.group.name,
permissions: this.group.permissions,
pageRules: this.group.pageRules
},
watchLoading (isLoading) {
this.$store.commit(`loading${isLoading ? 'Start' : 'Stop'}`, 'admin-groups-update')
}
})
this.$store.commit('showNotification', {
style: 'success',
message: `Group changes have been saved.`,
icon: 'check'
})
} catch (err) {
2019-01-13 03:33:30 +00:00
this.$store.commit('pushGraphError', err)
}
2018-03-26 05:11:49 +00:00
},
async deleteGroup() {
this.deleteGroupDialog = false
try {
await this.$apollo.mutate({
mutation: deleteGroupMutation,
variables: {
id: this.group.id
},
watchLoading (isLoading) {
this.$store.commit(`loading${isLoading ? 'Start' : 'Stop'}`, 'admin-groups-delete')
}
})
this.$store.commit('showNotification', {
style: 'success',
message: `Group ${this.group.name} has been deleted.`,
icon: 'delete'
})
this.$router.replace('/groups')
} catch (err) {
2019-01-13 03:33:30 +00:00
this.$store.commit('pushGraphError', err)
2018-03-26 05:11:49 +00:00
}
2018-04-23 04:27:30 +00:00
},
async refresh() {
return this.$apollo.queries.group.refetch()
2018-03-26 05:11:49 +00:00
}
},
apollo: {
2018-03-28 04:02:32 +00:00
group: {
query: groupQuery,
variables() {
return {
2018-10-14 03:28:59 +00:00
id: _.toSafeInteger(this.$route.params.id)
2018-03-28 04:02:32 +00:00
}
},
fetchPolicy: 'network-only',
update: (data) => _.cloneDeep(data.groups.single),
2018-03-26 05:11:49 +00:00
watchLoading (isLoading) {
this.$store.commit(`loading${isLoading ? 'Start' : 'Stop'}`, 'admin-groups-refresh')
}
}
}
}
</script>
<style lang='scss'>
</style>