12b263c029
Closes #25114 Signed-off-by: John Gomersall <thegoms@gmail.com>
30 lines
980 B
TypeScript
30 lines
980 B
TypeScript
import { TextInput, TextInputTypes } from "@patternfly/react-core";
|
|
|
|
import { UserProfileFieldProps } from "./UserProfileFields";
|
|
import { UserProfileGroup } from "./UserProfileGroup";
|
|
import { fieldName, isRequiredAttribute, label } from "./utils";
|
|
|
|
export const TextComponent = (props: UserProfileFieldProps) => {
|
|
const { form, inputType, attribute } = props;
|
|
const isRequired = isRequiredAttribute(attribute);
|
|
const type = inputType.startsWith("html")
|
|
? (inputType.substring("html".length + 2) as TextInputTypes)
|
|
: "text";
|
|
|
|
return (
|
|
<UserProfileGroup {...props}>
|
|
<TextInput
|
|
id={attribute.name}
|
|
data-testid={attribute.name}
|
|
type={type}
|
|
placeholder={label(
|
|
props.t,
|
|
attribute.annotations?.["inputTypePlaceholder"] as string,
|
|
)}
|
|
readOnly={attribute.readOnly}
|
|
isRequired={isRequired}
|
|
{...form.register(fieldName(attribute.name))}
|
|
/>
|
|
</UserProfileGroup>
|
|
);
|
|
};
|