
* web/elements: fix search-select inconsistency Signed-off-by: Jens Langhammer <jens@goauthentik.io> * web/common: fix config having to be json converted everywhere Signed-off-by: Jens Langhammer <jens@goauthentik.io> * web/elements: refactor form without iron-form Signed-off-by: Jens Langhammer <jens@goauthentik.io> * web/admin: fix misc Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
316 lines
12 KiB
TypeScript
316 lines
12 KiB
TypeScript
import { EVENT_REFRESH } from "@goauthentik/common/constants";
|
|
import { MessageLevel } from "@goauthentik/common/messages";
|
|
import { camelToSnake, convertToSlug } from "@goauthentik/common/utils";
|
|
import { AKElement } from "@goauthentik/elements/Base";
|
|
import { HorizontalFormElement } from "@goauthentik/elements/forms/HorizontalFormElement";
|
|
import { SearchSelect } from "@goauthentik/elements/forms/SearchSelect";
|
|
import { showMessage } from "@goauthentik/elements/messages/MessageContainer";
|
|
|
|
import { CSSResult, TemplateResult, css, html } from "lit";
|
|
import { customElement, property } from "lit/decorators.js";
|
|
|
|
import PFAlert from "@patternfly/patternfly/components/Alert/alert.css";
|
|
import PFButton from "@patternfly/patternfly/components/Button/button.css";
|
|
import PFCard from "@patternfly/patternfly/components/Card/card.css";
|
|
import PFForm from "@patternfly/patternfly/components/Form/form.css";
|
|
import PFFormControl from "@patternfly/patternfly/components/FormControl/form-control.css";
|
|
import PFInputGroup from "@patternfly/patternfly/components/InputGroup/input-group.css";
|
|
import PFSwitch from "@patternfly/patternfly/components/Switch/switch.css";
|
|
import PFBase from "@patternfly/patternfly/patternfly-base.css";
|
|
|
|
import { ResponseError, ValidationError } from "@goauthentik/api";
|
|
|
|
export class PreventFormSubmit {
|
|
// Stub class which can be returned by form elements to prevent the form from submitting
|
|
constructor(public message: string) {}
|
|
}
|
|
|
|
export class APIError extends Error {
|
|
constructor(public response: ValidationError) {
|
|
super();
|
|
}
|
|
}
|
|
|
|
export interface KeyUnknown {
|
|
[key: string]: unknown;
|
|
}
|
|
|
|
@customElement("ak-form")
|
|
export class Form<T> extends AKElement {
|
|
viewportCheck = true;
|
|
|
|
@property()
|
|
successMessage = "";
|
|
|
|
@property()
|
|
send!: (data: T) => Promise<unknown>;
|
|
|
|
@property({ attribute: false })
|
|
nonFieldErrors?: string[];
|
|
|
|
static get styles(): CSSResult[] {
|
|
return [
|
|
PFBase,
|
|
PFCard,
|
|
PFButton,
|
|
PFForm,
|
|
PFAlert,
|
|
PFInputGroup,
|
|
PFFormControl,
|
|
PFSwitch,
|
|
css`
|
|
select[multiple] {
|
|
height: 15em;
|
|
}
|
|
`,
|
|
];
|
|
}
|
|
|
|
get isInViewport(): boolean {
|
|
const rect = this.getBoundingClientRect();
|
|
return !(rect.x + rect.y + rect.width + rect.height === 0);
|
|
}
|
|
|
|
getSuccessMessage(): string {
|
|
return this.successMessage;
|
|
}
|
|
|
|
updated(): void {
|
|
this.shadowRoot
|
|
?.querySelectorAll("ak-form-element-horizontal[name=name]")
|
|
.forEach((nameInput) => {
|
|
const input = nameInput.firstElementChild as HTMLInputElement;
|
|
const form = nameInput.closest("form");
|
|
if (form === null) {
|
|
return;
|
|
}
|
|
const slugFieldWrapper = form.querySelector(
|
|
"ak-form-element-horizontal[name=slug]",
|
|
);
|
|
if (!slugFieldWrapper) {
|
|
return;
|
|
}
|
|
const slugField = slugFieldWrapper.firstElementChild as HTMLInputElement;
|
|
// Only attach handler if the slug is already equal to the name
|
|
// if not, they are probably completely different and shouldn't update
|
|
// each other
|
|
if (convertToSlug(input.value) !== slugField.value) {
|
|
return;
|
|
}
|
|
nameInput.addEventListener("input", () => {
|
|
slugField.value = convertToSlug(input.value);
|
|
});
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reset the inner iron-form
|
|
*/
|
|
resetForm(): void {
|
|
const form = this.shadowRoot?.querySelector<HTMLFormElement>("form");
|
|
form?.reset();
|
|
}
|
|
|
|
getFormFiles(): { [key: string]: File } {
|
|
const files: { [key: string]: File } = {};
|
|
const elements =
|
|
this.shadowRoot?.querySelectorAll<HorizontalFormElement>(
|
|
"ak-form-element-horizontal",
|
|
) || [];
|
|
for (let i = 0; i < elements.length; i++) {
|
|
const element = elements[i];
|
|
element.requestUpdate();
|
|
const inputElement = element.querySelector<HTMLInputElement>("[name]");
|
|
if (!inputElement) {
|
|
continue;
|
|
}
|
|
if (inputElement.tagName.toLowerCase() === "input" && inputElement.type === "file") {
|
|
if ((inputElement.files || []).length < 1) {
|
|
continue;
|
|
}
|
|
files[element.name] = (inputElement.files || [])[0];
|
|
}
|
|
}
|
|
return files;
|
|
}
|
|
|
|
serializeForm(): T | undefined {
|
|
const elements =
|
|
this.shadowRoot?.querySelectorAll<HorizontalFormElement>(
|
|
"ak-form-element-horizontal",
|
|
) || [];
|
|
const json: { [key: string]: unknown } = {};
|
|
elements.forEach((element) => {
|
|
element.requestUpdate();
|
|
const inputElement = element.querySelector<HTMLInputElement>("[name]");
|
|
if (element.hidden || !inputElement) {
|
|
return;
|
|
}
|
|
if (
|
|
inputElement.tagName.toLowerCase() === "select" &&
|
|
"multiple" in inputElement.attributes
|
|
) {
|
|
const selectElement = inputElement as unknown as HTMLSelectElement;
|
|
json[element.name] = Array.from(selectElement.selectedOptions).map((v) => v.value);
|
|
} else if (
|
|
inputElement.tagName.toLowerCase() === "input" &&
|
|
inputElement.type === "date"
|
|
) {
|
|
json[element.name] = inputElement.valueAsDate;
|
|
} else if (
|
|
inputElement.tagName.toLowerCase() === "input" &&
|
|
inputElement.type === "datetime-local"
|
|
) {
|
|
json[element.name] = new Date(inputElement.valueAsNumber);
|
|
} else if (
|
|
inputElement.tagName.toLowerCase() === "input" &&
|
|
"type" in inputElement.dataset &&
|
|
inputElement.dataset["type"] === "datetime-local"
|
|
) {
|
|
// Workaround for Firefox <93, since 92 and older don't support
|
|
// datetime-local fields
|
|
json[element.name] = new Date(inputElement.value);
|
|
} else if (
|
|
inputElement.tagName.toLowerCase() === "input" &&
|
|
inputElement.type === "checkbox"
|
|
) {
|
|
json[element.name] = inputElement.checked;
|
|
} else if (inputElement.tagName.toLowerCase() === "ak-search-select") {
|
|
const select = inputElement as unknown as SearchSelect<unknown>;
|
|
let value: unknown;
|
|
try {
|
|
value = select.toForm();
|
|
} catch {
|
|
console.debug("authentik/form: SearchSelect.value error");
|
|
return;
|
|
}
|
|
if (value instanceof PreventFormSubmit) {
|
|
throw new Error(value.message);
|
|
}
|
|
json[element.name] = value;
|
|
} else {
|
|
this.serializeFieldRecursive(inputElement, inputElement.value, json);
|
|
}
|
|
});
|
|
return json as unknown as T;
|
|
}
|
|
|
|
private serializeFieldRecursive(
|
|
element: HTMLInputElement,
|
|
value: unknown,
|
|
json: { [key: string]: unknown },
|
|
): void {
|
|
let parent = json;
|
|
if (!element.name.includes(".")) {
|
|
parent[element.name] = value;
|
|
return;
|
|
}
|
|
const nameElements = element.name.split(".");
|
|
for (let index = 0; index < nameElements.length - 1; index++) {
|
|
const nameEl = nameElements[index];
|
|
// Ensure all nested structures exist
|
|
if (!(nameEl in parent)) parent[nameEl] = {};
|
|
parent = parent[nameEl] as { [key: string]: unknown };
|
|
}
|
|
parent[nameElements[nameElements.length - 1]] = value;
|
|
}
|
|
|
|
submit(ev: Event): Promise<unknown> | undefined {
|
|
ev.preventDefault();
|
|
const data = this.serializeForm();
|
|
if (!data) {
|
|
return;
|
|
}
|
|
return this.send(data)
|
|
.then((r) => {
|
|
showMessage({
|
|
level: MessageLevel.success,
|
|
message: this.getSuccessMessage(),
|
|
});
|
|
this.dispatchEvent(
|
|
new CustomEvent(EVENT_REFRESH, {
|
|
bubbles: true,
|
|
composed: true,
|
|
}),
|
|
);
|
|
return r;
|
|
})
|
|
.catch(async (ex: Error | ResponseError) => {
|
|
if (!(ex instanceof ResponseError)) {
|
|
throw ex;
|
|
}
|
|
let msg = ex.response.statusText;
|
|
if (ex.response.status > 399 && ex.response.status < 500) {
|
|
const errorMessage: ValidationError = await ex.response.json();
|
|
if (!errorMessage) return errorMessage;
|
|
if (errorMessage instanceof Error) {
|
|
throw errorMessage;
|
|
}
|
|
// assign all input-related errors to their elements
|
|
const elements =
|
|
this.shadowRoot?.querySelectorAll<HorizontalFormElement>(
|
|
"ak-form-element-horizontal",
|
|
) || [];
|
|
elements.forEach((element) => {
|
|
element.requestUpdate();
|
|
const elementName = element.name;
|
|
if (!elementName) return;
|
|
if (camelToSnake(elementName) in errorMessage) {
|
|
element.errorMessages = errorMessage[camelToSnake(elementName)];
|
|
element.invalid = true;
|
|
} else {
|
|
element.errorMessages = [];
|
|
element.invalid = false;
|
|
}
|
|
});
|
|
if ("non_field_errors" in errorMessage) {
|
|
this.nonFieldErrors = errorMessage["non_field_errors"];
|
|
}
|
|
// Only change the message when we have `detail`.
|
|
// Everything else is handled in the form.
|
|
if ("detail" in errorMessage) {
|
|
msg = errorMessage.detail;
|
|
}
|
|
}
|
|
// error is local or not from rest_framework
|
|
showMessage({
|
|
message: msg,
|
|
level: MessageLevel.error,
|
|
});
|
|
// rethrow the error so the form doesn't close
|
|
throw ex;
|
|
});
|
|
}
|
|
|
|
renderForm(): TemplateResult {
|
|
return html`<slot></slot>`;
|
|
}
|
|
|
|
renderNonFieldErrors(): TemplateResult {
|
|
if (!this.nonFieldErrors) {
|
|
return html``;
|
|
}
|
|
return html`<div class="pf-c-form__alert">
|
|
${this.nonFieldErrors.map((err) => {
|
|
return html`<div class="pf-c-alert pf-m-inline pf-m-danger">
|
|
<div class="pf-c-alert__icon">
|
|
<i class="fas fa-exclamation-circle"></i>
|
|
</div>
|
|
<h4 class="pf-c-alert__title">${err}</h4>
|
|
</div>`;
|
|
})}
|
|
</div>`;
|
|
}
|
|
|
|
renderVisible(): TemplateResult {
|
|
return html` ${this.renderNonFieldErrors()} ${this.renderForm()}`;
|
|
}
|
|
|
|
render(): TemplateResult {
|
|
if (this.viewportCheck && !this.isInViewport) {
|
|
return html``;
|
|
}
|
|
return this.renderVisible();
|
|
}
|
|
}
|