import { EVENT_REFRESH } from "@goauthentik/common/constants"; import { MessageLevel } from "@goauthentik/common/messages"; import { ModalButton } from "@goauthentik/elements/buttons/ModalButton"; import "@goauthentik/elements/buttons/SpinnerButton"; import { showMessage } from "@goauthentik/elements/messages/MessageContainer"; import { msg, str } from "@lit/localize"; import { CSSResult, TemplateResult, html } from "lit"; import { customElement, property } from "lit/decorators.js"; import { until } from "lit/directives/until.js"; import PFList from "@patternfly/patternfly/components/List/list.css"; import { UsedBy, UsedByActionEnum } from "@goauthentik/api"; @customElement("ak-forms-delete") export class DeleteForm extends ModalButton { static get styles(): CSSResult[] { return super.styles.concat(PFList); } @property({ attribute: false }) obj?: Record; @property() objectLabel?: string; @property({ attribute: false }) usedBy?: () => Promise; @property({ attribute: false }) delete!: () => Promise; confirm(): Promise { return this.delete() .then(() => { this.onSuccess(); this.open = false; this.dispatchEvent( new CustomEvent(EVENT_REFRESH, { bubbles: true, composed: true, }), ); }) .catch((e) => { this.onError(e); throw e; }); } onSuccess(): void { showMessage({ message: msg(str`Successfully deleted ${this.objectLabel} ${this.obj?.name}`), level: MessageLevel.success, }); } onError(e: Error): void { showMessage({ message: msg(str`Failed to delete ${this.objectLabel}: ${e.toString()}`), level: MessageLevel.error, }); } renderModalInner(): TemplateResult { let objName = this.obj?.name; if (objName) { objName = ` "${objName}"`; } else { objName = ""; } return html`

${msg(str`Delete ${this.objectLabel}`)}

${msg(str`Are you sure you want to delete ${this.objectLabel} ${objName}?`)}

${this.usedBy ? until( this.usedBy().then((usedBy) => { if (usedBy.length < 1) { return html``; } return html`

${msg(str`The following objects use ${objName}`)}

    ${usedBy.map((ub) => { let consequence = ""; switch (ub.action) { case UsedByActionEnum.Cascade: consequence = msg("object will be DELETED"); break; case UsedByActionEnum.CascadeMany: consequence = msg( "connecting object will be deleted", ); break; case UsedByActionEnum.SetDefault: consequence = msg( "reference will be reset to default value", ); break; case UsedByActionEnum.SetNull: consequence = msg( "reference will be set to an empty value", ); break; } return html`
  • ${msg(str`${ub.name} (${consequence})`)}
  • `; })}
`; }), ) : html``} `; } }