harvester-ui-extension/pkg/harvester/edit/harvesterhci.io.logging.clusterflow.vue
Francesco Torchia 4626d56acd
Lint fixes
Signed-off-by: Francesco Torchia <francesco.torchia@suse.com>
2024-11-12 11:50:20 +01:00

26 lines
791 B
Vue

<script>
import { LAST_NAMESPACE } from '@shell/store/prefs';
import { LOGGING } from '@shell/config/types';
import Flow from '@shell/edit/logging-flow';
export default {
extends: Flow,
created() {
if (this.isCreate && this.value.type === LOGGING.CLUSTER_FLOW) {
this.value.metadata.namespace = 'cattle-logging-system';
}
this.registerBeforeHook(this.willSave, 'willSave');
this.registerAfterHook(() => {
const allNamespaces = this.$store.getters['allNamespaces'];
const defaultNamepsace = allNamespaces.find((N) => N.id === 'default');
const ns = defaultNamepsace?.id || allNamespaces?.[0]?.id || '';
this.value.$dispatch('prefs/set', { key: LAST_NAMESPACE, value: ns }, { root: true });
this.willSave();
});
}
};
</script>