blob: 1af7f420e66692aad04850f939328cac8e061cc2 [file] [log] [blame]
// 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
class="form-layout"
layout="vertical"
:ref="formRef"
:model="form"
:rules="rules"
v-ctrl-enter="handleSubmit"
@finish="handleSubmit">
<a-form-item name="name" ref="name">
<template #label>
<tooltip-label :title="$t('label.name')" :tooltip="apiParams.clustername.description"/>
</template>
<a-input
v-model:value="form.name"
v-focus="true" />
</a-form-item>
<a-form-item
name="arch"
ref="arch">
<template #label>
<tooltip-label :title="$t('label.arch')" :tooltip="apiParams.arch.description"/>
</template>
<a-select
showSearch
optionFilterProp="label"
:filterOption="(input, option) => {
return option.children[0].children.toLowerCase().indexOf(input.toLowerCase()) >= 0
}"
v-model:value="form.arch"
:placeholder="apiParams.arch.description">
<a-select-option v-for="opt in architectureTypes.opts" :key="opt.id">
{{ opt.name || opt.description }}
</a-select-option>
</a-select>
</a-form-item>
<a-form-item name="storageaccessgroups" ref="storageaccessgroups">
<template #label>
<tooltip-label :title="$t('label.storageaccessgroups')" :tooltip="apiParamsConfigureStorageAccess.storageaccessgroups.description"/>
</template>
<a-select
mode="tags"
v-model:value="form.storageaccessgroups"
showSearch
optionFilterProp="label"
:filterOption="(input, option) => {
return option.children?.[0].children.toLowerCase().indexOf(input.toLowerCase()) >= 0
}"
:loading="storageAccessGroupsLoading"
:placeholder="apiParamsConfigureStorageAccess.storageaccessgroups.description">
<a-select-option v-for="(opt) in storageAccessGroups" :key="opt">
{{ opt }}
</a-select-option>
</a-select>
</a-form-item>
<a-form-item name="externaldetails" ref="externaldetails" v-if="resource.hypervisortype === 'External' && resource.extensionid">
<template #label>
<tooltip-label :title="$t('label.configuration.details')" :tooltip="apiParams.externaldetails.description"/>
</template>
<div style="margin-bottom: 10px">{{ $t('message.add.extension.resource.details') }}</div>
<details-input
v-model:value="form.externaldetails" />
</a-form-item>
<div :span="24" class="action-button">
<a-button :loading="loading" @click="onCloseAction">{{ $t('label.cancel') }}</a-button>
<a-button :loading="loading" ref="submit" type="primary" @click="handleSubmit">{{ $t('label.ok') }}</a-button>
</div>
</a-form>
</a-spin>
</template>
<script>
import { ref, reactive, toRaw } from 'vue'
import { getAPI, postAPI } from '@/api'
import TooltipLabel from '@/components/widgets/TooltipLabel'
import DetailsInput from '@/components/widgets/DetailsInput'
export default {
name: 'ClusterUpdate',
components: {
TooltipLabel,
DetailsInput
},
props: {
action: {
type: Object,
required: true
},
resource: {
type: Object,
required: true
}
},
data () {
return {
loading: false,
architectureTypes: {},
storageAccessGroups: [],
storageAccessGroupsLoading: false
}
},
beforeCreate () {
this.apiParams = this.$getApiParams('updateCluster')
this.apiParamsConfigureStorageAccess = this.$getApiParams('configureStorageAccess')
},
created () {
this.initForm()
this.fetchData()
},
methods: {
initForm () {
this.formRef = ref()
this.form = reactive({
name: this.resource.name,
storageaccessgroups: this.resource.storageaccessgroups
? this.resource.storageaccessgroups.split(',')
: []
})
this.rules = reactive({})
},
fetchStorageAccessGroupsData () {
const params = {}
this.storageAccessGroupsLoading = true
getAPI('listStorageAccessGroups', params).then(json => {
const sags = json.liststorageaccessgroupsresponse.storageaccessgroup || []
for (const sag of sags) {
if (!this.storageAccessGroups.includes(sag.name)) {
this.storageAccessGroups.push(sag.name)
}
}
}).finally(() => {
this.storageAccessGroupsLoading = false
})
this.rules = reactive({})
},
fetchData () {
this.fetchArchitectureTypes()
this.fetchStorageAccessGroupsData()
this.fetchExtensionResourceMapDetails()
},
fetchArchitectureTypes () {
this.architectureTypes.opts = []
const typesList = []
typesList.push({
id: 'x86_64',
description: 'AMD 64 bits (x86_64)'
})
typesList.push({
id: 'aarch64',
description: 'ARM 64 bits (aarch64)'
})
this.architectureTypes.opts = typesList
},
fetchExtensionResourceMapDetails () {
this.form.externaldetails = null
if (!this.resource.id || !this.resource.extensionid) {
return
}
this.loading = true
const params = {
id: this.resource.extensionid,
details: 'resource'
}
getAPI('listExtensions', params).then(json => {
const resources = json?.listextensionsresponse?.extension?.[0]?.resources || []
const resourceMap = resources.find(r => r.id === this.resource.id)
if (resourceMap && resourceMap.details && typeof resourceMap.details === 'object') {
this.form.externaldetails = resourceMap.details
}
}).catch(error => {
this.$notifyError(error)
}).finally(() => {
this.loading = false
})
},
handleSubmit () {
this.formRef.value.validate().then(() => {
const values = toRaw(this.form)
const params = {}
params.id = this.resource.id
params.clustername = values.name
if (values.externaldetails) {
Object.entries(values.externaldetails).forEach(([key, value]) => {
params['externaldetails[0].' + key] = value
})
}
this.loading = true
postAPI('updateCluster', params).then(json => {
this.$message.success({
content: `${this.$t('label.action.update.cluster')} - ${values.name}`,
duration: 2
})
if (values.storageaccessgroups != null && values.storageaccessgroups.length > 0) {
params.storageaccessgroups = values.storageaccessgroups.join(',')
} else {
params.storageaccessgroups = ''
}
if (params.storageaccessgroups !== undefined && (this.resource.storageaccessgroups ? this.resource.storageaccessgroups.split(',').join(',') : '') !== params.storageaccessgroups) {
postAPI('configureStorageAccess', {
clusterid: params.id,
storageaccessgroups: params.storageaccessgroups
}).then(response => {
this.$pollJob({
jobId: response.configurestorageaccessresponse.jobid,
successMethod: () => {
this.$message.success({
content: this.$t('label.action.configure.storage.access.group'),
duration: 2
})
},
errorMessage: this.$t('message.configuring.storage.access.failed')
})
})
}
this.$emit('refresh-data')
this.onCloseAction()
}).catch(error => {
this.$notifyError(error)
}).finally(() => { this.loading = false })
}).catch(error => {
this.formRef.value.scrollToField(error.errorFields[0].name)
})
},
onCloseAction () {
this.$emit('close-action')
}
}
}
</script>
<style scoped lang="less">
.form-layout {
width: 80vw;
@media (min-width: 600px) {
width: 450px;
}
.action-button {
text-align: right;
margin-top: 20px;
button {
margin-right: 5px;
}
}
}
</style>