import { DEFAULT_CONFIG } from "@goauthentik/web/api/Config"; import "@goauthentik/web/elements/forms/ProxyForm"; import "@goauthentik/web/elements/wizard/FormWizardPage"; import "@goauthentik/web/elements/wizard/Wizard"; import { WizardPage } from "@goauthentik/web/elements/wizard/WizardPage"; import "@goauthentik/web/pages/policies/dummy/DummyPolicyForm"; import "@goauthentik/web/pages/policies/event_matcher/EventMatcherPolicyForm"; import "@goauthentik/web/pages/policies/expiry/ExpiryPolicyForm"; import "@goauthentik/web/pages/policies/expression/ExpressionPolicyForm"; import "@goauthentik/web/pages/policies/hibp/HaveIBeenPwnedPolicyForm"; import "@goauthentik/web/pages/policies/password/PasswordPolicyForm"; import "@goauthentik/web/pages/policies/reputation/ReputationPolicyForm"; import { t } from "@lingui/macro"; import { customElement } from "@lit/reactive-element/decorators/custom-element.js"; import { CSSResult, LitElement, TemplateResult, html } from "lit"; import { property } from "lit/decorators.js"; import AKGlobal from "@goauthentik/web/authentik.css"; import PFButton from "@patternfly/patternfly/components/Button/button.css"; import PFForm from "@patternfly/patternfly/components/Form/form.css"; import PFRadio from "@patternfly/patternfly/components/Radio/radio.css"; import PFBase from "@patternfly/patternfly/patternfly-base.css"; import { PoliciesApi, TypeCreate } from "@goauthentik/api"; @customElement("ak-policy-wizard-initial") export class InitialPolicyWizardPage extends WizardPage { @property({ attribute: false }) policyTypes: TypeCreate[] = []; static get styles(): CSSResult[] { return [PFBase, PFForm, PFButton, AKGlobal, PFRadio]; } sidebarLabel = () => t`Select type`; render(): TemplateResult { return html`
${this.policyTypes.map((type) => { return html`
{ this.host.steps = [ "initial", `type-${type.component}-${type.modelName}`, ]; this._isValid = true; }} /> ${type.description}
`; })}
`; } } @customElement("ak-policy-wizard") export class PolicyWizard extends LitElement { static get styles(): CSSResult[] { return [PFBase, PFButton, AKGlobal, PFRadio]; } @property() createText = t`Create`; @property({ attribute: false }) policyTypes: TypeCreate[] = []; firstUpdated(): void { new PoliciesApi(DEFAULT_CONFIG).policiesAllTypesList().then((types) => { this.policyTypes = types; }); } render(): TemplateResult { return html` ${this.policyTypes.map((type) => { return html` t`Create ${type.name}`} > `; })} `; } }