import { gettext } from "django"; import { css, CSSResult, customElement, html, LitElement, property, TemplateResult } from "lit-element"; import "../../elements/Tabs"; import "../../elements/events/ObjectChangelog"; import "../../elements/buttons/ModalButton"; import "../../elements/buttons/SpinnerButton"; import "../../elements/policies/BoundPoliciesList"; import "./BoundStagesList"; import "./FlowDiagram"; import { Flow, FlowsApi } from "authentik-api"; import { DEFAULT_CONFIG } from "../../api/Config"; import PFPage from "@patternfly/patternfly/components/Page/page.css"; import PFCard from "@patternfly/patternfly/components/Card/card.css"; import PFContent from "@patternfly/patternfly/components/Content/content.css"; import AKGlobal from "../../authentik.css"; import PFBase from "@patternfly/patternfly/patternfly-base.css"; import PFFlex from "@patternfly/patternfly/utilities/Flex/flex.css"; import PFDisplay from "@patternfly/patternfly/utilities/Display/display.css"; import PFSizing from "@patternfly/patternfly/utilities/Sizing/sizing.css"; @customElement("ak-flow-view") export class FlowViewPage extends LitElement { @property() set flowSlug(value: string) { new FlowsApi(DEFAULT_CONFIG).flowsInstancesRead({ slug: value }).then((flow) => { this.flow = flow; }); } @property({attribute: false}) flow!: Flow; static get styles(): CSSResult[] { return [PFBase, PFPage, PFCard, PFContent, PFFlex, PFSizing, PFDisplay, AKGlobal].concat( css` img.pf-icon { max-height: 24px; } ak-tabs { height: 100%; } ` ); } render(): TemplateResult { if (!this.flow) { return html``; } return html`

${this.flow?.name}

${this.flow?.title}

${gettext("These policies control which users can access this flow.")}
`; } }