harvester-ui-extension/pkg/harvester/dialog/HarvesterVlanConfigMigrateDialog.vue
Francesco Torchia aba9c167e0
Vue3 migration - vue-migration.js launch + shell compatibility fixes
Signed-off-by: Francesco Torchia <francesco.torchia@suse.com>
2024-10-23 17:00:51 +02:00

139 lines
2.9 KiB
Vue

<script>
import { mapGetters } from 'vuex';
import { HCI } from '@pkg/harvester/types';
import { exceptionToErrorsArray } from '@shell/utils/error';
import { clone } from '@shell/utils/object';
import { Card } from '@components/Card';
import { Banner } from '@components/Banner';
import AsyncButton from '@shell/components/AsyncButton';
import LabeledSelect from '@shell/components/form/LabeledSelect';
export default {
components: {
AsyncButton,
Banner,
Card,
LabeledSelect,
},
props: {
resources: {
type: Array,
required: true
}
},
data() {
return {
clusterNetwork: '',
errors: [],
};
},
computed: {
...mapGetters({ t: 'i18n/t' }),
actionResource() {
return this.resources[0];
},
clusterNetworks() {
const inStore = this.$store.getters['currentProduct'].inStore;
const clusterNetworks = this.$store.getters[`${ inStore }/all`](HCI.CLUSTER_NETWORK);
return clusterNetworks.filter((c) => {
return c.id !== this.actionResource.spec?.clusterNetwork && c.id !== 'mgmt';
}).map((c) => {
const label = c.id;
const value = c.id;
return {
label,
value,
};
});
},
},
methods: {
close() {
this.nodeName = '';
this.errors = [];
this.$emit('close');
},
async apply(buttonDone) {
try {
const data = clone(this.actionResource);
data.spec.clusterNetwork = this.clusterNetwork;
await this.$store.dispatch('harvester/request', {
url: `/v1/harvester/${ HCI.VLAN_CONFIG }s/${ data.id }`,
method: 'PUT',
data,
});
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>
<LabeledSelect
v-model:value="clusterNetwork"
:label="t('harvester.harvesterVlanConfigMigrateDialog.targetClusterNetwork.label')"
:placeholder="t('harvester.harvesterVlanConfigMigrateDialog.targetClusterNetwork.placeholder')"
:options="clusterNetworks"
/>
</template>
<div slot="actions" class="actions">
<div class="buttons">
<button class="btn role-secondary mr-10" @click="close">
{{ t('generic.cancel') }}
</button>
<AsyncButton
mode="apply"
:disabled="!clusterNetwork"
@click="apply"
/>
</div>
<Banner v-for="(err, i) in errors" :key="i"/>
</div>
</Card>
</template>
<style lang="scss" scoped>
.actions {
width: 100%;
}
.buttons {
display: flex;
justify-content: flex-end;
width: 100%;
}
</style>