mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-13 21:21:44 +00:00
116 lines
2.2 KiB
Vue
116 lines
2.2 KiB
Vue
<script>
|
|
import LabeledInput from '@components/Form/LabeledInput/LabeledInput.vue';
|
|
import { mapGetters } from 'vuex';
|
|
import { Card } from '@components/Card';
|
|
import AsyncButton from '@shell/components/AsyncButton';
|
|
import { escapeHtml } from '@shell/utils/string';
|
|
|
|
export default {
|
|
name: 'HarvesterEnableSriovDevice',
|
|
|
|
emits: ['close'],
|
|
|
|
components: {
|
|
LabeledInput,
|
|
AsyncButton,
|
|
Card,
|
|
},
|
|
|
|
props: {
|
|
resources: {
|
|
type: Array,
|
|
required: true
|
|
}
|
|
},
|
|
|
|
data() {
|
|
const numVFs = this.resources[0].spec?.numVFs || 1;
|
|
|
|
return { numVFs, numVFsHistory: numVFs };
|
|
},
|
|
|
|
computed: { ...mapGetters({ t: 'i18n/t' }) },
|
|
|
|
watch: {
|
|
numVFs(neu) {
|
|
if (!parseFloat(neu) || parseFloat(neu) < 1) {
|
|
this.numVFs = 1;
|
|
}
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
close() {
|
|
this.$emit('close');
|
|
},
|
|
|
|
async save(buttonCb) {
|
|
const actionResource = this.resources[0];
|
|
|
|
try {
|
|
this.resources[0].spec.numVFs = this.numVFs;
|
|
await actionResource.save();
|
|
buttonCb(true);
|
|
this.close();
|
|
} catch (err) {
|
|
this.resources[0].spec.numVFs = this.numVFsHistory;
|
|
this.$store.dispatch('growl/fromError', {
|
|
title: this.t('generic.notification.title.error', { name: escapeHtml(actionResource.metadata.name) }),
|
|
err,
|
|
}, { root: true });
|
|
buttonCb(false);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<Card :show-highlight-border="false">
|
|
<template #title>
|
|
<h4
|
|
v-clean-html="t('promptRemove.title')"
|
|
class="text-default-text"
|
|
/>
|
|
</template>
|
|
|
|
<template #body>
|
|
<LabeledInput
|
|
v-model:value.number="numVFs"
|
|
type="number"
|
|
min="1"
|
|
required
|
|
:label="t('harvester.sriov.numVFs')"
|
|
/>
|
|
</template>
|
|
|
|
<template #actions>
|
|
<div class="buttons actions">
|
|
<button
|
|
class="btn role-secondary mr-10"
|
|
@click="close"
|
|
>
|
|
{{ t('generic.cancel') }}
|
|
</button>
|
|
|
|
<AsyncButton
|
|
mode="enable"
|
|
@click="save"
|
|
/>
|
|
</div>
|
|
</template>
|
|
</Card>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.actions {
|
|
width: 100%;
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
width: 100%;
|
|
}
|
|
</style>
|