cloudstack/ui/src/views/infra/PodAdd.vue
Hoang Nguyen 4f97fea9ea src: fix doclinks and translation across UI (#481)
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
2021-01-20 07:06:20 +05:30

301 lines
7.9 KiB
Vue

// 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 :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')}` }] }
]">
<a-select-option
v-for="zone in zonesList"
:value="zone.id"
:key="zone.id">
{{ zone.name }}
</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 class="actions">
<a-button @click="() => this.$parent.$parent.close()">{{ $t('label.cancel') }}</a-button>
<a-button @click="handleSubmit" type="primary">{{ $t('label.ok') }}</a-button>
</div>
</a-form>
</a-spin>
</template>
<script>
import { api } from '@/api'
import DedicateDomain from '../../components/view/DedicateDomain'
export default {
name: 'ClusterAdd',
components: {
DedicateDomain
},
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)
},
mounted () {
this.fetchData()
},
methods: {
fetchData () {
this.fetchZones()
},
fetchZones () {
this.loading = true
api('listZones').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()
this.form.validateFields((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
this.parentFetchData()
this.$parent.$parent.close()
})
})
},
dedicatePod (podId) {
this.loading = true
api('dedicatePod', {
podId,
domainid: this.dedicatedDomainId,
account: this.dedicatedAccount
}).then(response => {
this.$pollJob({
jobId: response.dedicatepodresponse.jobid,
successMessage: this.$t('message.pod.dedicated'),
successMethod: () => {
this.loading = false
this.$store.dispatch('AddAsyncJob', {
title: this.$t('message.pod.dedicated'),
jobid: response.dedicatepodresponse.jobid,
description: `${this.$t('label.domainid')} : ${this.dedicatedDomainId}`,
status: 'progress'
})
},
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;
}
}
}
.actions {
display: flex;
justify-content: flex-end;
button {
&:not(:last-child) {
margin-right: 10px;
}
}
}
.required {
color: #ff0000;
&-label {
display: none;
&--visible {
display: block;
}
}
}
</style>