4c606fb0ba
* separate diagram element Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * add more Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
253 lines
13 KiB
TypeScript
253 lines
13 KiB
TypeScript
import "@goauthentik/admin/flows/BoundStagesList";
|
|
import "@goauthentik/admin/flows/FlowDiagram";
|
|
import "@goauthentik/admin/flows/FlowForm";
|
|
import "@goauthentik/admin/policies/BoundPoliciesList";
|
|
import { AndNext, DEFAULT_CONFIG } from "@goauthentik/common/api/config";
|
|
import { AKElement } from "@goauthentik/elements/Base";
|
|
import "@goauthentik/elements/PageHeader";
|
|
import "@goauthentik/elements/Tabs";
|
|
import "@goauthentik/elements/buttons/SpinnerButton";
|
|
import "@goauthentik/elements/events/ObjectChangelog";
|
|
|
|
import { t } from "@lingui/macro";
|
|
|
|
import { CSSResult, TemplateResult, css, html } from "lit";
|
|
import { customElement, property } from "lit/decorators.js";
|
|
|
|
import AKGlobal from "@goauthentik/common/styles/authentik.css";
|
|
import PFButton from "@patternfly/patternfly/components/Button/button.css";
|
|
import PFCard from "@patternfly/patternfly/components/Card/card.css";
|
|
import PFContent from "@patternfly/patternfly/components/Content/content.css";
|
|
import PFDescriptionList from "@patternfly/patternfly/components/DescriptionList/description-list.css";
|
|
import PFPage from "@patternfly/patternfly/components/Page/page.css";
|
|
import PFGrid from "@patternfly/patternfly/layouts/Grid/grid.css";
|
|
import PFBase from "@patternfly/patternfly/patternfly-base.css";
|
|
|
|
import { Flow, FlowsApi, ResponseError } from "@goauthentik/api";
|
|
|
|
@customElement("ak-flow-view")
|
|
export class FlowViewPage extends AKElement {
|
|
@property()
|
|
set flowSlug(value: string) {
|
|
new FlowsApi(DEFAULT_CONFIG)
|
|
.flowsInstancesRetrieve({
|
|
slug: value,
|
|
})
|
|
.then((flow) => {
|
|
this.flow = flow;
|
|
});
|
|
}
|
|
|
|
@property({ attribute: false })
|
|
flow!: Flow;
|
|
|
|
static get styles(): CSSResult[] {
|
|
return [
|
|
PFBase,
|
|
PFPage,
|
|
PFDescriptionList,
|
|
PFButton,
|
|
PFCard,
|
|
PFContent,
|
|
PFGrid,
|
|
AKGlobal,
|
|
].concat(
|
|
css`
|
|
img.pf-icon {
|
|
max-height: 24px;
|
|
}
|
|
ak-tabs {
|
|
height: 100%;
|
|
}
|
|
`,
|
|
);
|
|
}
|
|
|
|
render(): TemplateResult {
|
|
if (!this.flow) {
|
|
return html``;
|
|
}
|
|
return html`<ak-page-header
|
|
icon="pf-icon pf-icon-process-automation"
|
|
header=${this.flow.name}
|
|
description=${this.flow.title}
|
|
>
|
|
</ak-page-header>
|
|
<ak-tabs>
|
|
<div
|
|
slot="page-overview"
|
|
data-tab-title="${t`Flow Overview`}"
|
|
class="pf-c-page__main-section pf-m-no-padding-mobile"
|
|
>
|
|
<div class="pf-l-grid pf-m-gutter">
|
|
<div
|
|
class="pf-c-card pf-l-grid__item pf-m-12-col pf-m-2-col-on-xl pf-m-2-col-on-2xl"
|
|
>
|
|
<div class="pf-c-card__title">${t`Related actions`}</div>
|
|
<div class="pf-c-card__body">
|
|
<dl class="pf-c-description-list">
|
|
<div class="pf-c-description-list__group">
|
|
<dt class="pf-c-description-list__term">
|
|
<span class="pf-c-description-list__text"
|
|
>${t`Edit`}</span
|
|
>
|
|
</dt>
|
|
<dd class="pf-c-description-list__description">
|
|
<div class="pf-c-description-list__text">
|
|
<ak-forms-modal>
|
|
<span slot="submit"> ${t`Update`} </span>
|
|
<span slot="header"> ${t`Update Flow`} </span>
|
|
<ak-flow-form
|
|
slot="form"
|
|
.instancePk=${this.flow.slug}
|
|
>
|
|
</ak-flow-form>
|
|
<button
|
|
slot="trigger"
|
|
class="pf-c-button pf-m-block pf-m-secondary"
|
|
>
|
|
${t`Edit`}
|
|
</button>
|
|
</ak-forms-modal>
|
|
</div>
|
|
</dd>
|
|
<dt class="pf-c-description-list__term">
|
|
<span class="pf-c-description-list__text"
|
|
>${t`Execute flow`}</span
|
|
>
|
|
</dt>
|
|
<dd class="pf-c-description-list__description">
|
|
<div class="pf-c-description-list__text">
|
|
<button
|
|
class="pf-c-button pf-m-block pf-m-primary"
|
|
@click=${() => {
|
|
const finalURL = `${
|
|
window.location.origin
|
|
}/if/flow/${this.flow.slug}/${AndNext(
|
|
`${window.location.pathname}#${window.location.hash}`,
|
|
)}`;
|
|
window.open(finalURL, "_blank");
|
|
}}
|
|
>
|
|
${t`Normal`}
|
|
</button>
|
|
<button
|
|
class="pf-c-button pf-m-block pf-m-secondary"
|
|
@click=${() => {
|
|
new FlowsApi(DEFAULT_CONFIG)
|
|
.flowsInstancesExecuteRetrieve({
|
|
slug: this.flow.slug,
|
|
})
|
|
.then((link) => {
|
|
const finalURL = `${
|
|
link.link
|
|
}${AndNext(
|
|
`${window.location.pathname}#${window.location.hash}`,
|
|
)}`;
|
|
window.open(finalURL, "_blank");
|
|
});
|
|
}}
|
|
>
|
|
${t`with current user`}
|
|
</button>
|
|
<button
|
|
class="pf-c-button pf-m-block pf-m-secondary"
|
|
@click=${() => {
|
|
new FlowsApi(DEFAULT_CONFIG)
|
|
.flowsInstancesExecuteRetrieve({
|
|
slug: this.flow.slug,
|
|
})
|
|
.then((link) => {
|
|
const finalURL = `${
|
|
link.link
|
|
}?${encodeURI(
|
|
`inspector&next=/#${window.location.hash}`,
|
|
)}`;
|
|
window.open(finalURL, "_blank");
|
|
})
|
|
.catch((exc: ResponseError) => {
|
|
// This request can return a HTTP 400 when a flow
|
|
// is not applicable.
|
|
window.open(
|
|
exc.response.url,
|
|
"_blank",
|
|
);
|
|
});
|
|
}}
|
|
>
|
|
${t`with inspector`}
|
|
</button>
|
|
</div>
|
|
</dd>
|
|
<dt class="pf-c-description-list__term">
|
|
<span class="pf-c-description-list__text"
|
|
>${t`Export flow`}</span
|
|
>
|
|
</dt>
|
|
<dd class="pf-c-description-list__description">
|
|
<div class="pf-c-description-list__text">
|
|
<a
|
|
class="pf-c-button pf-m-block pf-m-secondary"
|
|
href=${this.flow.exportUrl}
|
|
>
|
|
${t`Export`}
|
|
</a>
|
|
</div>
|
|
</dd>
|
|
</div>
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
<div
|
|
class="pf-c-card pf-l-grid__item pf-m-12-col pf-m-10-col-on-xl pf-m-10-col-on-2xl"
|
|
>
|
|
<div class="pf-c-card__title">${t`Diagram`}</div>
|
|
<div class="pf-c-card__body">
|
|
<ak-flow-diagram flowSlug=${this.flow.slug}> </ak-flow-diagram>
|
|
</div>
|
|
</div>
|
|
<div
|
|
class="pf-c-card pf-l-grid__item pf-m-12-col pf-m-12-col-on-xl pf-m-12-col-on-2xl"
|
|
>
|
|
<div class="pf-c-card__title">${t`Changelog`}</div>
|
|
<div class="pf-c-card__body">
|
|
<ak-object-changelog
|
|
targetModelPk=${this.flow.pk || ""}
|
|
targetModelApp="authentik_flows"
|
|
targetModelName="flow"
|
|
>
|
|
</ak-object-changelog>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div
|
|
slot="page-stage-bindings"
|
|
data-tab-title="${t`Stage Bindings`}"
|
|
class="pf-c-page__main-section pf-m-no-padding-mobile"
|
|
>
|
|
<div class="pf-c-card">
|
|
<div class="pf-c-card__body">
|
|
<ak-bound-stages-list .target=${this.flow.pk}> </ak-bound-stages-list>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div
|
|
slot="page-policy-bindings"
|
|
data-tab-title="${t`Policy / Group / User 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 flow.`}
|
|
</div>
|
|
<div class="pf-c-card__body">
|
|
<ak-bound-policies-list .target=${this.flow.policybindingmodelPtrId}>
|
|
</ak-bound-policies-list>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</ak-tabs>`;
|
|
}
|
|
}
|