83 lines
2.6 KiB
TypeScript
83 lines
2.6 KiB
TypeScript
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
|
|
import { EVENT_REFRESH } from "@goauthentik/common/constants";
|
|
import { getRelativeTime } from "@goauthentik/common/utils";
|
|
import { AKElement } from "@goauthentik/elements/Base";
|
|
import { PFColor } from "@goauthentik/elements/Label";
|
|
import "@goauthentik/elements/Spinner";
|
|
|
|
import { msg, str } from "@lit/localize";
|
|
import { CSSResult, TemplateResult, html } from "lit";
|
|
import { customElement, property, state } from "lit/decorators.js";
|
|
|
|
import PFBase from "@patternfly/patternfly/patternfly-base.css";
|
|
|
|
import { OutpostHealth, OutpostsApi } from "@goauthentik/api";
|
|
|
|
@customElement("ak-outpost-health-simple")
|
|
export class OutpostHealthSimpleElement extends AKElement {
|
|
@property()
|
|
outpostId?: string;
|
|
|
|
@state()
|
|
outpostHealths: OutpostHealth[] = [];
|
|
|
|
@property({ attribute: false })
|
|
loaded = false;
|
|
|
|
@property({ attribute: false })
|
|
showVersion = true;
|
|
|
|
static get styles(): CSSResult[] {
|
|
return [PFBase];
|
|
}
|
|
|
|
constructor() {
|
|
super();
|
|
window.addEventListener(EVENT_REFRESH, () => {
|
|
this.outpostHealths = [];
|
|
this.firstUpdated();
|
|
});
|
|
}
|
|
|
|
firstUpdated(): void {
|
|
if (!this.outpostId) return;
|
|
new OutpostsApi(DEFAULT_CONFIG)
|
|
.outpostsInstancesHealthList({
|
|
uuid: this.outpostId,
|
|
})
|
|
.then((health) => {
|
|
this.loaded = true;
|
|
this.outpostHealths = health;
|
|
});
|
|
}
|
|
|
|
render(): TemplateResult {
|
|
if (!this.outpostId || !this.loaded) {
|
|
return html`<ak-spinner></ak-spinner>`;
|
|
}
|
|
if (!this.outpostHealths || this.outpostHealths.length === 0) {
|
|
return html`<ak-label color=${PFColor.Grey}>${msg("Not available")}</ak-label>`;
|
|
}
|
|
const outdatedOutposts = this.outpostHealths.filter((h) => h.versionOutdated);
|
|
if (outdatedOutposts.length > 0) {
|
|
return html`<ak-label color=${PFColor.Red}>
|
|
${msg(
|
|
str`${outdatedOutposts[0].version}, should be ${outdatedOutposts[0].versionShould}`,
|
|
)}</ak-label
|
|
>`;
|
|
}
|
|
const lastSeen = this.outpostHealths[0].lastSeen;
|
|
return html`<ak-label color=${PFColor.Green}>
|
|
${msg(
|
|
str`Last seen: ${getRelativeTime(lastSeen)} (${lastSeen.toLocaleTimeString()})`,
|
|
)}</ak-label
|
|
>`;
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
"ak-outpost-health-simple": OutpostHealthSimpleElement;
|
|
}
|
|
}
|