mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-13 13:11:43 +00:00
* fix error banner position in all dialogs Signed-off-by: Andy Lee <andy.lee@suse.com> * update HarvesterImageDownloader.vue Signed-off-by: Andy Lee <andy.lee@suse.com> --------- Signed-off-by: Andy Lee <andy.lee@suse.com>
205 lines
4.8 KiB
Vue
205 lines
4.8 KiB
Vue
<script>
|
|
import { mapGetters } from 'vuex';
|
|
|
|
import { NODE } from '@shell/config/types';
|
|
import { exceptionToErrorsArray } from '@shell/utils/error';
|
|
import { HCI as HCI_ANNOTATIONS } from '@pkg/harvester/config/labels-annotations';
|
|
|
|
import { Card } from '@components/Card';
|
|
import { Banner } from '@components/Banner';
|
|
import AsyncButton from '@shell/components/AsyncButton';
|
|
import LabeledSelect from '@shell/components/form/LabeledSelect';
|
|
import { HCI } from '../types';
|
|
|
|
export default {
|
|
emits: ['close'],
|
|
|
|
components: {
|
|
AsyncButton, Banner, Card, LabeledSelect
|
|
},
|
|
|
|
props: {
|
|
resources: {
|
|
type: Array,
|
|
required: true
|
|
}
|
|
},
|
|
|
|
async fetch() {
|
|
try {
|
|
if (!this.actionResource.hasAction('findMigratableNodes')) {
|
|
return;
|
|
}
|
|
|
|
const res = await this.actionResource.$dispatch('resourceAction', {
|
|
resource: this.actionResource,
|
|
actionName: 'findMigratableNodes',
|
|
body: {},
|
|
opt: {},
|
|
});
|
|
|
|
this.availableNodes = res.nodes;
|
|
} catch (err) {
|
|
this.actionResource.$dispatch('growl/fromError', {
|
|
title: this.t('generic.notification.title.error'),
|
|
err: err.data || err,
|
|
}, { root: true });
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
nodeName: '',
|
|
errors: [],
|
|
availableNodes: []
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
...mapGetters({ t: 'i18n/t' }),
|
|
|
|
actionResource() {
|
|
return this.resources[0];
|
|
},
|
|
|
|
vmi() {
|
|
const inStore = this.$store.getters['currentProduct'].inStore;
|
|
const vmiResources = this.$store.getters[`${ inStore }/all`](HCI.VMI);
|
|
const resource = vmiResources.find((VMI) => VMI.id === this.actionResource?.id) || null;
|
|
|
|
return resource;
|
|
},
|
|
|
|
cpuPinningAlertMessage() {
|
|
return this.t('harvester.virtualMachine.cpuPinning.migrationMessage');
|
|
},
|
|
|
|
nodeNameList() {
|
|
const nodes = this.$store.getters['harvester/all'](NODE);
|
|
|
|
return nodes.filter((n) => {
|
|
const isNotSelfNode = !!this.availableNodes.includes(n.id);
|
|
const isNotWitnessNode = n.isEtcd !== 'true'; // do not allow to migrate to self node and witness node
|
|
const isCpuPinning = this.actionResource?.isCpuPinning;
|
|
const matchingCpuManagerConfig = !isCpuPinning || n.isCPUManagerEnabled; // If cpu-pinning is enabled, filter-out non-enabled CPU manager nodes.
|
|
|
|
return isNotSelfNode && isNotWitnessNode && matchingCpuManagerConfig;
|
|
}).map((n) => {
|
|
let label = n?.metadata?.name;
|
|
const value = n?.metadata?.name;
|
|
const custom = n?.metadata?.annotations?.[HCI_ANNOTATIONS.HOST_CUSTOM_NAME];
|
|
|
|
if (custom) {
|
|
label = custom;
|
|
}
|
|
|
|
return {
|
|
label,
|
|
value
|
|
};
|
|
});
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
close() {
|
|
this.nodeName = '';
|
|
this.errors = [];
|
|
this.$emit('close');
|
|
},
|
|
|
|
async apply(buttonDone) {
|
|
if (!this.actionResource) {
|
|
buttonDone(false);
|
|
|
|
return;
|
|
}
|
|
|
|
if (!this.nodeName) {
|
|
const name = this.$store.getters['i18n/t']('harvester.modal.migration.fields.nodeName.label');
|
|
const message = this.$store.getters['i18n/t']('validation.required', { key: name });
|
|
|
|
this['errors'] = [message];
|
|
buttonDone(false);
|
|
|
|
return;
|
|
}
|
|
|
|
try {
|
|
await this.actionResource.doAction('migrate', { nodeName: this.nodeName }, {}, false);
|
|
|
|
buttonDone(true);
|
|
this.close();
|
|
} catch (err) {
|
|
const error = err?.data || err;
|
|
const message = exceptionToErrorsArray(error);
|
|
|
|
this['errors'] = message;
|
|
buttonDone(false);
|
|
}
|
|
},
|
|
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<Card :show-highlight-border="false">
|
|
<template #title>
|
|
{{ t('harvester.modal.migration.title') }}
|
|
</template>
|
|
|
|
<template #body>
|
|
<Banner
|
|
v-if="actionResource?.isCpuPinning"
|
|
color="warning"
|
|
:label="cpuPinningAlertMessage"
|
|
/>
|
|
<LabeledSelect
|
|
v-model:value="nodeName"
|
|
:label="t('harvester.modal.migration.fields.nodeName.label')"
|
|
:placeholder="t('harvester.modal.migration.fields.nodeName.placeholder')"
|
|
:options="nodeNameList"
|
|
/>
|
|
<Banner
|
|
v-for="(err, i) in errors"
|
|
:key="i"
|
|
color="error"
|
|
:label="err"
|
|
/>
|
|
</template>
|
|
|
|
<template
|
|
#actions
|
|
class="actions"
|
|
>
|
|
<div class="buttons">
|
|
<button
|
|
class="btn role-secondary mr-10"
|
|
@click="close"
|
|
>
|
|
{{ t('generic.cancel') }}
|
|
</button>
|
|
|
|
<AsyncButton
|
|
mode="apply"
|
|
:disabled="!nodeName"
|
|
@click="apply"
|
|
/>
|
|
</div>
|
|
</template>
|
|
</Card>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.actions {
|
|
width: 100%;
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
width: 100%;
|
|
}
|
|
</style>
|