235d283def
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
68 lines
1.9 KiB
TypeScript
68 lines
1.9 KiB
TypeScript
import { t } from "@lingui/macro";
|
|
|
|
import { CSSResult, LitElement, TemplateResult, html } from "lit";
|
|
import { customElement, property } from "lit/decorators.js";
|
|
|
|
import AKGlobal from "../../authentik.css";
|
|
import PFBase from "@patternfly/patternfly/patternfly-base.css";
|
|
|
|
import { OutpostHealth, OutpostsApi } from "@goauthentik/api";
|
|
|
|
import { DEFAULT_CONFIG } from "../../api/Config";
|
|
import { EVENT_REFRESH } from "../../constants";
|
|
import { PFColor } from "../../elements/Label";
|
|
import "../../elements/Spinner";
|
|
|
|
@customElement("ak-outpost-health-simple")
|
|
export class OutpostHealthSimpleElement extends LitElement {
|
|
@property()
|
|
outpostId?: string;
|
|
|
|
@property({ attribute: false })
|
|
outpostHealth?: OutpostHealth;
|
|
|
|
@property({ attribute: false })
|
|
loaded = false;
|
|
|
|
@property({ attribute: false })
|
|
showVersion = true;
|
|
|
|
static get styles(): CSSResult[] {
|
|
return [PFBase, AKGlobal];
|
|
}
|
|
|
|
constructor() {
|
|
super();
|
|
window.addEventListener(EVENT_REFRESH, () => {
|
|
this.outpostHealth = undefined;
|
|
this.firstUpdated();
|
|
});
|
|
}
|
|
|
|
firstUpdated(): void {
|
|
if (!this.outpostId) return;
|
|
new OutpostsApi(DEFAULT_CONFIG)
|
|
.outpostsInstancesHealthList({
|
|
uuid: this.outpostId,
|
|
})
|
|
.then((health) => {
|
|
this.loaded = true;
|
|
if (health.length >= 1) {
|
|
this.outpostHealth = health[0];
|
|
}
|
|
});
|
|
}
|
|
|
|
render(): TemplateResult {
|
|
if (!this.outpostId || !this.loaded) {
|
|
return html`<ak-spinner></ak-spinner>`;
|
|
}
|
|
if (!this.outpostHealth) {
|
|
return html`<ak-label color=${PFColor.Grey}>${t`Not available`}</ak-label>`;
|
|
}
|
|
return html`<ak-label color=${PFColor.Green}>
|
|
${t`Last seen: ${this.outpostHealth.lastSeen?.toLocaleTimeString()}`}</ak-label
|
|
>`;
|
|
}
|
|
}
|