| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- <template>
- <base-side-page
- @cancel="cancelSidePage"
- :title="$t('cloudenv.text_12')"
- icon="res-cloudaccount"
- :res-name="detailData.name"
- :actions="params.actions"
- :current-tab="params.windowData.currentTab"
- :tabs="detailTabs"
- :loaded="loaded"
- @tab-change="handleTabChange">
- <template v-slot:actions>
- <actions :options="singleActions" :row="detailData" button-type="link" button-size="small" />
- </template>
- <a-alert :message="$t('cloudenv.clouduser_desc')" class="mb-2" v-if="params.windowData.currentTab === 'clouduser-list'" />
- <component
- :is="params.windowData.currentTab"
- :data="detailData"
- :cloudaccount="detailData"
- :on-manager="onManager"
- :res-id="data.id"
- :id="listId"
- resource="cloudaccounts"
- :cloudaccount-list-refresh="params.options.refresh"
- :getParams="getParams"
- :columns="columns"
- taskResource="compute-tasks" />
- </base-side-page>
- </template>
- <script>
- import * as R from 'ramda'
- import CloudproviderList from '@Cloudenv/views/cloudprovider/components/List'
- import Usage from '@Cloudenv/sections/UsageSidepage'
- import CloudgroupList from '@Cloudenv/views/cloudgroup/components/List'
- import ClouduserList from '@Cloudenv/views/clouduser/components/List'
- import ExternalprojectList from '@Cloudenv/views/externalproject/components/List'
- import SamluserList from '@Cloudenv/views/samluser/components/List'
- import SidePageMixin from '@/mixins/sidePage'
- import WindowsMixin from '@/mixins/windows'
- import Actions from '@/components/PageList/Actions'
- import { findPlatform } from '@/utils/common/hypervisor'
- import HostList from './Host'
- import CloudaccountDetail from './Detail'
- import SingleActionsMixin from '../mixins/singleActions'
- import ColumnsMixin from '../mixins/columns'
- import ScheduledtasksList from './Schedule'
- export default {
- name: 'CloudaccountSidePage',
- components: {
- Actions,
- CloudaccountDetail,
- CloudproviderList,
- HostList,
- Usage,
- ClouduserList,
- CloudgroupList,
- ExternalprojectList,
- SamluserList,
- ScheduledtasksList,
- },
- mixins: [SidePageMixin, WindowsMixin, ColumnsMixin, SingleActionsMixin],
- computed: {
- detailTabs () {
- const data = this.detailData
- let platform = 'idc'
- if (data.provider) {
- platform = findPlatform(data.provider.toLowerCase(), 'provider')
- }
- const detailTabs = [
- { label: this.$t('cloudenv.text_237'), key: 'cloudaccount-detail' },
- { label: this.$t('cloudenv.text_319'), key: 'usage' },
- { label: this.$t('cloudenv.text_318'), key: 'cloudprovider-list' },
- { label: this.$t('cloudenv.text_386'), key: 'externalproject-list' },
- ]
- if (platform === 'idc' || platform === 'private') {
- detailTabs.splice(1, 0, { label: this.$t('cloudenv.text_101'), key: 'host-list' })
- }
- if ((this.$store.getters.capability.saml_auth_brands || []).includes(data.provider) && data.saml_auth) {
- detailTabs.splice(detailTabs.length - 1, 0, { label: this.$t('cloudaccount.sidepage.tab.samluser'), key: 'samluser-list' })
- }
- if ((this.$store.getters.capability.cloud_id_brands || []).includes(data.provider)) {
- detailTabs.splice(detailTabs.length - 1, 0, { label: this.$t('dictionary.clouduser'), key: 'clouduser-list' })
- detailTabs.splice(detailTabs.length - 1, 0, { label: this.$t('dictionary.cloudgroup'), key: 'cloudgroup-list' })
- }
- detailTabs.push({ label: this.$t('cloudenv.text_431'), key: 'scheduledtasks-list' })
- detailTabs.push({ label: this.$t('table.title.task'), key: 'task-drawer' })
- detailTabs.push({ label: this.$t('cloudenv.text_15'), key: 'event-drawer' })
- return detailTabs
- },
- getParams () {
- if (this.params.windowData.currentTab === 'cloudprovider-list') {
- return {
- detail: true,
- cloudaccount_id: this.data.id,
- }
- } else if (this.params.windowData.currentTab === 'host-list') {
- return {
- detail: true,
- account: this.data.id,
- baremetal: false,
- }
- } else if (this.params.windowData.currentTab === 'clouduser-list') {
- return {
- cloudaccount: this.data.id,
- }
- } else if (this.params.windowData.currentTab === 'cloudgroup-list') {
- return {
- cloudaccount: this.data.id,
- domain_id: this.data.data && this.data.data.domain_id,
- }
- } else if (this.params.windowData.currentTab === 'externalproject-list') {
- return () => {
- return {
- cloudaccount_id: this.data.id,
- }
- }
- } else if (this.params.windowData.currentTab === 'samluser-list') {
- return {
- cloudaccount: this.data.id,
- }
- } else if (this.params.windowData.currentTab === 'scheduledtasks-list') {
- return {
- label: this.data.id,
- resource_type: 'cloudaccount',
- account_id: this.data.id,
- }
- }
- return null
- },
- listId () {
- switch (this.params.windowData.currentTab) {
- case 'event-drawer':
- return 'EventListForCloudaccountSidePage'
- case 'cloudprovider-list':
- return 'CloudproviderListForCloudaccountSidePage'
- case 'externalproject-list':
- return 'ExternalprojectListForCloudaccountSidePage'
- case 'host-list':
- return 'HostListForCloudaccountSidePage'
- case 'clouduser-list':
- return 'ClouduserListForCloudaccountSidePage'
- case 'cloudgroup-list':
- return 'CloudgroupListForCloudaccountSidePage'
- case 'samluser-list':
- return 'SamluserListForCloudaccountSidePage'
- case 'scheduledtasks-list':
- return 'ScheduledtasksListForCloudaccountSidepage'
- default:
- return ''
- }
- },
- hiddenActions () {
- return this.params.hiddenActions || []
- },
- },
- created () {
- if (R.isNil(R.find(R.propEq('key', this.params.windowData.currentTab))(this.detailTabs))) {
- this.handleTabChange(this.detailTabs[0].key)
- }
- if (this.params.tab) {
- this.handleTabChange(this.params.tab)
- }
- },
- }
- </script>
|