| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{$t('compute.server.quick.recovery')}}</div>
- <div slot="body">
- <dialog-selected-tips :name="$t('dictionary.server')" :count="params.data.length" :action="$t('compute.server.quick.recovery')" />
- <dialog-table :data="params.data" :columns="columns" />
- <a-form :form="form.fc" hideRequiredMark v-bind="formItemLayout">
- <!-- 自动启动 -->
- <a-form-item :label="$t('compute.text_494')" v-if="isSingle && firstData.status === 'ready'" :extra="$t('compute.text_1263')">
- <a-switch
- :checkedChildren="$t('compute.text_115')"
- :unCheckedChildren="$t('compute.text_116')"
- v-decorator="decorators.auto_start" />
- </a-form-item>
- <a-form-item
- :label="$t('compute.text_111')"
- :validate-status="message ? 'warning' : hostValidateStatus"
- :help="message || hostValidateMsg">
- <list-select
- v-decorator="decorators.host"
- :list-props="resourceProps"
- :formatter="v => v.name"
- :multiple="false"
- :placeholder="$t('compute.text_314')"
- :dialog-params="{ title: $t('compute.text_111'), width: 1060 }"
- @change="hostChangeHandle" />
- </a-form-item>
- </a-form>
- </div>
- <div slot="footer">
- <a-button type="primary" @click="handleConfirm" :loading="loading" :disabled="handleConfirmDisabled">{{ $t('dialog.ok') }}</a-button>
- <a-button @click="cancelDialog">{{ $t('dialog.cancel') }}</a-button>
- </div>
- </base-dialog>
- </template>
- <script>
- import { mapGetters } from 'vuex'
- import DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- import ListSelect from '@/sections/ListSelect'
- import ResourceProps from '../mixins/resourceProps'
- export default {
- name: 'VmQuickRecoveryDialog',
- components: {
- ListSelect,
- },
- mixins: [DialogMixin, WindowsMixin, ResourceProps],
- data () {
- return {
- loading: false,
- form: {
- fc: this.$form.createForm(this),
- },
- forcastData: null,
- hosts: [],
- message: '',
- decorators: {
- host: [
- 'host',
- {
- rules: [
- { required: false, message: this.$t('compute.text_314'), trigger: 'change' },
- ],
- },
- ],
- auto_start: [
- 'auto_start',
- {
- initialValue: true,
- valuePropName: 'checked',
- },
- ],
- },
- formItemLayout: {
- wrapperCol: {
- span: 20,
- },
- labelCol: {
- span: 4,
- },
- },
- }
- },
- computed: {
- ...mapGetters(['scope', 'isAdminMode']),
- firstData () {
- return this.params.data[0]
- },
- isSingle () {
- return this.params.data.length === 1
- },
- hostsParams () {
- let hostType = 'hypervisor'
- const hostIds = this.forcastData?.filtered_candidates?.map(v => v.id) || []
- if (this.firstData.hypervisor !== 'kvm') {
- hostType = this.firstData.hypervisor
- }
- const ret = {
- scope: this.scope,
- host_type: hostType,
- limit: 10,
- enabled: 1,
- host_status: 'online',
- server_id_for_network: this.firstData.id,
- os_arch: this.firstData.os_arch,
- }
- if (this.isAdminMode && this.isSingle) {
- ret.project_domain = this.params.data[0].domain_id
- }
- if (hostIds && hostIds.length > 0) {
- ret.filter = `id.notin(${hostIds.join(',')})`
- }
- return ret
- },
- hostsOptions () {
- const hostIds = this.forcastData?.filtered_candidates?.map(v => v.id) || []
- if (this.forcastData?.can_create === false) {
- return []
- }
- return this.hosts.filter(v => {
- return !hostIds.includes(v.id) && v.id !== this.firstData.host_id
- }).map(v => {
- return {
- key: v.id,
- label: v.name,
- }
- })
- },
- hostValidateStatus () {
- if (this.forcastData && this.hostsOptions?.length === 0) {
- return 'error'
- }
- return 'success'
- },
- hostValidateMsg () {
- if (this.forcastData && this.hostsOptions?.length === 0) {
- return this.$t('compute.transfer_host')
- }
- return this.$t('compute.text_1384')
- },
- handleConfirmDisabled () {
- return this.forcastData && this.hostsOptions?.length === 0
- },
- columns () {
- const fields = ['name', 'status', 'host']
- return this.params.columns.filter(item => {
- const { field } = item
- return fields.indexOf(field) > -1
- })
- },
- },
- created () {
- this.isSingle && this.queryForcastData()
- this.queryHosts()
- },
- methods: {
- doSingleTransfer (ids, values) {
- const data = {
- prefer_host: values.host,
- rescue_mode: true,
- }
- if (this.firstData.status === 'ready') {
- data.auto_start = values.auto_start
- }
- return this.params.onManager('performAction', {
- id: this.firstData.id,
- steadyStatus: ['running', 'ready'],
- managerArgs: {
- action: 'migrate',
- data,
- },
- })
- },
- doBatchTransfer (ids, values) {
- const data = {
- guest_ids: ids,
- prefer_host: values.host,
- rescue_mode: true,
- }
- return this.params.onManager('performClassAction', {
- id: ids,
- steadyStatus: ['running', 'ready'],
- managerArgs: {
- action: 'batch-migrate',
- data,
- },
- })
- },
- async handleConfirm () {
- this.loading = true
- try {
- const values = await this.form.fc.validateFields()
- const ids = this.params.data.map(item => item.id)
- if (this.isSingle) {
- await this.doSingleTransfer(ids, values)
- } else {
- await this.doBatchTransfer(ids, values)
- }
- this.cancelDialog()
- } finally {
- this.loading = false
- }
- },
- doForecast (prefer_host_id) {
- const manager = new this.$Manager('servers')
- const params = {
- live_migrate: false,
- is_rescue_mode: true,
- }
- if (prefer_host_id) {
- params.prefer_host_id = prefer_host_id
- }
- return manager.performAction({
- id: this.params.data[0].id,
- action: 'migrate-forecast',
- data: params,
- })
- },
- queryForcastData (prefer_host_id) {
- this.doForecast(prefer_host_id).then((res) => {
- this.forcastData = res.data
- }).catch((err) => {
- console.log(err)
- throw err
- })
- },
- queryHosts () {
- const hostsManager = new this.$Manager('hosts')
- hostsManager.list({ params: this.hostsParams }).then((res) => {
- this.hosts = res.data.data || []
- }).catch((err) => {
- console.log(err)
- throw err
- })
- },
- hostChangeHandle (hostId) {
- const hostArr = this.params.data.filter(v => v.host_id === hostId)
- if (hostArr.length > 0) {
- this.message = this.$t('compute.transfer_mutiple_dialog_alert', [hostArr.length])
- } else {
- this.message = ''
- }
- },
- },
- }
- </script>
|