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

53 lines
963 B
Vue

<script>
import { HCI } from '../types';
export default {
props: {
value: {
type: String,
default: ''
}
},
async fetch() {
const harvesterSettings = await this.$store.dispatch('harvester/findAll', { type: HCI.SETTING });
this.harvesterSettings = harvesterSettings;
},
data() {
return { harvesterSettings: [] };
},
computed: {
isMatch() {
const harvesterSettings = this.$store.getters['harvester/all'](HCI.SETTING) || [];
const resource = harvesterSettings.find( (V) => V.id === 'backup-target');
let isMatch = false;
try {
isMatch = this.value === resource?.parseValue?.endpoint;
} catch (e) {}
return isMatch;
}
}
};
</script>
<template>
<div v-if="isMatch">
{{ value }}
</div>
<div v-else>
{{ value }}
<p
v-if="value"
class="text-error"
>
{{ t('harvester.backup.matchTarget') }}
</p>
</div>
</template>