harvester-ui-extension/pkg/harvester/models/harvesterhci.io.keypair.js
Francesco Torchia 4f2688f6ab
Add pkg/harvester components + shell portings - 1
Signed-off-by: Francesco Torchia <francesco.torchia@suse.com>
2024-10-23 17:00:46 +02:00

13 lines
417 B
JavaScript

import { get } from '@shell/utils/object';
import { findBy } from '@shell/utils/array';
import HarvesterResource from './harvester';
export default class HciKeypair extends HarvesterResource {
get stateDisplay() {
const conditions = get(this, 'status.conditions');
const status = (findBy(conditions, 'type', 'validated') || {}).status ;
return status === 'True' ? 'Validated' : 'Not Validated';
}
}