import { t } from "@lingui/macro"; import { css, CSSResult, customElement, html, property, TemplateResult } from "lit-element"; import PFAvatar from "@patternfly/patternfly/components/Avatar/avatar.css"; import { AKResponse } from "../../api/Client"; import { TablePage } from "../../elements/table/TablePage"; import "../../elements/forms/ModalForm"; import "../../elements/forms/DeleteForm"; import "../../elements/buttons/SpinnerButton"; import { TableColumn } from "../../elements/table/Table"; import { PAGE_SIZE } from "../../constants"; import { Application, CoreApi } from "authentik-api"; import { DEFAULT_CONFIG } from "../../api/Config"; import "./ApplicationForm"; @customElement("ak-application-list") export class ApplicationListPage extends TablePage { searchEnabled(): boolean { return true; } pageTitle(): string { return t`Applications`; } pageDescription(): string { return t`External Applications which use authentik as Identity-Provider, utilizing protocols like OAuth2 and SAML. All applications are shown here, even ones you cannot access.`; } pageIcon(): string { return "pf-icon pf-icon-applications"; } @property() order = "name"; apiEndpoint(page: number): Promise> { return new CoreApi(DEFAULT_CONFIG).coreApplicationsList({ ordering: this.order, page: page, pageSize: PAGE_SIZE, search: this.search || "", superuserFullList: true, }); } static get styles(): CSSResult[] { return super.styles.concat( PFAvatar, css` tr td:first-child { width: auto; min-width: 0px; text-align: center; vertical-align: middle; } `, ); } columns(): TableColumn[] { return [ new TableColumn(""), new TableColumn(t`Name`, "name"), new TableColumn(t`Slug`, "slug"), new TableColumn(t`Provider`), new TableColumn(t`Provider Type`), new TableColumn("Actions"), ]; } row(item: Application): TemplateResult[] { return [ item.metaIcon ? html`${t`Application Icon`}` : html``, html`
${item.name}
${item.metaPublisher ? html`${item.metaPublisher}` : html``}
`, html`${item.slug}`, item.provider ? html` ${item.providerObj?.name} ` : html`-`, html`${item.providerObj?.verboseName || "-"}`, html` ${t`Update`} ${t`Update Application`} ${item.launchUrl ? html` ${t`Open application`} ` : html``} { return new CoreApi(DEFAULT_CONFIG).coreApplicationsUsedByList({ slug: item.slug, }); }} .delete=${() => { return new CoreApi(DEFAULT_CONFIG).coreApplicationsDestroy({ slug: item.slug, }); }} > `, ]; } renderToolbar(): TemplateResult { return html` ${t`Create`} ${t`Create Application`} ${super.renderToolbar()} `; } }