b4d750174f
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
120 lines
5.8 KiB
TypeScript
120 lines
5.8 KiB
TypeScript
import { t } from "@lingui/macro";
|
|
import { CSSResult, customElement, html, LitElement, property, TemplateResult } from "lit-element";
|
|
|
|
import PFPage from "@patternfly/patternfly/components/Page/page.css";
|
|
import PFContent from "@patternfly/patternfly/components/Content/content.css";
|
|
import PFGallery from "@patternfly/patternfly/layouts/Gallery/gallery.css";
|
|
import PFCard from "@patternfly/patternfly/components/Card/card.css";
|
|
import PFDescriptionList from "@patternfly/patternfly/components/DescriptionList/description-list.css";
|
|
import PFSizing from "@patternfly/patternfly/utilities/Sizing/sizing.css";
|
|
import PFFlex from "@patternfly/patternfly/utilities/Flex/flex.css";
|
|
import PFDisplay from "@patternfly/patternfly/utilities/Display/display.css";
|
|
import AKGlobal from "../../../authentik.css";
|
|
import PFBase from "@patternfly/patternfly/patternfly-base.css";
|
|
import PFButton from "@patternfly/patternfly/components/Button/button.css";
|
|
|
|
import "../../../elements/buttons/SpinnerButton";
|
|
import "../../../elements/CodeMirror";
|
|
import "../../../elements/Tabs";
|
|
import "../../../elements/events/ObjectChangelog";
|
|
import "../../../elements/forms/ModalForm";
|
|
import "../../policies/BoundPoliciesList";
|
|
import "./PlexSourceForm";
|
|
import { PlexSource, SourcesApi } from "authentik-api";
|
|
import { DEFAULT_CONFIG } from "../../../api/Config";
|
|
import { EVENT_REFRESH } from "../../../constants";
|
|
|
|
@customElement("ak-source-plex-view")
|
|
export class PlexSourceViewPage extends LitElement {
|
|
|
|
@property({ type: String })
|
|
set sourceSlug(value: string) {
|
|
new SourcesApi(DEFAULT_CONFIG).sourcesPlexRead({
|
|
slug: value
|
|
}).then((source) => {
|
|
this.source = source;
|
|
});
|
|
}
|
|
|
|
@property({ attribute: false })
|
|
source?: PlexSource;
|
|
|
|
static get styles(): CSSResult[] {
|
|
return [PFBase, PFPage, PFButton, PFFlex, PFDisplay, PFGallery, PFContent, PFCard, PFDescriptionList, PFSizing, AKGlobal];
|
|
}
|
|
|
|
constructor() {
|
|
super();
|
|
this.addEventListener(EVENT_REFRESH, () => {
|
|
if (!this.source?.pk) return;
|
|
this.sourceSlug = this.source?.slug;
|
|
});
|
|
}
|
|
|
|
render(): TemplateResult {
|
|
if (!this.source) {
|
|
return html``;
|
|
}
|
|
return html`<ak-tabs>
|
|
<section slot="page-overview" data-tab-title="${t`Overview`}" class="pf-c-page__main-section pf-m-no-padding-mobile">
|
|
<div class="pf-u-display-flex pf-u-justify-content-center">
|
|
<div class="pf-u-w-75">
|
|
<div class="pf-c-card">
|
|
<div class="pf-c-card__body">
|
|
<dl class="pf-c-description-list pf-m-2-col-on-lg">
|
|
<div class="pf-c-description-list__group">
|
|
<dt class="pf-c-description-list__term">
|
|
<span class="pf-c-description-list__text">${t`Name`}</span>
|
|
</dt>
|
|
<dd class="pf-c-description-list__description">
|
|
<div class="pf-c-description-list__text">${this.source.name}</div>
|
|
</dd>
|
|
</div>
|
|
</dl>
|
|
</div>
|
|
<div class="pf-c-card__footer">
|
|
<ak-forms-modal>
|
|
<span slot="submit">
|
|
${t`Update`}
|
|
</span>
|
|
<span slot="header">
|
|
${t`Update Plex Source`}
|
|
</span>
|
|
<ak-source-plex-form
|
|
slot="form"
|
|
.instancePk=${this.source.slug}>
|
|
</ak-source-plex-form>
|
|
<button slot="trigger" class="pf-c-button pf-m-primary">
|
|
${t`Edit`}
|
|
</button>
|
|
</ak-forms-modal>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<section slot="page-changelog" data-tab-title="${t`Changelog`}" class="pf-c-page__main-section pf-m-no-padding-mobile">
|
|
<div class="pf-c-card">
|
|
<div class="pf-c-card__body">
|
|
<ak-object-changelog
|
|
targetModelPk=${this.source.pk || ""}
|
|
targetModelApp="authentik_sources_plex"
|
|
targetModelName="plexsource">
|
|
</ak-object-changelog>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<div slot="page-policy-binding" data-tab-title="${t`Policy Bindings`}" class="pf-c-page__main-section pf-m-no-padding-mobile">
|
|
<div class="pf-c-card">
|
|
<div class="pf-c-card__title">${t`These bindings control which users can access this source.
|
|
You can only use policies here as access is checked before the user is authenticated.`}</div>
|
|
<div class="pf-c-card__body">
|
|
<ak-bound-policies-list .target=${this.source.pk} ?policyOnly=${true}>
|
|
</ak-bound-policies-list>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</ak-tabs>`;
|
|
}
|
|
}
|