| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <template>
- <base-side-page
- @cancel="cancelSidePage"
- :title="$t('network.text_720')"
- icon="res-dns-zone"
- :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>
- <component
- :is="params.windowData.currentTab"
- :id="listId"
- :res-id="detailData.id"
- :data="detailData"
- :getParams="getParams"
- :on-manager="onManager"
- taskResource="compute-tasks"
- @side-page-trigger-handle="sidePageTriggerHandle"
- @init-side-page-tab="initSidePageTab"
- @refresh="refresh"
- @single-refresh="singleRefresh"
- @tab-change="handleTabChange" />
- </base-side-page>
- </template>
- <script>
- import * as R from 'ramda'
- import SidePageMixin from '@/mixins/sidePage'
- import WindowsMixin from '@/mixins/windows'
- import Actions from '@/components/PageList/Actions'
- import DnsRecordsetListForDnsZoneSidepage from '@Network/views/dns-recordset/components/List'
- import SingleActionsMixin from '../mixins/singleActions'
- import ColumnsMixin from '../mixins/columns'
- import DnsZoneDetail from './Detail'
- import DnsAssociateVpcList from './DnsAssociateVpcList'
- export default {
- name: 'DnsZoneSidePage',
- components: {
- DnsZoneDetail,
- Actions,
- DnsRecordsetListForDnsZoneSidepage,
- DnsAssociateVpcList,
- },
- mixins: [SidePageMixin, WindowsMixin, ColumnsMixin, SingleActionsMixin],
- data () {
- return {}
- },
- computed: {
- detailTabs () {
- const data = this.detailData
- const detailTabs = [
- { label: this.$t('network.text_67'), key: 'dns-zone-detail' },
- { label: this.$t('common_663'), key: 'dns-recordset-list-for-dns-zone-sidepage' },
- { label: this.$t('table.title.task'), key: 'task-drawer' },
- { label: this.$t('network.text_150'), key: 'event-drawer' },
- ]
- if (data.cloud_env === 'public' && data.zone_type === 'PrivateZone') {
- detailTabs.splice(1, 0, { label: this.$t('network.text_719'), key: 'dns-associate-vpc-list' })
- }
- return detailTabs
- },
- getParams () {
- if (this.params.windowData.currentTab === 'dns-recordset-list-for-dns-zone-sidepage') {
- return {
- detail: true,
- dns_zone_id: this.detailData.id,
- }
- } else if (this.params.windowData.currentTab === 'dns-associate-vpc-list') {
- return {
- detail: true,
- dns_zone_id: this.detailData.id,
- }
- }
- return null
- },
- listId () {
- switch (this.params.windowData.currentTab) {
- case 'event-drawer':
- return 'EventListForDnsZoneSidePage'
- case 'dns-recordset-list-for-dns-zone-sidepage':
- return 'DnsRecordsetListForDnsZoneSidePage'
- case 'dns-associate-vpc-list':
- return 'DnsAssociateListForDnsZoneSidePage'
- default:
- return ''
- }
- },
- },
- created () {
- if (R.isNil(R.find(R.propEq('key', this.params.windowData.currentTab))(this.detailTabs))) {
- this.handleTabChange(this.detailTabs[0].key)
- }
- },
- }
- </script>
|