114 lines
2.9 KiB
TypeScript
114 lines
2.9 KiB
TypeScript
import {
|
|
Button,
|
|
ButtonVariant,
|
|
Form,
|
|
FormGroup,
|
|
Modal,
|
|
ModalVariant,
|
|
ValidatedOptions,
|
|
} from "@patternfly/react-core";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useForm, UseFormMethods } from "react-hook-form";
|
|
import type { KeyValueType } from "../components/key-value-form/key-value-convert";
|
|
|
|
import { KeycloakTextInput } from "../components/keycloak-text-input/KeycloakTextInput";
|
|
|
|
type AddMessageBundleModalProps = {
|
|
id?: string;
|
|
form: UseFormMethods<BundleForm>;
|
|
save: (model: BundleForm) => void;
|
|
handleModalToggle: () => void;
|
|
};
|
|
|
|
export type BundleForm = {
|
|
messageBundle: KeyValueType;
|
|
};
|
|
|
|
export const AddMessageBundleModal = ({
|
|
handleModalToggle,
|
|
save,
|
|
}: AddMessageBundleModalProps) => {
|
|
const { t } = useTranslation("realm-settings");
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
formState: { errors },
|
|
} = useForm();
|
|
|
|
return (
|
|
<Modal
|
|
variant={ModalVariant.small}
|
|
title={t("addMessageBundle")}
|
|
isOpen
|
|
onClose={handleModalToggle}
|
|
actions={[
|
|
<Button
|
|
data-testid="add-bundle-confirm-button"
|
|
key="confirm"
|
|
variant="primary"
|
|
type="submit"
|
|
form="bundle-form"
|
|
>
|
|
{t("common:create")}
|
|
</Button>,
|
|
<Button
|
|
id="modal-cancel"
|
|
data-testid="cancel"
|
|
key="cancel"
|
|
variant={ButtonVariant.link}
|
|
onClick={() => {
|
|
handleModalToggle();
|
|
}}
|
|
>
|
|
{t("common:cancel")}
|
|
</Button>,
|
|
]}
|
|
>
|
|
<Form id="bundle-form" isHorizontal onSubmit={handleSubmit(save)}>
|
|
<FormGroup
|
|
label={t("common:key")}
|
|
name="key"
|
|
fieldId="key-id"
|
|
helperTextInvalid={t("common:required")}
|
|
validated={
|
|
errors.key ? ValidatedOptions.error : ValidatedOptions.default
|
|
}
|
|
isRequired
|
|
>
|
|
<KeycloakTextInput
|
|
data-testid="key-input"
|
|
ref={register({ required: true })}
|
|
autoFocus
|
|
type="text"
|
|
id="key-id"
|
|
name="key"
|
|
validated={
|
|
errors.key ? ValidatedOptions.error : ValidatedOptions.default
|
|
}
|
|
/>
|
|
</FormGroup>
|
|
<FormGroup
|
|
label={t("common:value")}
|
|
name="add-value"
|
|
fieldId="value-id"
|
|
helperTextInvalid={t("common:required")}
|
|
validated={
|
|
errors.value ? ValidatedOptions.error : ValidatedOptions.default
|
|
}
|
|
isRequired
|
|
>
|
|
<KeycloakTextInput
|
|
data-testid="value-input"
|
|
ref={register({ required: true })}
|
|
type="text"
|
|
id="value-id"
|
|
name="value"
|
|
validated={
|
|
errors.value ? ValidatedOptions.error : ValidatedOptions.default
|
|
}
|
|
/>
|
|
</FormGroup>
|
|
</Form>
|
|
</Modal>
|
|
);
|
|
};
|