import { useEffect, useState } 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'; import useStatus from '@pega/react-sdk-components/lib/hooks/useStatus'; import { getFieldSx } from '@pega/react-sdk-components/lib/components/helpers/field-utils'; interface URLComponentProps extends PConnFieldProps { // If any, enter additional props that only exist on URLComponent here showFieldMessage?: boolean; messageConfig?: { content?: string; visibility?: boolean; }; variant?: string; } // NOTE: that we had to change the name from URL to URLComponent // Otherwise, we were getting all kinds of weird errors when we // referred to URL as a component. export default function URLComponent(props: URLComponentProps) { // Get emitted components from map (so we can get any override that may exist) const FieldValueList = getComponentFromMap('FieldValueList'); const TextInput = getComponentFromMap('TextInput'); const { getPConnect, label, required, disabled, value = '', validatemessage, readOnly, testId, helperText, displayMode, hideLabel, placeholder, showFieldMessage, messageConfig = {} } = props; const eligibleForFieldWarning = showFieldMessage && messageConfig.visibility && !readOnly; const helperTextToDisplay = validatemessage || (eligibleForFieldWarning ? messageConfig.content : helperText); const [inputValue, setInputValue] = useState(''); const pConn = getPConnect(); const actions = pConn.getActionsApi(); const propName = (pConn.getStateProps() as any).value; const status = useStatus({ showFieldMessage, messageVisibility: messageConfig.visibility, validatemessage, readOnly }); useEffect(() => { setInputValue(value); }, [value]); if (displayMode === 'DISPLAY_ONLY') { return ; } if (displayMode === 'STACKED_LARGE_VAL') { return ; } if (readOnly) { return ; } const testProps: any = { 'data-test-id': testId }; const handleChange = event => { setInputValue(event?.target?.value); }; function handleBlur() { handleEvent(actions, 'changeNblur', propName, inputValue); } return ( ); }