blob: 7da3084f96de3d7019863dfed91701703a08a4e6 [file] [log] [blame]
<template>
<div class="form-background p-3">
<b-form id="form-new-dump" novalidate @submit.prevent="handleSubmit">
<b-form-group
:label="$t('pageDumps.form.selectDumpType')"
label-for="selectDumpType"
>
<b-form-select
id="selectDumpType"
v-model="selectedDumpType"
:options="dumpTypeOptions"
:state="getValidationState(v$.selectedDumpType)"
>
<template #first>
<b-form-select-option :value="null" disabled>
{{ $t('global.form.selectAnOption') }}
</b-form-select-option>
</template>
</b-form-select>
<b-form-invalid-feedback role="alert">
{{ $t('global.form.required') }}
</b-form-invalid-feedback>
</b-form-group>
<alert variant="info" class="mb-3" :show="selectedDumpType === 'system'">
{{ $t('pageDumps.form.systemDumpInfo') }}
</alert>
<b-button variant="primary" type="submit" form="form-new-dump">
{{ $t('pageDumps.form.initiateDump') }}
</b-button>
</b-form>
<modal-confirmation @ok="createSystemDump" />
</div>
</template>
<script>
import { useVuelidate } from '@vuelidate/core';
import { required } from '@vuelidate/validators';
import ModalConfirmation from './DumpsModalConfirmation';
import Alert from '@/components/Global/Alert';
import BVToastMixin from '@/components/Mixins/BVToastMixin';
import VuelidateMixin from '@/components/Mixins/VuelidateMixin.js';
import i18n from '@/i18n';
export default {
components: { Alert, ModalConfirmation },
mixins: [BVToastMixin, VuelidateMixin],
setup() {
return {
v$: useVuelidate(),
};
},
data() {
return {
selectedDumpType: null,
dumpTypeOptions: [
{ value: 'bmc', text: i18n.global.t('pageDumps.form.bmcDump') },
{ value: 'system', text: i18n.global.t('pageDumps.form.systemDump') },
],
};
},
validations() {
return {
selectedDumpType: { required },
};
},
methods: {
handleSubmit() {
this.v$.$touch();
if (this.v$.$invalid) return;
// System dump initiation
if (this.selectedDumpType === 'system') {
this.showConfirmationModal();
}
// BMC dump initiation
else if (this.selectedDumpType === 'bmc') {
this.$store
.dispatch('dumps/createBmcDump')
.then(() =>
this.infoToast(
i18n.global.t('pageDumps.toast.successStartBmcDump'),
{
title: i18n.global.t(
'pageDumps.toast.successStartBmcDumpTitle',
),
timestamp: true,
},
),
)
.catch(({ message }) => this.errorToast(message));
}
},
showConfirmationModal() {
this.$bvModal.show('modal-confirmation');
},
createSystemDump() {
this.$store
.dispatch('dumps/createSystemDump')
.then(() =>
this.infoToast(
i18n.global.t('pageDumps.toast.successStartSystemDump'),
{
title: i18n.global.t(
'pageDumps.toast.successStartSystemDumpTitle',
),
timestamp: true,
},
),
)
.catch(({ message }) => this.errorToast(message));
},
},
};
</script>