import { LitElement, TemplateResult, html } from "lit";
import { customElement, property } from "lit/decorators.js";
import { ifDefined } from "lit/directives/if-defined.js";
import { Source, SourcesApi } from "@goauthentik/api";
import { DEFAULT_CONFIG } from "../../api/Config";
import "../../elements/EmptyState";
import "../../elements/PageHeader";
import "../../elements/buttons/SpinnerButton";
import "./ldap/LDAPSourceViewPage";
import "./oauth/OAuthSourceViewPage";
import "./plex/PlexSourceViewPage";
import "./saml/SAMLSourceViewPage";
@customElement("ak-source-view")
export class SourceViewPage extends LitElement {
@property({ type: String })
set sourceSlug(slug: string) {
new SourcesApi(DEFAULT_CONFIG)
.sourcesAllRetrieve({
slug: slug,
})
.then((source) => {
this.source = source;
});
}
@property({ attribute: false })
source?: Source;
renderSource(): TemplateResult {
if (!this.source) {
return html`<ak-empty-state ?loading=${true} ?fullHeight=${true}></ak-empty-state>`;
switch (this.source?.component) {
case "ak-source-ldap-form":
return html`<ak-source-ldap-view
sourceSlug=${this.source.slug}
></ak-source-ldap-view>`;
case "ak-source-oauth-form":
return html`<ak-source-oauth-view
></ak-source-oauth-view>`;
case "ak-source-saml-form":
return html`<ak-source-saml-view
></ak-source-saml-view>`;
case "ak-source-plex-form":
return html`<ak-source-plex-view
></ak-source-plex-view>`;
default:
return html`<p>Invalid source type ${this.source.component}</p>`;
render(): TemplateResult {
return html`<ak-page-header
icon="pf-icon pf-icon-middleware"
header=${ifDefined(this.source?.name)}
description=${ifDefined(this.source?.verboseName)}
>
</ak-page-header>
${this.renderSource()}`;