| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- <template>
- <page-list
- show-tag-filter
- show-tag-columns
- show-ext-tags
- :list="list"
- :columns="columns"
- :group-actions="groupActions"
- :single-actions="singleActions"
- :showSearchbox="showSearchbox"
- :showGroupActions="showGroupActions"
- :export-data-options="exportDataOptions"
- :ext-tag-params="{ service: 'identity' }" />
- </template>
- <script>
- import ListMixin from '@/mixins/list'
- import WindowsMixin from '@/mixins/windows'
- import { getEnabledFilter, getProjectDomainFilter, getDescriptionFilter, getCreatedAtFilter } from '@/utils/common/tableFilter'
- import { getEnabledSwitchActions } from '@/utils/common/tableActions'
- import GlobalSearchMixin from '@/mixins/globalSearch'
- import SingleActionsMixin from '../mixins/singleActions'
- import ColumnsMixin from '../mixins/columns'
- export default {
- name: 'UserList',
- mixins: [WindowsMixin, ListMixin, GlobalSearchMixin, ColumnsMixin, SingleActionsMixin],
- props: {
- id: String,
- getParams: {
- type: Object,
- },
- isAllowCreate: {
- type: Boolean,
- default: true,
- },
- },
- data () {
- return {
- list: this.$list.createList(this, {
- id: this.id,
- resource: 'users',
- apiVersion: 'v1',
- getParams: this.getParam,
- sortKeys: ['name', 'project_domain'],
- 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(),
- displayname: {
- label: this.$t('scope.text_245'),
- filter: true,
- formatter: val => {
- return `displayname.contains("${val}")`
- },
- },
- enabled: getEnabledFilter(),
- allow_web_console: {
- label: this.$t('system.text_475'),
- dropdown: true,
- items: [
- { label: this.$t('system.text_476'), key: true },
- { label: this.$t('system.text_477'), key: false },
- ],
- },
- project_domain: getProjectDomainFilter(),
- created_at: getCreatedAtFilter(),
- idp_id: {
- label: this.$t('dictionary.identity_provider'),
- },
- },
- responseData: this.responseData,
- hiddenColumns: ['created_at'],
- }),
- userTotal: 0,
- }
- },
- computed: {
- groupActions () {
- const actions = [
- {
- label: this.$t('system.text_128'),
- permission: 'users_create',
- action: () => {
- this.$router.push('/systemuser/create')
- },
- meta: () => {
- const ret = {
- buttonType: 'primary',
- }
- return ret
- },
- },
- {
- label: this.$t('system.text_478'),
- permission: 'users_create',
- action: () => {
- this.createDialog('UserImprotDialog', {
- onManager: this.onManager,
- refresh: this.refresh,
- })
- },
- },
- {
- label: this.$t('system.text_166'),
- actions: () => {
- return [
- {
- label: this.$t('system.text_479'),
- permission: 'users_update',
- action: () => {
- this.createDialog('UserUpdateDialog', {
- data: this.list.selectedItems,
- columns: this.columns,
- onManager: this.onManager,
- })
- },
- },
- ...getEnabledSwitchActions(this, undefined, ['users_perform_enable', 'users_perform_disable'], {
- actions: [
- () => {
- this.onManager('batchPerformAction', {
- ids: this.list.selectedItems.map(({ id }) => id),
- managerArgs: {
- action: 'enable',
- },
- })
- },
- () => {
- this.onManager('batchPerformAction', {
- ids: this.list.selectedItems.map(({ id }) => id),
- managerArgs: {
- action: 'disable',
- },
- })
- },
- ],
- }),
- {
- label: this.$t('system.text_129'),
- permission: 'users_delete',
- action: () => {
- this.createDialog('DeleteResDialog', {
- vm: this,
- data: this.list.selectedItems,
- columns: this.columns,
- title: this.$t('system.text_480'),
- name: this.$t('dictionary.user'),
- onManager: this.onManager,
- })
- },
- meta: () => {
- return {
- validate: this.list.allowDelete(),
- }
- },
- },
- ]
- },
- meta: () => ({
- validate: !!this.list.selectedItems.length,
- }),
- },
- ]
- if (!this.isAllowCreate) {
- actions.shift()
- actions.shift()
- }
- return actions
- },
- exportDataOptions () {
- const ret = {
- downloadType: 'local',
- title: this.$t('dictionary.user'),
- items: [
- { key: 'id', label: 'ID' },
- ...this.columns,
- {
- key: 'projects',
- label: this.$t('common_494'),
- formatter: ({ row }) => {
- const { projects = [] } = row
- return projects.map(item => item.name).join(',')
- },
- },
- {
- key: 'groups',
- label: this.$t('common_495'),
- formatter: ({ row }) => {
- const { groups = [] } = row
- return groups.map(item => item.name).join(',')
- },
- },
- ],
- }
- return ret
- },
- },
- created () {
- this.initSidePageTab('user-detail')
- this.$bus.$on('RefreshUser', (id) => {
- this.list.singleRefresh(id)
- })
- this.list.fetchData()
- },
- methods: {
- getParam () {
- const ret = {
- ...this.getParams,
- details: true,
- }
- return ret
- },
- handleOpenSidepage (row, tab) {
- this.sidePageTriggerHandle(this, 'UserSidePage', {
- id: row.id,
- resource: 'users',
- apiVersion: 'v1',
- getParams: this.getParam,
- }, {
- list: this.list,
- tab,
- })
- },
- },
- }
- </script>
|