import "./cluster-issues.scss"; import React from "react"; import { observer } from "mobx-react"; import { computed } from "mobx"; import { Icon } from "../icon"; import { SubHeader } from "../layout/sub-header"; import { Table, TableCell, TableHead, TableRow } from "../table"; import { nodesStore } from "../+nodes/nodes.store"; import { eventStore } from "../+events/event.store"; import { autobind, cssNames, prevDefault } from "../../utils"; import { ItemObject } from "../../item.store"; import { Spinner } from "../spinner"; import { themeStore } from "../../theme.store"; import { lookupApiLink } from "../../api/kube-api"; import { kubeSelectedUrlParam, showDetails } from "../kube-object"; interface Props { className?: string; } interface IWarning extends ItemObject { kind: string; message: string; selfLink: string; age: string | number; } enum sortBy { type = "type", object = "object", age = "age", } @observer export class ClusterIssues extends React.Component { private sortCallbacks = { [sortBy.type]: (warning: IWarning) => warning.kind, [sortBy.object]: (warning: IWarning) => warning.getName(), [sortBy.age]: (warning: IWarning) => warning.age || "", }; @computed get warnings() { const warnings: IWarning[] = []; // Node bad conditions nodesStore.items.forEach(node => { const { kind, selfLink, getId, getName, getAge } = node; node.getWarningConditions().forEach(({ message }) => { warnings.push({ age: getAge(), getId, getName, kind, message, selfLink, }); }); }); // Warning events for Workloads const events = eventStore.getWarnings(); events.forEach(error => { const { message, involvedObject, getAge } = error; const { uid, name, kind } = involvedObject; warnings.push({ getId: () => uid, getName: () => name, age: getAge(), message, kind, selfLink: lookupApiLink(involvedObject, error), }); }); return warnings; } @autobind() getTableRow(uid: string) { const { warnings } = this; const warning = warnings.find(warn => warn.getId() == uid); const { getId, getName, message, kind, selfLink, age } = warning; return ( showDetails(selfLink))} > {message} {getName()} {kind} {age} ); } renderContent() { const { warnings } = this; if (!eventStore.isLoaded) { return ( ); } if (!warnings.length) { return (
No issues found
Everything is fine in the Cluster
); } return ( <> {" "} <>Warnings: {warnings.length} Message Object Type Age
); } render() { return (
{this.renderContent()}
); } }