| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{$t('compute.disk_perform_create_snapshot')}}</div>
- <div slot="body">
- <a-alert class="mb-2" type="warning">
- <div slot="message">{{$t('compute.text_1251')}}</div>
- </a-alert>
- <dialog-selected-tips :name="$t('dictionary.server')" :count="params.data.length" :action="$t('compute.disk_perform_create_snapshot')" />
- <dialog-table
- :data="params.data"
- :columns="params.columns.slice(0, 3)" />
- <a-form :form="form.fc" v-bind="formItemLayout">
- <a-form-item :label="$t('compute.text_1071')" v-if="isKvm || isEsxi">
- <a-radio-group
- v-decorator="decorators.snapshotType"
- @change="snapshotTypeChangeHandle">
- <a-tooltip>
- <template slot="title" v-if="isEsxi">
- <span>{{$t('compute.text_1358')}}</span>
- </template>
- <a-radio value="disk" :disabled="isEsxi">{{$t('compute.text_101')}}</a-radio>
- </a-tooltip>
- <a-radio value="instance">{{$t('compute.text_102')}}</a-radio>
- </a-radio-group>
- </a-form-item>
- <a-form-item
- :label="$t('compute.text_1254')"
- v-if="isDiskSnapshot">
- <base-select
- style="width: 100%"
- v-decorator="decorators.disk"
- :params="diskParams"
- :select-props="{ placeholder: $t('compute.text_1085') }"
- resource="disks"
- idKey="disk_id"
- nameKey="disk"
- :label-format="getDiskLabel"
- :ctx="[['servers', this.params.data[0].id]]"
- :filterable="true"
- :isDefaultSelect="true"
- :item.sync="selectDisk" />
- </a-form-item>
- <a-form-item
- :label="$t('compute.text_415')">
- <a-input
- v-decorator="decorators.snapshotName"
- :placeholder="$t('validator.resourceName')" />
- <div slot="extra">
- <div v-if="showRepeatTips">{{$t('compute.text_1091')}}</div>
- <div v-show="!isDiskSnapshot">{{$t('compute.text_1255', [ diskCount ])}}</div>
- </div>
- </a-form-item>
- <a-form-item v-if="!isDiskSnapshot">
- <a-tooltip>
- <template v-if="!isRunningVm" slot="title">
- {{$t('compute.create_mem_snapshot_limit')}}
- </template>
- <a-checkbox
- v-decorator="decorators.with_memory"
- :disabled="!isRunningVm">
- {{$t('compute.create_mem_snapshot_same_time')}}
- </a-checkbox>
- </a-tooltip>
- </a-form-item>
- </a-form>
- </div>
- <div slot="footer">
- <a-button type="primary" @click="handleConfirm" :loading="loading" :disabled="disabledSubmit">{{
- $t("dialog.ok")
- }}</a-button>
- <a-button @click="cancelDialog">{{ $t("dialog.cancel") }}</a-button>
- </div>
- </base-dialog>
- </template>
- <script>
- import debounce from 'lodash/debounce'
- import * as R from 'ramda'
- import { DISK_TYPE } from '@Compute/constants'
- import { INPUT_DEBOUNCE_TIMER } from '@/constants/config'
- import DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- import { sizestr } from '@/utils/utils'
- import { typeClouds } from '@/utils/common/hypervisor'
- const hypervisorMap = typeClouds.hypervisorMap
- export default {
- name: 'VmSnapshotCreateDialog',
- mixins: [DialogMixin, WindowsMixin],
- data () {
- return {
- loading: false,
- showRepeatTips: false,
- form: {
- fc: this.$form.createForm(this, {
- name: 'snapshort_create_form',
- onFieldsChange: this.onFieldsChange,
- onValuesChange: this.onValuesChange,
- }),
- fd: {
- snapshotName: '',
- snapshotType: this.params.data[0].hypervisor === hypervisorMap.esxi.key ? 'instance' : 'disk',
- },
- },
- decorators: {
- snapshotType: [
- 'snapshotType',
- {
- initialValue: this.params.data[0].hypervisor === hypervisorMap.esxi.key ? 'instance' : 'disk',
- },
- ],
- disk: [
- 'disk',
- {
- rules: [
- { required: true, message: this.$t('compute.text_1085'), trigger: 'change' },
- ],
- },
- ],
- snapshotName: [
- 'snapshotName',
- {
- validateFirst: true,
- rules: [
- { required: true, message: this.$t('compute.text_1256') },
- { validator: this.$validate('resourceName') },
- ],
- },
- ],
- with_memory: [
- 'with_memory',
- ],
- },
- formItemLayout: {
- labelCol: { span: 4 },
- wrapperCol: { span: 20 },
- },
- selectDisk: {},
- disabledSubmit: false,
- }
- },
- computed: {
- isKvm () {
- return this.params.data[0].hypervisor === hypervisorMap.kvm.key
- },
- isEsxi () {
- return this.params.data[0].hypervisor === hypervisorMap.esxi.key
- },
- diskParams () {
- return {
- scope: this.$store.getters.scope,
- details: true,
- with_meta: true,
- }
- },
- isDiskSnapshot () {
- if (this.params.data[0].hypervisor === hypervisorMap.cnware.key) {
- return false
- }
- return this.form.fd.snapshotType === 'disk'
- },
- manager () {
- return new this.$Manager(this.isDiskSnapshot ? 'snapshots' : 'instance_snapshots', 'v2')
- },
- diskCount () {
- return this.params.data[0].disk_count
- },
- isRunningVm () {
- return this.params.data[0].status === 'running'
- },
- },
- watch: {
- 'form.fd.snapshotName' (val) {
- this.debounceCheckTemplateName()
- },
- 'selectDisk' (val) {
- this.disabledSubmit = val.storage_type === 'nova'
- },
- },
- created () {
- this.debounceCheckTemplateName = debounce(() => {
- this.checkTemplateName()
- }, INPUT_DEBOUNCE_TIMER)
- },
- methods: {
- checkTemplateName () {
- const snapshotName = this.form.fd.snapshotName
- if (!R.isNil(snapshotName) && !R.isEmpty(snapshotName)) {
- this.manager.get({ id: snapshotName, params: { scope: this.$store.getters.scope } })
- .then(res => {
- const data = res.data
- if (!R.isNil(data) && !R.isEmpty(data)) {
- this.showRepeatTips = true // 重复名字
- }
- }).catch(() => {
- this.showRepeatTips = false
- })
- } else {
- this.showRepeatTips = false
- }
- },
- validateForm (fileds = []) {
- return new Promise((resolve, reject) => {
- this.form.fc.validateFields(fileds, (err, values) => {
- if (!err) {
- resolve(values)
- } else {
- reject(err)
- }
- })
- })
- },
- async doCreateDiskSnapshot () {
- const values = await this.validateForm(['disk', 'snapshotName'])
- const params = {
- disk: values.disk,
- generate_name: values.snapshotName,
- }
- return this.manager.create({ data: params })
- },
- async doCreateInstanceSnapshot () {
- const values = await this.validateForm(['snapshotName', 'with_memory'])
- const params = {
- generate_name: values.snapshotName,
- }
- if (values.with_memory) {
- params.with_memory = true
- }
- return this.params.onManager('performAction', {
- id: this.params.data[0].id,
- steadyStatus: ['running', 'ready'],
- managerArgs: {
- action: 'instance-snapshot',
- data: params,
- },
- })
- },
- async handleConfirm () {
- this.loading = true
- try {
- if (this.isDiskSnapshot) {
- await this.doCreateDiskSnapshot()
- } else {
- await this.doCreateInstanceSnapshot()
- }
- this.loading = false
- this.params.refresh()
- this.cancelDialog()
- this.$message.success(this.$t('compute.text_322'))
- } catch (error) {
- this.loading = false
- this.cancelDialog()
- }
- },
- getDiskLabel (item) {
- return `${item.disk}(${
- item.disk_type === DISK_TYPE.sys.value
- ? DISK_TYPE.sys.text
- : DISK_TYPE.data.text
- }, ${sizestr(item.disk_size, 'M', 1024)})`
- },
- snapshotTypeChangeHandle (e) {
- this.$nextTick(() => {
- this.debounceCheckTemplateName()
- })
- },
- onValuesChange (props, values) {
- Object.keys(values).forEach((key) => {
- this.form.fd[key] = values[key]
- })
- },
- },
- }
- </script>
|