2018-03-18 02:41:16 +00:00
|
|
|
<template lang='pug'>
|
|
|
|
v-card(flat)
|
|
|
|
v-card(flat, color='grey lighten-5').pa-3.pt-4
|
|
|
|
.headline.blue--text.text--darken-2 Groups
|
|
|
|
.subheading.grey--text Manage groups
|
|
|
|
v-card
|
|
|
|
v-card-title
|
2018-03-19 03:12:56 +00:00
|
|
|
v-dialog(v-model='newGroupDialog', max-width='500')
|
|
|
|
v-btn(color='primary', dark, slot='activator')
|
|
|
|
v-icon(left) add
|
|
|
|
| New Group
|
|
|
|
v-card
|
|
|
|
v-card-title.headline.grey--text.text--darken-2 New Group
|
|
|
|
v-card-text
|
|
|
|
v-text-field(v-model='newGroupName', label='Group Name', autofocus, counter='255')
|
|
|
|
v-card-actions
|
|
|
|
v-spacer
|
|
|
|
v-btn(flat, @click='newGroupDialog = false') Cancel
|
|
|
|
v-btn(color='primary', @click='createGroup') Create
|
2018-03-18 02:41:16 +00:00
|
|
|
v-btn(icon)
|
|
|
|
v-icon.grey--text refresh
|
|
|
|
v-spacer
|
|
|
|
v-text-field(append-icon='search', label='Search', single-line, hide-details, v-model='search')
|
|
|
|
v-data-table(
|
|
|
|
v-model='selected'
|
2018-03-19 03:12:56 +00:00
|
|
|
:items='groups',
|
2018-03-18 02:41:16 +00:00
|
|
|
:headers='headers',
|
|
|
|
:search='search',
|
|
|
|
:pagination.sync='pagination',
|
|
|
|
:rows-per-page-items='[15]'
|
|
|
|
hide-actions,
|
|
|
|
disable-initial-sort
|
|
|
|
)
|
|
|
|
template(slot='items', slot-scope='props')
|
|
|
|
tr(:active='props.selected')
|
|
|
|
td.text-xs-right {{ props.item.id }}
|
|
|
|
td {{ props.item.name }}
|
|
|
|
td {{ props.item.userCount }}
|
|
|
|
td: v-btn(icon): v-icon.grey--text.text--darken-1 more_horiz
|
|
|
|
template(slot='no-data')
|
2018-03-19 03:12:56 +00:00
|
|
|
v-alert.ma-3(icon='warning', :value='true', outline) No groups to display.
|
|
|
|
.text-xs-center.py-2(v-if='groups.length > 15')
|
2018-03-18 02:41:16 +00:00
|
|
|
v-pagination(v-model='pagination.page', :length='pages')
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2018-03-19 03:12:56 +00:00
|
|
|
newGroupDialog: false,
|
|
|
|
newGroupName: '',
|
2018-03-18 02:41:16 +00:00
|
|
|
selected: [],
|
|
|
|
pagination: {},
|
2018-03-19 03:12:56 +00:00
|
|
|
groups: [],
|
2018-03-18 02:41:16 +00:00
|
|
|
headers: [
|
2018-03-19 03:12:56 +00:00
|
|
|
{ text: 'ID', value: 'id', width: 50, align: 'right' },
|
2018-03-18 02:41:16 +00:00
|
|
|
{ text: 'Name', value: 'name' },
|
|
|
|
{ text: 'Users', value: 'userCount', width: 200 },
|
|
|
|
{ text: '', value: 'actions', sortable: false, width: 50 }
|
|
|
|
],
|
|
|
|
search: ''
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
pages () {
|
|
|
|
if (this.pagination.rowsPerPage == null || this.pagination.totalItems == null) {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
return Math.ceil(this.pagination.totalItems / this.pagination.rowsPerPage)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
2018-03-19 03:12:56 +00:00
|
|
|
async createGroup() {
|
|
|
|
// try {
|
|
|
|
// const resp = await this.$apollo.mutate({
|
|
|
|
// mutation: CONSTANTS.GRAPH.GROUPS.CREATE,
|
|
|
|
// variables: {
|
|
|
|
// name: this.newGroupName
|
|
|
|
// }
|
|
|
|
// })
|
|
|
|
|
|
|
|
// } catch (err) {
|
|
|
|
|
|
|
|
// }
|
2018-03-18 02:41:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang='scss'>
|
|
|
|
|
|
|
|
</style>
|