| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- <template>
- <page-list
- :list="list"
- :columns="columns"
- :group-actions="groupActions"
- :single-actions="singleActions"
- :export-data-options="exportDataOptions" />
- </template>
- <script>
- import expectStatus from '@/constants/expectStatus'
- import WindowsMixin from '@/mixins/windows'
- import ListMixin from '@/mixins/list'
- import { getEnabledSwitchActions } from '@/utils/common/tableActions'
- import { getStatusFilter, getEnabledFilter, getTenantFilter, getDescriptionFilter } from '@/utils/common/tableFilter'
- import SingleActionsMixin from '../mixins/singleActions'
- import ColumnsMixin from '../mixins/columns'
- export default {
- name: 'CloudproviderList',
- mixins: [WindowsMixin, ListMixin, ColumnsMixin, SingleActionsMixin],
- props: {
- getParams: {
- type: [Function, Object],
- },
- data: {
- type: Object,
- },
- cloudaccountListRefresh: {
- type: Function,
- },
- id: String,
- },
- data () {
- const ownerDomain = list => this.$store.getters.isAdminMode || list.selectedItems.every(obj => obj.domain_id === this.$store.getters.userInfo.projectDomainId)
- const isAccountDomain = data => data.share_mode === 'account_domain'
- return {
- list: this.$list.createList(this, {
- id: this.id,
- resource: 'cloudproviders',
- getParams: this.getParams,
- steadyStatus: Object.values(expectStatus.cloudaccount).flat(),
- filterOptions: {
- external_id: {
- label: this.$t('table.title.external_id'),
- },
- id: {
- label: this.$t('table.title.id'),
- },
- name: {
- label: this.$t('cloudenv.text_95'),
- filter: true,
- formatter: val => {
- return `name.contains("${val}")`
- },
- },
- description: getDescriptionFilter(),
- status: getStatusFilter('cloudaccount'),
- enabled: getEnabledFilter(),
- account: {
- label: this.$t('cloudenv.text_353'),
- filter: true,
- filterAny: true,
- formatter: val => {
- return val.map(id => `account.contains("${id}")`)
- },
- },
- projects: getTenantFilter(),
- },
- }),
- groupActions: [
- {
- label: this.$t('cloudenv.text_104'),
- permission: 'cloudproviders_create',
- action: () => {
- this.createDialog('cloudproviderCreateDialog', {
- data: this.data,
- onManager: this.onManager,
- refresh: this.refresh,
- })
- },
- meta: () => {
- return {
- buttonType: 'primary',
- validate: this.data.brand === 'Azure' && this.data.access_url === 'AzurePublicCloud',
- tooltip: !(this.data.brand === 'Azure' && this.data.access_url === 'AzurePublicCloud') && this.$t('cloudenv.text_333_1'),
- }
- },
- },
- {
- label: this.$t('common.batchAction'),
- actions: obj => {
- return [
- {
- label: this.$t('cloudenv.set_project_mapping'),
- permission: 'cloudproviders_perform_project_mapping',
- action: () => {
- this.createDialog('CloudproviderSetPojectmappingDialog', {
- data: this.list.selectedItems,
- columns: this.columns,
- onManager: this.onManager,
- })
- },
- meta: () => {
- return {
- validate: !!this.list.selectedItems.length,
- }
- },
- },
- ...getEnabledSwitchActions(this, undefined, ['cloudproviders_perform_enable', 'cloudproviders_perform_disable'], {
- actions: [
- async (obj) => {
- const ids = this.list.selectedItems.map(item => item.id)
- await this.onManager('batchPerformAction', {
- id: ids,
- managerArgs: {
- action: 'enable',
- },
- })
- this.$bus.$emit('CloudAccountListSingleRefresh', [this.data.id])
- },
- async (obj) => {
- const ids = this.list.selectedItems.map(item => item.id)
- await this.onManager('batchPerformAction', {
- id: ids,
- managerArgs: {
- action: 'disable',
- },
- })
- this.$bus.$emit('CloudAccountListSingleRefresh', [this.data.id])
- },
- ],
- metas: [
- () => {
- const isDisable = !!this.list.selectedItems.find(item => !item.enabled)
- return {
- validate: this.list.selectedItems.length && ownerDomain && isDisable,
- }
- },
- () => {
- const isEnable = !!this.list.selectedItems.find(item => item.enabled)
- return {
- validate: this.list.selectedItems.length && ownerDomain && isEnable,
- }
- },
- ],
- }),
- {
- label: this.$t('cloudenv.text_294', [this.$t('dictionary.project')]),
- permission: 'cloudproviders_perform_change_project',
- action: () => {
- if (isAccountDomain(this.data)) {
- this.createDialog('ChangeProjectDialog', {
- name: this.$t('dictionary.cloudprovider'),
- data: this.list.selectedItems,
- columns: this.columns,
- onManager: this.onManager,
- alertMessage: this.$t('cloudenv.text_336', [this.$t('dictionary.project'), this.$t('dictionary.domain'), this.$t('dictionary.domain')]),
- })
- } else {
- this.createDialog('ChangeOwenrDialog', {
- name: this.$t('dictionary.cloudprovider'),
- data: this.list.selectedItems,
- columns: this.columns,
- onManager: this.onManager,
- action: 'change-project',
- resource: 'cloudproviders',
- alertMessage: this.$t('cloudenv.text_336', [this.$t('dictionary.project'), this.$t('dictionary.domain'), this.$t('dictionary.domain')]),
- })
- }
- },
- meta: () => {
- return {
- validate: this.list.selectedItems.length && this.list.selectedItems.every(val => val.enabled) && ownerDomain(this.list),
- }
- },
- },
- {
- label: this.$t('cloudenv.text_108'),
- permission: 'cloudproviders_delete',
- action: () => {
- this.createDialog('DeleteResDialog', {
- vm: this,
- data: this.list.selectedItems,
- columns: this.columns,
- title: this.$t('cloudenv.text_108'),
- onManager: this.onManager,
- name: this.$t('cloudenv.text_318'),
- alert: this.$t('cloudenv.cloudprovider.delete_tip'),
- })
- },
- meta: () => {
- let tooltip
- let validate
- const isEnabled = this.list.selectedItems.some(val => val.enabled)
- const isSyncing = this.list.selectedItems.some(val => val.sync_status === 'syncing')
- if (isSyncing) {
- tooltip = this.$t('cloudenv.cloudprovider.sync_delete')
- validate = false
- }
- if (isEnabled) {
- tooltip = this.$t('network.text_310')
- validate = false
- }
- if (this.data.brand !== 'Azure') {
- tooltip = this.$t('cloudenv.text_333')
- validate = false
- }
- if (!this.list.selectedItems.length || !ownerDomain(this.list)) {
- tooltip = ''
- validate = false
- }
- return {
- tooltip,
- validate,
- }
- },
- },
- ]
- },
- meta: () => {
- return {
- validate: this.list.selectedItems.length,
- }
- },
- },
- ],
- }
- },
- computed: {
- exportDataOptions () {
- return {
- downloadType: 'local',
- title: this.$t('cloudenv.text_318'),
- items: this.columns,
- getParams: this.getParams,
- hiddenFields: ['resource_tenant'],
- fixedItems: [
- { key: 'tenant', label: this.$t('cloudenv.text_356', [this.$t('dictionary.project')]) },
- { key: 'project_mapping', label: this.$t('cloudenv.text_580') },
- ],
- }
- },
- },
- created () {
- this.initSidePageTab('cloudaccount-detail')
- this.list.fetchData()
- },
- methods: {
- handleOpenSidepage (row) {
- this.sidePageTriggerHandle(this, 'CloudproviderSidePage', {
- id: row.id,
- resource: 'cloudproviders',
- getParams: this.getParams,
- }, {
- list: this.list,
- })
- },
- },
- }
- </script>
|