| // Licensed to the Apache Software Foundation (ASF) under one |
| // or more contributor license agreements. See the NOTICE file |
| // distributed with this work for additional information |
| // regarding copyright ownership. The ASF licenses this file |
| // to you under the Apache License, Version 2.0 (the |
| // "License"); you may not use this file except in compliance |
| // with the License. You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, |
| // software distributed under the License is distributed on an |
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| // KIND, either express or implied. See the License for the |
| // specific language governing permissions and limitations |
| // under the License. |
| |
| <template> |
| <a-spin :spinning="loading"> |
| <a-form v-ctrl-enter="handleSubmit" :form="form" layout="vertical" class="form"> |
| |
| <a-form-item class="form__item" :label="$t('label.zone')"> |
| <a-select |
| v-decorator="['zoneid', { |
| initialValue: this.zoneId, |
| rules: [{ required: true, message: `${$t('label.required')}` }] } |
| ]" |
| autoFocus |
| showSearch |
| optionFilterProp="children" |
| :filterOption="(input, option) => { |
| return option.componentOptions.propsData.label.toLowerCase().indexOf(input.toLowerCase()) >= 0 |
| }" > |
| <a-select-option |
| v-for="zone in zonesList" |
| :value="zone.id" |
| :key="zone.id" |
| :label="zone.name"> |
| <span> |
| <resource-icon v-if="zone.icon" :image="zone.icon.base64image" size="1x" style="margin-right: 5px"/> |
| <a-icon v-else type="global" style="margin-right: 5px" /> |
| {{ zone.name }} |
| </span> |
| </a-select-option> |
| </a-select> |
| </a-form-item> |
| |
| <a-form-item class="form__item" :label="$t('label.podname')"> |
| <a-input |
| :placeholder="placeholder.name" |
| v-decorator="[ |
| 'name', |
| { |
| rules: [{ required: true, message: `${$t('label.required')}` }] |
| }]" |
| /> |
| </a-form-item> |
| |
| <a-form-item class="form__item" :label="$t('label.reservedsystemgateway')"> |
| <a-input |
| :placeholder="placeholder.gateway" |
| v-decorator="[ |
| 'gateway', |
| { |
| rules: [{ required: true, message: `${$t('label.required')}` }] |
| }]" |
| /> |
| </a-form-item> |
| |
| <a-form-item class="form__item" :label="$t('label.reservedsystemnetmask')"> |
| <a-input |
| :placeholder="placeholder.netmask" |
| v-decorator="[ |
| 'netmask', |
| { |
| rules: [{ required: true, message: `${$t('label.required')}` }] |
| }]" |
| /> |
| </a-form-item> |
| |
| <a-form-item class="form__item" :label="$t('label.reservedsystemstartip')"> |
| <a-input |
| :placeholder="placeholder.startip" |
| v-decorator="[ |
| 'startip', |
| { |
| rules: [{ required: true, message: `${$t('label.required')}` }] |
| }]" |
| /> |
| </a-form-item> |
| |
| <a-form-item class="form__item" :label="$t('label.reservedsystemendip')"> |
| <a-input |
| :placeholder="placeholder.endip" |
| v-decorator="['endip']" |
| /> |
| </a-form-item> |
| |
| <div class="form__item"> |
| <div class="form__label">{{ $t('label.isdedicated') }}</div> |
| <a-checkbox @change="toggleDedicate" /> |
| </div> |
| |
| <template v-if="showDedicated"> |
| <DedicateDomain |
| @domainChange="id => dedicatedDomainId = id" |
| @accountChange="id => dedicatedAccount = id" |
| :error="domainError" /> |
| </template> |
| |
| <a-divider></a-divider> |
| |
| <div :span="24" class="action-button"> |
| <a-button @click="() => this.$parent.$parent.close()">{{ $t('label.cancel') }}</a-button> |
| <a-button @click="handleSubmit" ref="submit" type="primary">{{ $t('label.ok') }}</a-button> |
| </div> |
| |
| </a-form> |
| </a-spin> |
| </template> |
| |
| <script> |
| import { api } from '@/api' |
| import DedicateDomain from '../../components/view/DedicateDomain' |
| import ResourceIcon from '@/components/view/ResourceIcon' |
| |
| export default { |
| name: 'ClusterAdd', |
| components: { |
| DedicateDomain, |
| ResourceIcon |
| }, |
| props: { |
| resource: { |
| type: Object, |
| required: true |
| } |
| }, |
| inject: ['parentFetchData'], |
| data () { |
| return { |
| loading: false, |
| zonesList: [], |
| zoneId: null, |
| showDedicated: false, |
| dedicatedDomainId: null, |
| dedicatedAccount: null, |
| domainError: false, |
| params: [], |
| placeholder: { |
| name: null, |
| gateway: null, |
| netmask: null, |
| startip: null, |
| endip: null |
| } |
| } |
| }, |
| beforeCreate () { |
| this.form = this.$form.createForm(this) |
| }, |
| created () { |
| this.fetchData() |
| }, |
| methods: { |
| fetchData () { |
| this.fetchZones() |
| }, |
| fetchZones () { |
| this.loading = true |
| api('listZones', { showicon: true }).then(response => { |
| this.zonesList = response.listzonesresponse.zone || [] |
| this.zoneId = this.zonesList[0].id |
| this.params = this.$store.getters.apis.createPod.params |
| Object.keys(this.placeholder).forEach(item => { this.returnPlaceholder(item) }) |
| }).catch(error => { |
| this.$notifyError(error) |
| }).finally(() => { |
| this.loading = false |
| }) |
| }, |
| toggleDedicate () { |
| this.dedicatedDomainId = null |
| this.dedicatedAccount = null |
| this.showDedicated = !this.showDedicated |
| }, |
| handleSubmit (e) { |
| e.preventDefault() |
| if (this.loading) return |
| this.form.validateFieldsAndScroll((err, values) => { |
| if (err) return |
| |
| this.loading = true |
| api('createPod', { |
| zoneId: values.zoneid, |
| name: values.name, |
| gateway: values.gateway, |
| netmask: values.netmask, |
| startip: values.startip, |
| endip: values.endip |
| }).then(response => { |
| const pod = response.createpodresponse.pod || {} |
| if (pod.id && this.showDedicated) { |
| this.dedicatePod(pod.id) |
| } |
| this.loading = false |
| this.parentFetchData() |
| this.$parent.$parent.close() |
| }).catch(error => { |
| this.$notification.error({ |
| message: `${this.$t('label.error')} ${error.response.status}`, |
| description: error.response.data.createpodresponse.errortext, |
| duration: 0 |
| }) |
| this.loading = false |
| }) |
| }) |
| }, |
| dedicatePod (podId) { |
| this.loading = true |
| api('dedicatePod', { |
| podId, |
| domainid: this.dedicatedDomainId, |
| account: this.dedicatedAccount |
| }).then(response => { |
| this.$pollJob({ |
| jobId: response.dedicatepodresponse.jobid, |
| title: this.$t('message.pod.dedicated'), |
| description: `${this.$t('label.domainid')} : ${this.dedicatedDomainId}`, |
| successMessage: this.$t('message.pod.dedicated'), |
| successMethod: () => { |
| this.loading = false |
| }, |
| errorMessage: this.$t('error.dedicate.pod.failed'), |
| errorMethod: () => { |
| this.loading = false |
| }, |
| loadingMessage: this.$t('message.dedicating.pod'), |
| catchMessage: this.$t('error.fetching.async.job.result'), |
| catchMethod: () => { |
| this.loading = false |
| } |
| }) |
| }).catch(error => { |
| this.$notification.error({ |
| message: `${this.$t('label.error')} ${error.response.status}`, |
| description: error.response.data.errorresponse.errortext, |
| duration: 0 |
| }) |
| this.loading = false |
| }) |
| }, |
| returnPlaceholder (field) { |
| this.params.find(i => { |
| if (i.name === field) this.placeholder[field] = i.description |
| }) |
| } |
| } |
| } |
| </script> |
| |
| <style scoped lang="scss"> |
| .form { |
| |
| &__label { |
| margin-bottom: 5px; |
| } |
| |
| &__item { |
| margin-bottom: 20px; |
| } |
| |
| .ant-select { |
| width: 85vw; |
| |
| @media (min-width: 760px) { |
| width: 400px; |
| } |
| } |
| |
| } |
| |
| .required { |
| color: #ff0000; |
| |
| &-label { |
| display: none; |
| |
| &--visible { |
| display: block; |
| } |
| |
| } |
| |
| } |
| </style> |