import { useState, useEffect } from 'react'; import { TextField } from '@mui/material'; import handleEvent from '@pega/react-sdk-components/lib/components/helpers/event-utils'; import { getComponentFromMap } from '@pega/react-sdk-components/lib/bridge/helpers/sdk_component_map'; import type { PConnFieldProps } from '@pega/react-sdk-components/lib/types/PConnProps'; interface TextInputProps extends PConnFieldProps { // If any, enter additional props that only exist on TextInput here fieldMetadata?: any; } export default function TextInput(props: TextInputProps) { // Get emitted components from map (so we can get any override that may exist) const FieldValueList = getComponentFromMap('FieldValueList'); const { getPConnect, label, required, disabled, value = '', validatemessage, status, /* onChange, onBlur */ readOnly, testId, fieldMetadata, helperText, displayMode, hideLabel, placeholder } = props; const pConn = getPConnect(); const actions = pConn.getActionsApi(); const propName = (pConn.getStateProps() as any).value; const helperTextToDisplay = validatemessage || helperText; const [inputValue, setInputValue] = useState(''); const maxLength = fieldMetadata?.maxLength; let readOnlyProp = {}; // Note: empty if NOT ReadOnly useEffect(() => { setInputValue(value); }, [value]); if (displayMode === 'DISPLAY_ONLY') { return ; } if (displayMode === 'STACKED_LARGE_VAL') { return ; } if (readOnly) { readOnlyProp = { readOnly: true }; } const testProps: any = { 'data-test-id': testId }; function handleChange(event) { // update internal value setInputValue(event?.target?.value); } function handleBlur() { handleEvent(actions, 'changeNblur', propName, inputValue); } return ( ); }