This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/web/src/pages/outposts/OutpostListPage.ts

128 lines
5.7 KiB
TypeScript
Raw Normal View History

2021-02-08 18:04:19 +00:00
import { gettext } from "django";
import { customElement, property } from "lit-element";
import { html, TemplateResult } from "lit-html";
2021-02-09 16:04:55 +00:00
import { AKResponse } from "../../api/Client";
2021-02-08 18:04:19 +00:00
import { TableColumn } from "../../elements/table/Table";
import { TablePage } from "../../elements/table/TablePage";
import "./OutpostHealth";
import "../../elements/buttons/SpinnerButton";
import "../../elements/buttons/ModalButton";
import "../../elements/buttons/TokenCopyButton";
2021-03-02 14:12:26 +00:00
import { PAGE_SIZE } from "../../constants";
import { Outpost, OutpostsApi } from "authentik-api";
import { DEFAULT_CONFIG } from "../../api/Config";
import { AdminURLManager } from "../../api/legacy";
import { ifDefined } from "lit-html/directives/if-defined";
2021-02-08 18:04:19 +00:00
@customElement("ak-outpost-list")
export class OutpostListPage extends TablePage<Outpost> {
pageTitle(): string {
return "Outposts";
}
pageDescription(): string | undefined {
return "Outposts are deployments of authentik components to support different environments and protocols, like reverse proxies.";
}
pageIcon(): string {
return "pf-icon pf-icon-zone";
}
searchEnabled(): boolean {
return true;
}
2021-02-09 16:04:55 +00:00
apiEndpoint(page: number): Promise<AKResponse<Outpost>> {
return new OutpostsApi(DEFAULT_CONFIG).outpostsOutpostsList({
2021-02-08 18:04:19 +00:00
ordering: this.order,
page: page,
pageSize: PAGE_SIZE,
2021-02-08 18:04:19 +00:00
search: this.search || "",
});
}
columns(): TableColumn[] {
return [
new TableColumn("Name", "name"),
new TableColumn("Providers"),
new TableColumn("Health and Version"),
new TableColumn(""),
];
}
@property()
order = "name";
row(item: Outpost): TemplateResult[] {
return [
html`${item.name}`,
html`<ul>${item.providersObj?.map((p) => {
2021-02-19 18:29:17 +00:00
return html`<li><a href="#/core/providers/${p.pk}">${p.name}</a></li>`;
2021-02-08 18:04:19 +00:00
})}</ul>`,
html`<ak-outpost-health outpostId=${ifDefined(item.pk)}></ak-outpost-health>`,
2021-02-08 18:04:19 +00:00
html`
<ak-modal-button href="${AdminURLManager.outposts(`${item.pk}/update/`)}">
2021-02-08 18:04:19 +00:00
<ak-spinner-button slot="trigger" class="pf-m-secondary">
${gettext("Edit")}
</ak-spinner-button>
<div slot="modal"></div>
2021-02-09 08:57:59 +00:00
</ak-modal-button>&nbsp;
<ak-modal-button href="${AdminURLManager.outposts(`${item.pk}/delete/`)}">
2021-02-08 18:04:19 +00:00
<ak-spinner-button slot="trigger" class="pf-m-danger">
${gettext("Delete")}
</ak-spinner-button>
<div slot="modal"></div>
</ak-modal-button>
2021-02-08 18:04:19 +00:00
<ak-modal-button>
<button slot="trigger" class="pf-c-button pf-m-tertiary">
2021-02-08 18:42:49 +00:00
${gettext("View Deployment Info")}
2021-02-08 18:04:19 +00:00
</button>
<div slot="modal">
<div class="pf-c-modal-box__header">
2021-02-08 18:42:49 +00:00
<h1 class="pf-c-title pf-m-2xl" id="modal-title">${gettext("Outpost Deployment Info")}</h1>
2021-02-08 18:04:19 +00:00
</div>
<div class="pf-c-modal-box__body" id="modal-description">
2021-02-08 18:42:49 +00:00
<p><a href="https://goauthentik.io/docs/outposts/outposts/#deploy">${gettext("View deployment documentation")}</a></p>
2021-02-08 18:04:19 +00:00
<form class="pf-c-form">
<div class="pf-c-form__group">
<label class="pf-c-form__label" for="help-text-simple-form-name">
<span class="pf-c-form__label-text">AUTHENTIK_HOST</span>
</label>
<input class="pf-c-form-control" readonly type="text" value="${document.location.toString()}" />
</div>
<div class="pf-c-form__group">
<label class="pf-c-form__label" for="help-text-simple-form-name">
<span class="pf-c-form__label-text">AUTHENTIK_TOKEN</span>
</label>
<div>
<ak-token-copy-button identifier="${ifDefined(item.tokenIdentifier)}">
2021-02-08 18:42:49 +00:00
${gettext("Click to copy token")}
2021-02-08 18:04:19 +00:00
</ak-token-copy-button>
</div>
</div>
2021-02-08 18:42:49 +00:00
<h3>${gettext("If your authentik Instance is using a self-signed certificate, set this value.")}</h3>
2021-02-08 18:04:19 +00:00
<div class="pf-c-form__group">
<label class="pf-c-form__label" for="help-text-simple-form-name">
<span class="pf-c-form__label-text">AUTHENTIK_INSECURE</span>
</label>
<input class="pf-c-form-control" readonly type="text" value="true" />
</div>
</form>
</div>
<footer class="pf-c-modal-box__footer pf-m-align-left">
2021-02-08 18:42:49 +00:00
<a class="pf-c-button pf-m-primary">${gettext("Close")}</a>
2021-02-08 18:04:19 +00:00
</footer>
</div>
</ak-modal-button>`,
];
}
renderToolbar(): TemplateResult {
return html`
<ak-modal-button href=${AdminURLManager.outposts("create/")}>
2021-02-08 18:04:19 +00:00
<ak-spinner-button slot="trigger" class="pf-m-primary">
${gettext("Create")}
</ak-spinner-button>
<div slot="modal"></div>
</ak-modal-button>
${super.renderToolbar()}
`;
}
}