2021-03-29 14:16:27 +00:00
|
|
|
import { CoreApi, User } from "authentik-api";
|
2021-04-03 17:26:43 +00:00
|
|
|
import { t } from "@lingui/macro";
|
2021-05-11 10:44:50 +00:00
|
|
|
import { customElement } from "lit-element";
|
2021-03-29 14:16:27 +00:00
|
|
|
import { html, TemplateResult } from "lit-html";
|
|
|
|
import { DEFAULT_CONFIG } from "../../api/Config";
|
|
|
|
import { ifDefined } from "lit-html/directives/if-defined";
|
|
|
|
import "../../elements/forms/HorizontalFormElement";
|
|
|
|
import "../../elements/CodeMirror";
|
|
|
|
import YAML from "yaml";
|
2021-04-03 22:36:53 +00:00
|
|
|
import { first } from "../../utils";
|
2021-05-11 10:44:50 +00:00
|
|
|
import { ModelForm } from "../../elements/forms/ModelForm";
|
2021-03-29 14:16:27 +00:00
|
|
|
|
|
|
|
@customElement("ak-user-form")
|
2021-05-11 10:44:50 +00:00
|
|
|
export class UserForm extends ModelForm<User, number> {
|
2021-03-29 14:16:27 +00:00
|
|
|
|
2021-05-11 10:44:50 +00:00
|
|
|
loadInstance(pk: number): Promise<User> {
|
|
|
|
return new CoreApi(DEFAULT_CONFIG).coreUsersRead({
|
|
|
|
id: pk
|
|
|
|
});
|
|
|
|
}
|
2021-03-29 14:16:27 +00:00
|
|
|
|
|
|
|
getSuccessMessage(): string {
|
2021-05-11 10:44:50 +00:00
|
|
|
if (this.instance) {
|
2021-04-03 17:26:43 +00:00
|
|
|
return t`Successfully updated user.`;
|
2021-03-29 14:16:27 +00:00
|
|
|
} else {
|
2021-04-03 17:26:43 +00:00
|
|
|
return t`Successfully created user.`;
|
2021-03-29 14:16:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
send = (data: User): Promise<User> => {
|
2021-05-11 10:44:50 +00:00
|
|
|
if (this.instance) {
|
2021-03-29 14:16:27 +00:00
|
|
|
return new CoreApi(DEFAULT_CONFIG).coreUsersUpdate({
|
2021-05-11 10:44:50 +00:00
|
|
|
id: this.instance.pk || 0,
|
2021-03-29 14:16:27 +00:00
|
|
|
data: data
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
return new CoreApi(DEFAULT_CONFIG).coreUsersCreate({
|
|
|
|
data: data
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
renderForm(): TemplateResult {
|
|
|
|
return html`<form class="pf-c-form pf-m-horizontal">
|
2021-03-29 16:22:15 +00:00
|
|
|
<ak-form-element-horizontal
|
2021-04-03 17:26:43 +00:00
|
|
|
label=${t`Username`}
|
2021-03-29 16:22:15 +00:00
|
|
|
?required=${true}
|
|
|
|
name="username">
|
2021-05-11 10:44:50 +00:00
|
|
|
<input type="text" value="${ifDefined(this.instance?.username)}" class="pf-c-form-control" required>
|
2021-04-03 17:26:43 +00:00
|
|
|
<p class="pf-c-form__helper-text">${t`Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.`}</p>
|
2021-03-29 14:16:27 +00:00
|
|
|
</ak-form-element-horizontal>
|
2021-03-29 16:22:15 +00:00
|
|
|
<ak-form-element-horizontal
|
2021-04-03 17:26:43 +00:00
|
|
|
label=${t`Name`}
|
2021-03-29 16:22:15 +00:00
|
|
|
?required=${true}
|
|
|
|
name="name">
|
2021-05-11 10:44:50 +00:00
|
|
|
<input type="text" value="${ifDefined(this.instance?.name)}" class="pf-c-form-control" required>
|
2021-04-03 17:26:43 +00:00
|
|
|
<p class="pf-c-form__helper-text">${t`User's display name.`}</p>
|
2021-03-29 14:16:27 +00:00
|
|
|
</ak-form-element-horizontal>
|
2021-03-29 16:22:15 +00:00
|
|
|
<ak-form-element-horizontal
|
2021-04-03 17:26:43 +00:00
|
|
|
label=${t`Email`}
|
2021-03-29 16:22:15 +00:00
|
|
|
?required=${true}
|
|
|
|
name="email">
|
2021-05-11 10:44:50 +00:00
|
|
|
<input type="email" autocomplete="off" value="${ifDefined(this.instance?.email)}" class="pf-c-form-control" required>
|
2021-03-29 14:16:27 +00:00
|
|
|
</ak-form-element-horizontal>
|
2021-03-29 16:22:15 +00:00
|
|
|
<ak-form-element-horizontal
|
|
|
|
name="isActive">
|
2021-03-29 14:16:27 +00:00
|
|
|
<div class="pf-c-check">
|
2021-05-11 10:44:50 +00:00
|
|
|
<input type="checkbox" class="pf-c-check__input" ?checked=${first(this.instance?.isActive, true)}>
|
2021-03-29 14:16:27 +00:00
|
|
|
<label class="pf-c-check__label">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Is active`}
|
2021-03-29 14:16:27 +00:00
|
|
|
</label>
|
|
|
|
</div>
|
2021-04-03 17:26:43 +00:00
|
|
|
<p class="pf-c-form__helper-text">${t`Designates whether this user should be treated as active. Unselect this instead of deleting accounts.`}</p>
|
2021-03-29 14:16:27 +00:00
|
|
|
</ak-form-element-horizontal>
|
2021-03-29 16:22:15 +00:00
|
|
|
<ak-form-element-horizontal
|
2021-04-03 17:26:43 +00:00
|
|
|
label=${t`Attributes`}
|
2021-04-22 08:33:36 +00:00
|
|
|
?required=${true}
|
2021-03-29 16:22:15 +00:00
|
|
|
name="attributes">
|
2021-05-11 10:44:50 +00:00
|
|
|
<ak-codemirror mode="yaml" value="${YAML.stringify(first(this.instance?.attributes, {}))}">
|
2021-03-29 14:16:27 +00:00
|
|
|
</ak-codemirror>
|
2021-04-09 12:30:49 +00:00
|
|
|
<p class="pf-c-form__helper-text">${t`Set custom attributes using YAML or JSON.`}</p>
|
2021-03-29 14:16:27 +00:00
|
|
|
</ak-form-element-horizontal>
|
|
|
|
</form>`;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|