| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{$t('compute.text_247')}}</div>
- <div slot="body">
- <a-alert class="mb-2" :message="$t('compute.need_reboot_prompt')" banner />
- <dialog-selected-tips :name="$t('dictionary.server')" :count="params.data.length" :action="$t('compute.text_247')" />
- <dialog-table :data="params.data" :columns="params.columns.slice(0, 3)" />
- <a-form
- :form="form.fc"
- v-bind="formItemLayout">
- <!-- <a-form-item :label="$t('common.text00076')" v-bind="formItemLayout">
- <a-radio-group v-decorator="decorators.disable_delete">
- <a-radio-button
- v-for="item of disableDeleteOptions"
- :key="item.key"
- :value="item.key">{{ item.label }}</a-radio-button>
- </a-radio-group>
- </a-form-item> -->
- <template v-if="isKvm">
- <!-- <a-form-item :label="$t('compute.text_1269')" v-bind="formItemLayout">
- <a-radio-group v-decorator="decorators.boot_order">
- <a-radio-button
- v-for="item of bootOrderOptions"
- :key="item.key"
- :value="item.key">{{ item.label }}</a-radio-button>
- </a-radio-group>
- </a-form-item> -->
- <a-form-item :label="$t('compute.text_1155')">
- <bios :decorator="decorators.bios" :isArm="isArm" />
- </a-form-item>
- <a-form-item :label="$t('compute.vdi_protocol')">
- <vdi :decorator="decorators.vdi" @change="handleVdiChange" />
- </a-form-item>
- <a-form-item :label="$t('compute.vga')">
- <vga :decorator="decorators.vga" :vdi="vdi" :form="form" />
- </a-form-item>
- <a-form-item :label="$t('compute.machine')">
- <machine :decorator="decorators.machine" :isArm="isArm" />
- </a-form-item>
- <a-form-item v-if="isKvm" :label="$t('compute.usb_kbd')">
- <a-switch v-decorator="decorators.disable_usb_kbd" />
- </a-form-item>
- <a-form-item :label="$t('compute.text_494')" :extra="$t('compute.daemon.tooltip')" v-if="canAdminUpdate">
- <a-switch v-model="is_daemon" />
- </a-form-item>
- </template>
- </a-form>
- </div>
- <div slot="footer">
- <a-button type="primary" @click="handleConfirm" :loading="loading">{{ $t('dialog.ok') }}</a-button>
- <a-button @click="cancelDialog">{{ $t('dialog.cancel') }}</a-button>
- </div>
- </base-dialog>
- </template>
- <script>
- import DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- import { hasPermission } from '@/utils/auth'
- import Bios from '@Compute/sections/BIOS'
- import Vdi from '@Compute/sections/VDI'
- import Vga from '@Compute/sections/VGA'
- import Machine from '@Compute/sections/Machine'
- export default {
- name: 'VmUpdateDialog',
- components: {
- Bios,
- Vdi,
- Vga,
- Machine,
- },
- mixins: [DialogMixin, WindowsMixin],
- data () {
- return {
- loading: false,
- form: {
- fc: this.$form.createForm(this),
- },
- vdi: 'vnc',
- is_daemon: false,
- decorators: {
- disable_delete: [
- 'disable_delete',
- {
- rules: [
- { required: true, message: this.$t('compute.text_1270') },
- ],
- },
- ],
- // boot_order: [
- // 'boot_order',
- // {
- // rules: [
- // { required: true, message: this.$t('compute.text_1271') },
- // ],
- // },
- // ],
- bios: [
- 'bios',
- {
- rules: [
- { required: true, message: this.$t('compute.text_1272') },
- ],
- },
- ],
- vdi: [
- 'vdi',
- {
- rules: [
- { required: true, message: this.$t('compute.prompt_vdi') },
- ],
- },
- ],
- vga: [
- 'vga',
- {
- rules: [
- { required: true, message: this.$t('compute.prompt_vga') },
- ],
- },
- ],
- machine: [
- 'machine',
- {
- rules: [
- { required: true, message: this.$t('compute.prompt_machine') },
- ],
- },
- ],
- disable_usb_kbd: [
- 'disable_usb_kbd',
- {
- initialValue: this.params.data[0]?.metadata?.disable_usb_kbd === 'true',
- valuePropName: 'checked',
- },
- ],
- },
- bootOrderOptions: [
- {
- label: this.$t('compute.text_100'),
- key: 'cdn',
- },
- {
- label: this.$t('compute.text_1273'),
- key: 'dcn',
- },
- {
- label: this.$t('compute.text_104'),
- key: 'ncd',
- },
- ],
- disableDeleteOptions: [
- {
- label: this.$t('compute.text_656'),
- key: true,
- },
- {
- label: this.$t('compute.text_569'),
- key: false,
- },
- ],
- formItemLayout: {
- wrapperCol: {
- span: 20,
- },
- labelCol: {
- span: 4,
- },
- },
- }
- },
- computed: {
- isKvm () {
- return this.params.data.length >= 1 && this.params.data[0].hypervisor === 'kvm'
- },
- isArm () {
- return this.params.data.length >= 1 && (this.params.data[0].os_arch === 'arm' || this.params.data[0].os_arch === 'aarch64')
- },
- canAdminUpdate () {
- return hasPermission({ key: 'server_update', resourceData: this.params.data[0] }) && this.$store.getters.isAdminMode
- },
- },
- created () {
- this.initFormValue(this.params.data[0])
- },
- methods: {
- async handleConfirm () {
- this.loading = true
- try {
- const values = await this.form.fc.validateFields()
- values.is_daemon = this.is_daemon
- const ids = this.params.data.map(item => item.id)
- await this.params.onManager('batchUpdate', {
- id: ids,
- managerArgs: {
- data: values,
- },
- })
- const syncIds = this.params.data.filter(item => item.status === 'ready').map(item => item.id)
- if (syncIds && syncIds.length > 0) {
- await this.params.onManager('batchPerformAction', {
- id: syncIds,
- managerArgs: {
- action: 'sync',
- },
- })
- }
- if (this.isKvm) {
- await this.params.onManager('batchPerformAction', {
- id: ids,
- managerArgs: {
- action: 'set-qemu-params',
- data: {
- disable_usb_kbd: values.disable_usb_kbd,
- },
- },
- })
- }
- this.loading = false
- this.cancelDialog()
- } catch (error) {
- this.loading = false
- }
- },
- initFormValue (data) {
- this.$nextTick(() => {
- const updateObj = {
- disable_delete: data.disable_delete,
- }
- if (this.isKvm) {
- // updateObj.boot_order = data.boot_order
- updateObj.bios = data.bios || (this.isArm ? 'UEFI' : 'BIOS')
- updateObj.vdi = data.vdi ? data.vdi : 'vnc'
- updateObj.vga = data.vga ? data.vga : 'std'
- this.vdi = updateObj.vdi
- updateObj.machine = data.machine ? data.machine : (this.isArm ? 'virt' : 'pc')
- // updateObj.is_daemon = data.is_daemon
- this.is_daemon = data.is_daemon
- }
- this.form.fc.setFieldsValue(updateObj)
- })
- },
- handleVdiChange (data) {
- this.vdi = data.value
- },
- },
- }
- </script>
|