2021-03-11 20:23:08 +00:00
|
|
|
import React, { useEffect, useState } from "react";
|
2021-03-03 13:53:42 +00:00
|
|
|
import {
|
|
|
|
ActionGroup,
|
|
|
|
Button,
|
|
|
|
FormGroup,
|
2021-03-03 18:56:03 +00:00
|
|
|
Select,
|
|
|
|
SelectOption,
|
|
|
|
Switch,
|
2021-03-03 13:53:42 +00:00
|
|
|
TextInput,
|
|
|
|
} from "@patternfly/react-core";
|
|
|
|
import { useTranslation } from "react-i18next";
|
2021-03-03 18:56:03 +00:00
|
|
|
import { Controller, UseFormMethods } from "react-hook-form";
|
2021-03-11 20:23:08 +00:00
|
|
|
import { useHistory, useParams } from "react-router-dom";
|
2021-03-03 13:53:42 +00:00
|
|
|
import { FormAccess } from "../components/form-access/FormAccess";
|
|
|
|
import UserRepresentation from "keycloak-admin/lib/defs/userRepresentation";
|
2021-03-03 18:56:03 +00:00
|
|
|
import { HelpItem } from "../components/help-enabler/HelpItem";
|
|
|
|
import { useRealm } from "../context/realm-context/RealmContext";
|
2021-03-11 20:23:08 +00:00
|
|
|
import { asyncStateFetch, useAdminClient } from "../context/auth/AdminClient";
|
|
|
|
import { useErrorHandler } from "react-error-boundary";
|
|
|
|
import moment from "moment";
|
2021-03-03 13:53:42 +00:00
|
|
|
|
|
|
|
export type UserFormProps = {
|
|
|
|
form: UseFormMethods<UserRepresentation>;
|
|
|
|
save: (user: UserRepresentation) => void;
|
2021-03-11 20:23:08 +00:00
|
|
|
editMode: boolean;
|
|
|
|
timestamp?: number;
|
2021-03-03 13:53:42 +00:00
|
|
|
};
|
|
|
|
|
2021-03-03 21:17:01 +00:00
|
|
|
export const UserForm = ({
|
2021-03-11 20:23:08 +00:00
|
|
|
form: { handleSubmit, register, errors, watch, control, setValue, reset },
|
2021-03-03 21:17:01 +00:00
|
|
|
save,
|
2021-03-11 20:23:08 +00:00
|
|
|
editMode,
|
2021-03-03 21:17:01 +00:00
|
|
|
}: UserFormProps) => {
|
2021-03-03 13:53:42 +00:00
|
|
|
const { t } = useTranslation("users");
|
2021-03-03 18:56:03 +00:00
|
|
|
const { realm } = useRealm();
|
|
|
|
|
|
|
|
const [
|
|
|
|
isRequiredUserActionsDropdownOpen,
|
|
|
|
setRequiredUserActionsDropdownOpen,
|
|
|
|
] = useState(false);
|
|
|
|
const history = useHistory();
|
2021-03-11 20:23:08 +00:00
|
|
|
const adminClient = useAdminClient();
|
|
|
|
const { id } = useParams<{ id: string }>();
|
|
|
|
const handleError = useErrorHandler();
|
2021-03-03 18:56:03 +00:00
|
|
|
|
2021-03-03 21:17:01 +00:00
|
|
|
const watchUsernameInput = watch("username");
|
2021-03-11 20:23:08 +00:00
|
|
|
const [timestamp, setTimestamp] = useState(null);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (editMode) {
|
|
|
|
return asyncStateFetch(
|
2021-03-23 19:02:27 +00:00
|
|
|
() => adminClient.users.findOne({ id: id }),
|
2021-03-11 20:23:08 +00:00
|
|
|
(user) => {
|
2021-03-23 19:02:27 +00:00
|
|
|
setupForm(user);
|
2021-03-11 20:23:08 +00:00
|
|
|
},
|
|
|
|
handleError
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const setupForm = (user: UserRepresentation) => {
|
|
|
|
reset();
|
|
|
|
Object.entries(user).map((entry) => {
|
|
|
|
if (entry[0] == "createdTimestamp") {
|
|
|
|
setTimestamp(entry[1]);
|
|
|
|
} else {
|
|
|
|
setValue(entry[0], entry[1]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
2021-03-03 21:17:01 +00:00
|
|
|
|
2021-03-04 18:49:05 +00:00
|
|
|
const emailRegexPattern = /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
|
|
|
|
|
2021-03-03 18:56:03 +00:00
|
|
|
const requiredUserActionsOptions = [
|
2021-03-11 20:23:08 +00:00
|
|
|
<SelectOption key={0} value="CONFIGURE_TOTP">
|
2021-03-03 18:56:03 +00:00
|
|
|
{t("configureOTP")}
|
|
|
|
</SelectOption>,
|
2021-03-11 20:23:08 +00:00
|
|
|
<SelectOption key={1} value="UPDATE_PASSWORD">
|
2021-03-03 18:56:03 +00:00
|
|
|
{t("updatePassword")}
|
|
|
|
</SelectOption>,
|
2021-03-11 20:23:08 +00:00
|
|
|
<SelectOption key={2} value="UPDATE_PROFILE">
|
2021-03-03 18:56:03 +00:00
|
|
|
{t("updateProfile")}
|
|
|
|
</SelectOption>,
|
2021-03-11 20:23:08 +00:00
|
|
|
<SelectOption key={3} value="VERIFY_EMAIL">
|
2021-03-03 18:56:03 +00:00
|
|
|
{t("verifyEmail")}
|
|
|
|
</SelectOption>,
|
|
|
|
];
|
|
|
|
|
|
|
|
const clearSelection = () => {
|
|
|
|
setRequiredUserActionsDropdownOpen(false);
|
|
|
|
};
|
|
|
|
|
2021-03-03 13:53:42 +00:00
|
|
|
return (
|
|
|
|
<FormAccess
|
|
|
|
isHorizontal
|
2021-03-03 21:17:01 +00:00
|
|
|
onSubmit={handleSubmit(save)}
|
2021-03-03 18:56:03 +00:00
|
|
|
role="manage-users"
|
2021-03-03 13:53:42 +00:00
|
|
|
className="pf-u-mt-lg"
|
|
|
|
>
|
2021-03-11 20:23:08 +00:00
|
|
|
{editMode ? (
|
|
|
|
<>
|
|
|
|
<FormGroup
|
2021-03-30 01:03:26 +00:00
|
|
|
label={t("common:id")}
|
2021-03-11 20:23:08 +00:00
|
|
|
fieldId="kc-id"
|
|
|
|
isRequired
|
|
|
|
validated={errors.id ? "error" : "default"}
|
|
|
|
helperTextInvalid={t("common:required")}
|
|
|
|
>
|
|
|
|
<TextInput
|
|
|
|
ref={register({ required: !editMode })}
|
|
|
|
type="text"
|
|
|
|
id="kc-id"
|
|
|
|
name="id"
|
|
|
|
isReadOnly={editMode}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
<FormGroup
|
|
|
|
label={t("createdAt")}
|
|
|
|
fieldId="kc-created-at"
|
|
|
|
isRequired
|
|
|
|
validated={errors.createdTimestamp ? "error" : "default"}
|
|
|
|
helperTextInvalid={t("common:required")}
|
|
|
|
>
|
|
|
|
<TextInput
|
|
|
|
value={moment(timestamp).format("MM/DD/YY hh:MM:ss A")}
|
|
|
|
type="text"
|
|
|
|
id="kc-created-at"
|
|
|
|
name="createdTimestamp"
|
|
|
|
isReadOnly={editMode}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
<FormGroup
|
|
|
|
label={t("username")}
|
|
|
|
fieldId="kc-username"
|
|
|
|
isRequired
|
|
|
|
validated={errors.username ? "error" : "default"}
|
|
|
|
helperTextInvalid={t("common:required")}
|
|
|
|
>
|
|
|
|
<TextInput
|
|
|
|
ref={register()}
|
|
|
|
type="text"
|
|
|
|
id="kc-username"
|
|
|
|
name="username"
|
|
|
|
isReadOnly={editMode}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
)}
|
2021-03-03 13:53:42 +00:00
|
|
|
<FormGroup
|
2021-03-03 18:56:03 +00:00
|
|
|
label={t("email")}
|
2021-03-03 13:53:42 +00:00
|
|
|
fieldId="kc-description"
|
2021-03-03 21:17:01 +00:00
|
|
|
validated={errors.email ? "error" : "default"}
|
2021-03-04 18:49:05 +00:00
|
|
|
helperTextInvalid={t("users:emailInvalid")}
|
2021-03-03 18:56:03 +00:00
|
|
|
>
|
|
|
|
<TextInput
|
2021-03-04 18:49:05 +00:00
|
|
|
ref={register({
|
|
|
|
pattern: emailRegexPattern,
|
|
|
|
})}
|
|
|
|
type="email"
|
2021-03-03 18:56:03 +00:00
|
|
|
id="kc-email"
|
|
|
|
name="email"
|
2021-03-11 20:23:08 +00:00
|
|
|
data-testid="email-input"
|
2021-03-03 19:36:21 +00:00
|
|
|
aria-label={t("emailInput")}
|
2021-03-03 18:56:03 +00:00
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
<FormGroup
|
|
|
|
label={t("emailVerified")}
|
|
|
|
fieldId="kc-email-verified"
|
|
|
|
helperTextInvalid={t("common:required")}
|
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText={t("emailVerifiedHelpText")}
|
|
|
|
forLabel={t("emailVerified")}
|
|
|
|
forID="email-verified"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<Controller
|
2021-03-11 20:23:08 +00:00
|
|
|
name="emailVerified"
|
2021-03-03 18:56:03 +00:00
|
|
|
defaultValue={false}
|
2021-03-03 21:17:01 +00:00
|
|
|
control={control}
|
2021-03-03 18:56:03 +00:00
|
|
|
render={({ onChange, value }) => (
|
|
|
|
<Switch
|
2021-03-11 20:23:08 +00:00
|
|
|
data-testid="email-verified-switch"
|
2021-03-03 18:56:03 +00:00
|
|
|
id={"kc-user-email-verified"}
|
|
|
|
isDisabled={false}
|
2021-03-11 20:23:08 +00:00
|
|
|
onChange={(value) => onChange(value)}
|
|
|
|
isChecked={value}
|
2021-03-03 18:56:03 +00:00
|
|
|
label={t("common:on")}
|
|
|
|
labelOff={t("common:off")}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
></Controller>
|
|
|
|
</FormGroup>
|
|
|
|
<FormGroup
|
|
|
|
label={t("firstName")}
|
|
|
|
fieldId="kc-firstname"
|
2021-03-03 21:17:01 +00:00
|
|
|
validated={errors.firstName ? "error" : "default"}
|
2021-03-03 18:56:03 +00:00
|
|
|
helperTextInvalid={t("common:required")}
|
|
|
|
>
|
|
|
|
<TextInput
|
2021-03-03 21:17:01 +00:00
|
|
|
ref={register()}
|
2021-03-11 20:23:08 +00:00
|
|
|
data-testid="firstName-input"
|
2021-03-03 18:56:03 +00:00
|
|
|
type="text"
|
|
|
|
id="kc-firstname"
|
2021-03-04 18:49:05 +00:00
|
|
|
name="firstName"
|
2021-03-03 18:56:03 +00:00
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
<FormGroup
|
|
|
|
label={t("lastName")}
|
|
|
|
fieldId="kc-name"
|
2021-03-03 21:17:01 +00:00
|
|
|
validated={errors.lastName ? "error" : "default"}
|
2021-03-03 13:53:42 +00:00
|
|
|
>
|
2021-03-03 18:56:03 +00:00
|
|
|
<TextInput
|
2021-03-03 21:17:01 +00:00
|
|
|
ref={register()}
|
2021-03-11 20:23:08 +00:00
|
|
|
data-testid="lastName-input"
|
2021-03-03 13:53:42 +00:00
|
|
|
type="text"
|
2021-03-03 18:56:03 +00:00
|
|
|
id="kc-lastname"
|
2021-03-04 18:49:05 +00:00
|
|
|
name="lastName"
|
2021-03-03 19:36:21 +00:00
|
|
|
aria-label={t("lastName")}
|
2021-03-03 13:53:42 +00:00
|
|
|
/>
|
|
|
|
</FormGroup>
|
2021-03-03 18:56:03 +00:00
|
|
|
<FormGroup
|
|
|
|
label={t("common:enabled")}
|
|
|
|
fieldId="kc-enabled"
|
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText={t("disabledHelpText")}
|
|
|
|
forLabel={t("enabled")}
|
|
|
|
forID="enabled-label"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<Controller
|
2021-03-11 20:23:08 +00:00
|
|
|
name="enabled"
|
2021-03-03 18:56:03 +00:00
|
|
|
defaultValue={false}
|
2021-03-03 21:17:01 +00:00
|
|
|
control={control}
|
2021-03-03 18:56:03 +00:00
|
|
|
render={({ onChange, value }) => (
|
|
|
|
<Switch
|
2021-03-11 20:23:08 +00:00
|
|
|
data-testid="user-enabled-switch"
|
2021-03-03 18:56:03 +00:00
|
|
|
id={"kc-user-enabled"}
|
|
|
|
isDisabled={false}
|
2021-03-11 20:23:08 +00:00
|
|
|
onChange={(value) => onChange(value)}
|
|
|
|
isChecked={value}
|
2021-03-03 18:56:03 +00:00
|
|
|
label={t("common:on")}
|
|
|
|
labelOff={t("common:off")}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
></Controller>
|
|
|
|
</FormGroup>
|
|
|
|
<FormGroup
|
|
|
|
label={t("requiredUserActions")}
|
|
|
|
fieldId="kc-required-user-actions"
|
2021-03-03 21:17:01 +00:00
|
|
|
validated={errors.requiredActions ? "error" : "default"}
|
2021-03-03 18:56:03 +00:00
|
|
|
helperTextInvalid={t("common:required")}
|
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText={t("requiredUserActionsHelpText")}
|
|
|
|
forLabel={t("requiredUserActions")}
|
|
|
|
forID="required-user-actions-label"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<Controller
|
2021-03-11 20:23:08 +00:00
|
|
|
name="requiredActions"
|
|
|
|
defaultValue={[]}
|
2021-03-03 18:56:03 +00:00
|
|
|
typeAheadAriaLabel="Select an action"
|
2021-03-03 21:17:01 +00:00
|
|
|
control={control}
|
2021-03-11 20:23:08 +00:00
|
|
|
render={({ onChange, value }) => (
|
2021-03-03 18:56:03 +00:00
|
|
|
<Select
|
2021-03-11 20:23:08 +00:00
|
|
|
data-testid="required-actions-select"
|
2021-03-03 18:56:03 +00:00
|
|
|
placeholderText="Select action"
|
|
|
|
toggleId="kc-required-user-actions"
|
|
|
|
onToggle={() =>
|
|
|
|
setRequiredUserActionsDropdownOpen(
|
|
|
|
!isRequiredUserActionsDropdownOpen
|
|
|
|
)
|
|
|
|
}
|
|
|
|
isOpen={isRequiredUserActionsDropdownOpen}
|
2021-03-11 20:23:08 +00:00
|
|
|
selections={value}
|
|
|
|
onSelect={(_, v) => {
|
|
|
|
const option = v as string;
|
|
|
|
if (value.includes(option)) {
|
|
|
|
onChange(value.filter((item: string) => item !== option));
|
2021-03-03 18:56:03 +00:00
|
|
|
} else {
|
2021-03-11 20:23:08 +00:00
|
|
|
onChange([...value, option]);
|
2021-03-03 18:56:03 +00:00
|
|
|
}
|
|
|
|
}}
|
|
|
|
onClear={clearSelection}
|
|
|
|
variant="typeaheadmulti"
|
|
|
|
>
|
|
|
|
{requiredUserActionsOptions}
|
|
|
|
</Select>
|
|
|
|
)}
|
2021-03-11 20:23:08 +00:00
|
|
|
/>
|
2021-03-03 18:56:03 +00:00
|
|
|
</FormGroup>
|
2021-03-03 13:53:42 +00:00
|
|
|
<ActionGroup>
|
2021-03-03 21:17:01 +00:00
|
|
|
<Button
|
2021-03-11 20:23:08 +00:00
|
|
|
data-testid={!editMode ? "create-user" : "save-user"}
|
|
|
|
isDisabled={!editMode && !watchUsernameInput}
|
2021-03-03 21:17:01 +00:00
|
|
|
variant="primary"
|
|
|
|
type="submit"
|
|
|
|
>
|
2021-03-11 20:23:08 +00:00
|
|
|
{!editMode ? t("common:Create") : t("common:Save")}
|
2021-03-03 13:53:42 +00:00
|
|
|
</Button>
|
2021-03-03 19:12:16 +00:00
|
|
|
<Button
|
|
|
|
data-testid="cancel-create-user"
|
|
|
|
onClick={() => history.push(`/${realm}/users`)}
|
|
|
|
variant="link"
|
|
|
|
>
|
2021-03-03 18:56:03 +00:00
|
|
|
{t("common:cancel")}
|
2021-03-03 13:53:42 +00:00
|
|
|
</Button>
|
|
|
|
</ActionGroup>
|
|
|
|
</FormAccess>
|
|
|
|
);
|
|
|
|
};
|