2021-06-10 20:00:14 +00:00
|
|
|
import React from "react";
|
|
|
|
import {
|
|
|
|
Button,
|
|
|
|
ButtonVariant,
|
|
|
|
Form,
|
|
|
|
FormGroup,
|
|
|
|
Modal,
|
|
|
|
ModalVariant,
|
|
|
|
TextContent,
|
|
|
|
TextInput,
|
|
|
|
ValidatedOptions,
|
|
|
|
} from "@patternfly/react-core";
|
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import { useForm, UseFormMethods } from "react-hook-form";
|
|
|
|
|
2021-08-26 08:39:35 +00:00
|
|
|
import type UserRepresentation from "@keycloak/keycloak-admin-client/lib/defs/userRepresentation";
|
2021-06-10 20:00:14 +00:00
|
|
|
import { emailRegexPattern } from "../util";
|
|
|
|
|
|
|
|
type AddUserEmailModalProps = {
|
|
|
|
id?: string;
|
|
|
|
form: UseFormMethods<UserRepresentation>;
|
|
|
|
rename?: string;
|
|
|
|
handleModalToggle: () => void;
|
|
|
|
testConnection: () => void;
|
|
|
|
user: UserRepresentation;
|
|
|
|
save: (user?: UserRepresentation) => void;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const AddUserEmailModal = ({
|
|
|
|
handleModalToggle,
|
|
|
|
save,
|
|
|
|
}: AddUserEmailModalProps) => {
|
|
|
|
const { t } = useTranslation("groups");
|
|
|
|
const { register, errors, handleSubmit, watch } = useForm();
|
|
|
|
|
|
|
|
const watchEmailInput = watch("email", "");
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Modal
|
|
|
|
variant={ModalVariant.small}
|
|
|
|
title={t("realm-settings:provideEmailTitle")}
|
|
|
|
isOpen={true}
|
|
|
|
onClose={handleModalToggle}
|
|
|
|
actions={[
|
|
|
|
<Button
|
|
|
|
data-testid="modal-test-connection-button"
|
|
|
|
key="confirm"
|
|
|
|
variant="primary"
|
|
|
|
type="submit"
|
|
|
|
form="email-form"
|
|
|
|
isDisabled={!watchEmailInput}
|
|
|
|
>
|
2021-10-05 10:31:39 +00:00
|
|
|
{t("common:testConnection")}
|
2021-06-10 20:00:14 +00:00
|
|
|
</Button>,
|
|
|
|
<Button
|
|
|
|
id="modal-cancel"
|
|
|
|
key="cancel"
|
|
|
|
variant={ButtonVariant.link}
|
|
|
|
onClick={() => {
|
|
|
|
handleModalToggle();
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{t("common:cancel")}
|
|
|
|
</Button>,
|
|
|
|
]}
|
|
|
|
>
|
|
|
|
<TextContent className="kc-provide-email-text">
|
|
|
|
{t("realm-settings:provideEmail")}
|
|
|
|
</TextContent>
|
|
|
|
<Form id="email-form" isHorizontal onSubmit={handleSubmit(save)}>
|
|
|
|
<FormGroup
|
|
|
|
className="kc-email-form-group"
|
|
|
|
name="add-email-address"
|
|
|
|
fieldId="email-id"
|
|
|
|
helperTextInvalid={t("users:emailInvalid")}
|
|
|
|
validated={
|
|
|
|
errors.email ? ValidatedOptions.error : ValidatedOptions.default
|
|
|
|
}
|
|
|
|
isRequired
|
|
|
|
>
|
|
|
|
<TextInput
|
|
|
|
data-testid="email-address-input"
|
|
|
|
ref={register({ required: true, pattern: emailRegexPattern })}
|
|
|
|
autoFocus
|
|
|
|
type="text"
|
|
|
|
id="add-email"
|
|
|
|
name="email"
|
|
|
|
validated={
|
|
|
|
errors.email ? ValidatedOptions.error : ValidatedOptions.default
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
</Form>
|
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
};
|