cloudstack/ui/src/views/network/CreateL2NetworkForm.vue
Abhishek Kumar 041948c04f
ui: refactor labels with tooltip in forms (#5133)
* ui: refactor labels with tooltip in forms

Adds new Vue component TooltipLabel for easier re-use

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>

* changes

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>

* changes

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>

* changes

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>

* changes

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>

* changes

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>

* moved component in widgets

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>

* moved TooltipButton in widgets

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>

* missing change in previous commit

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>

* changes

Signed-off-by: Abhishek Kumar <abhishek.kumar@shapeblue.com>

* fix

Signed-off-by: Abhishek Kumar <abhishek.kumar@shapeblue.com>

* form improvements

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>

* tooltip icon class fix

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>

* fix

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>

* Update ui/src/views/storage/UploadLocalVolume.vue

Co-authored-by: Pearl Dsilva <pearl1594@gmail.com>

* Update ui/src/views/storage/CreateVolume.vue

Co-authored-by: davidjumani <dj.davidjumani1994@gmail.com>

* fix

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>

Co-authored-by: Pearl Dsilva <pearl1594@gmail.com>
Co-authored-by: davidjumani <dj.davidjumani1994@gmail.com>
2021-07-15 12:45:38 +05:30

453 lines
16 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">
<div class="form-layout">
<div class="form">
<a-form
:form="form"
layout="vertical"
@submit="handleSubmit">
<a-form-item>
<tooltip-label slot="label" :title="$t('label.name')" :tooltip="apiParams.name.description"/>
<a-input
v-decorator="['name', {
rules: [{ required: true, message: $t('message.error.name') }]
}]"
:placeholder="this.$t('label.name')"
autoFocus/>
</a-form-item>
<a-form-item>
<tooltip-label slot="label" :title="$t('label.displaytext')" :tooltip="apiParams.displaytext.description"/>
<a-input
v-decorator="['displaytext', {
rules: [{ required: true, message: $t('message.error.display.text') }]
}]"
:placeholder="this.$t('label.displaytext')"/>
</a-form-item>
<a-form-item>
<tooltip-label slot="label" :title="$t('label.zoneid')" :tooltip="apiParams.zoneid.description"/>
<a-select
v-decorator="['zoneid', {
rules: [
{
required: true,
message: `${this.$t('message.error.select')}`
}
]
}]"
showSearch
optionFilterProp="children"
:filterOption="(input, option) => {
return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
}"
:loading="zoneLoading"
:placeholder="this.$t('label.zoneid')"
@change="val => { this.handleZoneChange(this.zones[val]) }">
<a-select-option v-for="(opt, optIndex) in this.zones" :key="optIndex">
{{ opt.name || opt.description }}
</a-select-option>
</a-select>
</a-form-item>
<a-form-item v-if="this.isAdminOrDomainAdmin()">
<tooltip-label slot="label" :title="$t('label.domainid')" :tooltip="apiParams.domainid.description"/>
<a-select
v-decorator="['domainid', {}]"
showSearch
optionFilterProp="children"
:filterOption="(input, option) => {
return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
}"
:loading="domainLoading"
:placeholder="this.$t('label.domainid')"
@change="val => { this.handleDomainChange(this.domains[val]) }">
<a-select-option v-for="(opt, optIndex) in this.domains" :key="optIndex">
{{ opt.path || opt.name || opt.description }}
</a-select-option>
</a-select>
</a-form-item>
<a-form-item>
<tooltip-label slot="label" :title="$t('label.networkofferingid')" :tooltip="apiParams.networkofferingid.description"/>
<a-select
v-decorator="['networkofferingid', {
rules: [
{
required: true,
message: `${this.$t('message.error.select')}`
}
]
}]"
showSearch
optionFilterProp="children"
:filterOption="(input, option) => {
return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
}"
:loading="networkOfferingLoading"
:placeholder="this.$t('label.networkofferingid')"
@change="val => { this.handleNetworkOfferingChange(this.networkOfferings[val]) }">
<a-select-option v-for="(opt, optIndex) in this.networkOfferings" :key="optIndex">
{{ opt.displaytext || opt.name || opt.description }}
</a-select-option>
</a-select>
</a-form-item>
<a-form-item v-if="!this.isObjectEmpty(this.selectedNetworkOffering) && this.selectedNetworkOffering.specifyvlan">
<tooltip-label slot="label" :title="$t('label.vlan')" :tooltip="apiParams.vlan ? apiParams.vlan.description : null"/>
<a-input
v-decorator="['vlanid', {
rules: [{ required: true, message: $t('message.please.enter.value') }]
}]"
:placeholder="this.$t('label.vlanid')"/>
</a-form-item>
<a-form-item v-if="!this.isObjectEmpty(this.selectedNetworkOffering) && this.selectedNetworkOffering.specifyvlan">
<tooltip-label slot="label" :title="$t('label.bypassvlanoverlapcheck')" :tooltip="apiParams.bypassvlanoverlapcheck ? apiParams.bypassvlanoverlapcheck.description : null"/>
<a-switch v-decorator="['bypassvlanoverlapcheck']" />
</a-form-item>
<a-form-item v-if="!this.isObjectEmpty(this.selectedNetworkOffering) && this.selectedNetworkOffering.specifyvlan">
<tooltip-label slot="label" :title="$t('label.isolatedpvlantype')" :tooltip="apiParams.isolatedpvlantype.description"/>
<a-radio-group
v-decorator="['isolatedpvlantype', {
initialValue: this.isolatePvlanType
}]"
buttonStyle="solid"
@change="selected => { this.isolatePvlanType = selected.target.value }">
<a-radio-button value="none">
{{ $t('label.none') }}
</a-radio-button>
<a-radio-button value="community">
{{ $t('label.community') }}
</a-radio-button>
<a-radio-button value="isolated">
{{ $t('label.secondary.isolated.vlan.type.isolated') }}
</a-radio-button>
<a-radio-button value="promiscuous">
{{ $t('label.secondary.isolated.vlan.type.promiscuous') }}
</a-radio-button>
</a-radio-group>
</a-form-item>
<a-form-item v-if="this.isolatePvlanType=='community' || this.isolatePvlanType=='isolated'">
<tooltip-label slot="label" :title="$t('label.isolatedpvlanid')" :tooltip="apiParams.isolatedpvlan.description"/>
<a-input
v-decorator="['isolatedpvlan', {}]"
:placeholder="this.$t('label.isolatedpvlanid')"/>
</a-form-item>
<a-form-item v-if="this.accountVisible">
<tooltip-label slot="label" :title="$t('label.account')" :tooltip="apiParams.account.description"/>
<a-input
v-decorator="['account']"
:placeholder="this.$t('label.account')"/>
</a-form-item>
<div :span="24" class="action-button">
<a-button
:loading="actionLoading"
@click="closeAction">
{{ this.$t('label.cancel') }}
</a-button>
<a-button
:loading="actionLoading"
type="primary"
@click="handleSubmit">
{{ this.$t('label.ok') }}
</a-button>
</div>
</a-form>
</div>
</div>
</a-spin>
</template>
<script>
import { api } from '@/api'
import TooltipLabel from '@/components/widgets/TooltipLabel'
export default {
name: 'CreateL2NetworkForm',
components: {
TooltipLabel
},
props: {
loading: {
type: Boolean,
default: false
},
vpc: {
type: Object,
default: null
},
resource: {
type: Object,
default: () => { return {} }
}
},
data () {
return {
actionLoading: false,
domains: [],
domainLoading: false,
selectedDomain: {},
zones: [],
zoneLoading: false,
selectedZone: {},
networkOfferings: [],
networkOfferingLoading: false,
selectedNetworkOffering: {},
accountVisible: this.isAdminOrDomainAdmin(),
isolatePvlanType: 'none'
}
},
watch: {
resource (newItem, oldItem) {
this.fetchData()
}
},
beforeCreate () {
this.form = this.$form.createForm(this)
this.apiConfig = this.$store.getters.apis.createNetwork || {}
this.apiParams = {}
this.apiConfig.params.forEach(param => {
this.apiParams[param.name] = param
})
},
created () {
this.domains = [
{
id: '-1',
name: ' '
}
]
this.fetchData()
},
methods: {
fetchData () {
this.fetchDomainData()
this.fetchZoneData()
},
isAdmin () {
return ['Admin'].includes(this.$store.getters.userInfo.roletype)
},
isAdminOrDomainAdmin () {
return ['Admin', 'DomainAdmin'].includes(this.$store.getters.userInfo.roletype)
},
isObjectEmpty (obj) {
return !(obj !== null && obj !== undefined && Object.keys(obj).length > 0 && obj.constructor === Object)
},
arrayHasItems (array) {
return array !== null && array !== undefined && Array.isArray(array) && array.length > 0
},
isValidValueForKey (obj, key) {
return key in obj && obj[key] != null
},
isValidTextValueForKey (obj, key) {
return this.isValidValueForKey(obj, key) && obj[key].length > 0
},
fetchZoneData () {
this.zones = []
const params = {}
if (this.resource.zoneid && this.$route.name === 'deployVirtualMachine') {
params.id = this.resource.zoneid
}
params.listAll = true
this.zoneLoading = true
api('listZones', params).then(json => {
for (const i in json.listzonesresponse.zone) {
const zone = json.listzonesresponse.zone[i]
if (zone.networktype === 'Advanced') {
this.zones.push(zone)
}
}
this.zoneLoading = false
if (this.arrayHasItems(this.zones)) {
this.form.setFieldsValue({
zoneid: 0
})
this.handleZoneChange(this.zones[0])
}
})
},
handleZoneChange (zone) {
this.selectedZone = zone
this.updateVPCCheckAndFetchNetworkOfferingData()
},
fetchDomainData () {
const params = {}
params.listAll = true
params.details = 'min'
this.domainLoading = true
api('listDomains', params).then(json => {
const listDomains = json.listdomainsresponse.domain
this.domains = this.domains.concat(listDomains)
}).finally(() => {
this.domainLoading = false
this.form.setFieldsValue({
domainid: 0
})
this.handleDomainChange(this.domains[0])
})
},
handleDomainChange (domain) {
this.selectedDomain = domain
this.accountVisible = domain.id !== '-1'
if (this.isAdminOrDomainAdmin()) {
this.updateVPCCheckAndFetchNetworkOfferingData()
}
},
updateVPCCheckAndFetchNetworkOfferingData () {
if (this.vpc !== null) { // from VPC section
this.fetchNetworkOfferingData(true)
} else { // from guest network section
var params = {}
this.networkOfferingLoading = true
api('listVPCs', params).then(json => {
const listVPCs = json.listvpcsresponse.vpc
var vpcAvailable = this.arrayHasItems(listVPCs)
if (vpcAvailable === false) {
this.fetchNetworkOfferingData(false)
} else {
this.fetchNetworkOfferingData()
}
})
}
},
fetchNetworkOfferingData (forVpc) {
this.networkOfferingLoading = true
var params = {
zoneid: this.selectedZone.id,
guestiptype: 'L2',
state: 'Enabled'
}
if (this.isAdminOrDomainAdmin() && this.selectedDomain.id !== '-1') { // domain is visible only for admins
params.domainid = this.selectedDomain.id
}
if (!this.isAdmin()) { // normal user is not aware of the VLANs in the system, so normal user is not allowed to create network with network offerings whose specifyvlan = true
params.specifyvlan = false
}
if (forVpc !== null) {
params.forvpc = forVpc
}
api('listNetworkOfferings', params).then(json => {
this.networkOfferings = json.listnetworkofferingsresponse.networkoffering
}).catch(error => {
this.$notifyError(error)
}).finally(() => {
this.networkOfferingLoading = false
if (this.arrayHasItems(this.networkOfferings)) {
this.form.setFieldsValue({
networkofferingid: 0
})
this.handleNetworkOfferingChange(this.networkOfferings[0])
}
})
},
handleNetworkOfferingChange (networkOffering) {
this.selectedNetworkOffering = networkOffering
},
handleSubmit (e) {
this.form.validateFields((error, values) => {
if (error) {
return
}
this.actionLoading = true
var params = {
zoneId: this.selectedZone.id,
name: values.name,
displayText: values.displaytext,
networkOfferingId: this.selectedNetworkOffering.id
}
if (this.isValidTextValueForKey(values, 'vlanid')) {
params.vlan = values.vlanid
}
if (this.isValidValueForKey(values, 'bypassvlanoverlapcheck')) {
params.bypassvlanoverlapcheck = values.bypassvlanoverlapcheck
}
if ('domainid' in values && values.domainid > 0) {
params.domainid = this.selectedDomain.id
if (this.isValidTextValueForKey(values, 'account')) {
params.account = values.account
}
}
if (this.isValidValueForKey(values, 'isolatedpvlantype') && values.isolatedpvlantype !== 'none') {
params.isolatedpvlantype = values.isolatedpvlantype
if (this.isValidValueForKey(values, 'isolatedpvlan')) {
params.isolatedpvlan = values.isolatedpvlan
}
}
api('createNetwork', params).then(json => {
this.$notification.success({
message: 'Network',
description: this.$t('message.success.create.l2.network')
})
this.$emit('refresh-data')
this.closeAction()
}).catch(error => {
this.$notifyError(error)
}).finally(() => {
this.actionLoading = false
})
})
},
showInput () {
this.inputVisible = true
this.$nextTick(function () {
this.$refs.input.focus()
})
},
resetForm () {
this.form.setFieldsValue({
})
this.tags = []
},
closeAction () {
this.$emit('close-action')
}
}
}
</script>
<style lang="less" scoped>
.form-layout {
.ant-tag {
margin-bottom: 10px;
}
/deep/.custom-time-select .ant-time-picker {
width: 100%;
}
/deep/.ant-divider-horizontal {
margin-top: 0;
}
}
.form {
margin: 10px 0;
}
.tagsTitle {
font-weight: 500;
color: rgba(0, 0, 0, 0.85);
margin-bottom: 12px;
}
.action-button {
text-align: right;
button {
margin-right: 5px;
}
}
</style>