| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <template>
- <page-list
- :list="list"
- :columns="columns"
- :group-actions="groupActions"
- :single-actions="singleActions"
- :showSearchbox="showSearchbox"
- :showGroupActions="showGroupActions"
- :export-data-options="exportDataOptions" />
- </template>
- <script>
- import { mapGetters } from 'vuex'
- import ListMixin from '@/mixins/list'
- import WindowsMixin from '@/mixins/windows'
- import { getProjectDomainFilter, getDescriptionFilter, getCreatedAtFilter } from '@/utils/common/tableFilter'
- import GlobalSearchMixin from '@/mixins/globalSearch'
- import SingleActionsMixin from '../mixins/singleActions'
- import ColumnsMixin from '../mixins/columns'
- export default {
- name: 'GroupList',
- mixins: [WindowsMixin, ListMixin, GlobalSearchMixin, ColumnsMixin, SingleActionsMixin],
- props: {
- id: String,
- getParams: {
- type: Object,
- },
- },
- data () {
- return {
- list: this.$list.createList(this, {
- id: this.id,
- resource: 'groups',
- apiVersion: 'v1',
- getParams: this.getParam,
- filterOptions: {
- id: {
- label: this.$t('table.title.id'),
- },
- name: {
- label: this.$t('system.text_101'),
- filter: true,
- formatter: val => {
- return `name.contains("${val}")`
- },
- },
- description: getDescriptionFilter(),
- project_domain: getProjectDomainFilter(),
- created_at: getCreatedAtFilter(),
- idp_id: {
- label: this.$t('dictionary.identity_provider'),
- },
- },
- responseData: this.responseData,
- hiddenColumns: ['created_at'],
- }),
- exportDataOptions: {
- items: [
- { label: 'ID', key: 'id' },
- { label: this.$t('system.text_101'), key: 'name' },
- { label: this.$t('dictionary.domain'), key: 'project_domain' },
- { label: this.$t('common.createdAt'), key: 'created_at' },
- ],
- },
- groupActions: [
- {
- label: this.$t('system.text_128'),
- permission: 'groups_create',
- action: () => {
- this.createDialog('GroupCreateDialog', {
- success: () => {
- this.refresh()
- },
- })
- },
- meta: () => {
- return {
- buttonType: 'primary',
- }
- },
- },
- {
- label: this.$t('system.text_129'),
- permission: 'groupss_delete',
- action: () => {
- this.createDialog('DeleteResDialog', {
- vm: this,
- data: this.list.selectedItems,
- columns: this.columns,
- title: this.$t('system.text_129'),
- onManager: this.onManager,
- name: this.$t('dictionary.group'),
- })
- },
- meta: () => {
- return {
- validate: this.list.selectedItems.length > 0 && this.list.selectedItems.every(item => item.can_delete),
- }
- },
- },
- ],
- }
- },
- computed: mapGetters(['isAdminMode', 'l3PermissionEnable']),
- created () {
- this.initSidePageTab('group-detail')
- this.list.fetchData()
- },
- methods: {
- getParam () {
- const ret = {
- ...this.getParams,
- details: true,
- }
- return ret
- },
- handleOpenSidepage (row, tab) {
- this.sidePageTriggerHandle(this, 'GroupSidePage', {
- id: row.id,
- resource: 'groups',
- apiVersion: 'v1',
- getParams: this.getParam,
- }, {
- list: this.list,
- tab,
- })
- },
- },
- }
- </script>
|