Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
142 lines
3.9 KiB
Plaintext
142 lines
3.9 KiB
Plaintext
'use client';
|
|
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
import React, { useCallback, useEffect, useMemo, useState } from 'react';
|
|
import { useField } from '../../forms/useField/index.js';
|
|
import { withCondition } from '../../forms/withCondition/index.js';
|
|
import { useConfig } from '../../providers/Config/index.js';
|
|
import { useLocale } from '../../providers/Locale/index.js';
|
|
import { mergeFieldStyles } from '../mergeFieldStyles.js';
|
|
import { isFieldRTL } from '../shared/index.js';
|
|
import { TextInput } from './Input.js';
|
|
import './index.scss';
|
|
export { TextInput };
|
|
const TextFieldComponent = props => {
|
|
const {
|
|
field,
|
|
field: {
|
|
admin: {
|
|
autoComplete,
|
|
className,
|
|
description,
|
|
placeholder,
|
|
rtl
|
|
} = {},
|
|
hasMany,
|
|
label,
|
|
localized,
|
|
maxLength,
|
|
maxRows,
|
|
minLength,
|
|
minRows,
|
|
required
|
|
},
|
|
inputRef,
|
|
path: pathFromProps,
|
|
readOnly,
|
|
validate
|
|
} = props;
|
|
const locale = useLocale();
|
|
const {
|
|
config: {
|
|
localization: localizationConfig
|
|
}
|
|
} = useConfig();
|
|
const memoizedValidate = useCallback((value, options) => {
|
|
if (typeof validate === 'function') {
|
|
return validate(value, {
|
|
...options,
|
|
maxLength,
|
|
minLength,
|
|
required
|
|
});
|
|
}
|
|
}, [validate, minLength, maxLength, required]);
|
|
const {
|
|
customComponents: {
|
|
AfterInput,
|
|
BeforeInput,
|
|
Description,
|
|
Error,
|
|
Label
|
|
} = {},
|
|
disabled,
|
|
path,
|
|
setValue,
|
|
showError,
|
|
value: value_0
|
|
} = useField({
|
|
potentiallyStalePath: pathFromProps,
|
|
validate: memoizedValidate
|
|
});
|
|
const renderRTL = isFieldRTL({
|
|
fieldLocalized: localized,
|
|
fieldRTL: rtl,
|
|
locale,
|
|
localizationConfig: localizationConfig || undefined
|
|
});
|
|
const [valueToRender, setValueToRender] = useState([]) // Only for hasMany
|
|
;
|
|
const handleHasManyChange = useCallback(selectedOption => {
|
|
if (!(readOnly || disabled)) {
|
|
let newValue;
|
|
if (!selectedOption) {
|
|
newValue = [];
|
|
} else if (Array.isArray(selectedOption)) {
|
|
newValue = selectedOption.map(option => option.value?.value || option.value);
|
|
} else {
|
|
newValue = [selectedOption.value?.value || selectedOption.value];
|
|
}
|
|
setValue(newValue);
|
|
}
|
|
}, [readOnly, setValue, disabled]);
|
|
// useEffect update valueToRender:
|
|
useEffect(() => {
|
|
if (hasMany && Array.isArray(value_0)) {
|
|
setValueToRender(value_0.map((val, index) => {
|
|
return {
|
|
id: `${val}${index}`,
|
|
label: `${val}`,
|
|
value: {
|
|
// React-select automatically uses "label-value" as a key, so we will get that react duplicate key warning if we just pass in the value as multiple values can be the same. So we need to append the index to the toString() of the value to avoid that warning, as it uses that as the key.
|
|
toString: () => `${val}${index}`,
|
|
value: val?.value || val
|
|
}
|
|
};
|
|
}));
|
|
}
|
|
}, [value_0, hasMany]);
|
|
const styles = useMemo(() => mergeFieldStyles(field), [field]);
|
|
return /*#__PURE__*/_jsx(TextInput, {
|
|
AfterInput: AfterInput,
|
|
BeforeInput: BeforeInput,
|
|
className: className,
|
|
Description: Description,
|
|
description: description,
|
|
Error: Error,
|
|
hasMany: hasMany,
|
|
htmlAttributes: {
|
|
autoComplete: autoComplete || undefined
|
|
},
|
|
inputRef: inputRef,
|
|
Label: Label,
|
|
label: label,
|
|
localized: localized,
|
|
maxRows: maxRows,
|
|
minRows: minRows,
|
|
onChange: hasMany ? handleHasManyChange : e => {
|
|
setValue(e.target.value);
|
|
},
|
|
path: path,
|
|
placeholder: placeholder,
|
|
readOnly: readOnly || disabled,
|
|
required: required,
|
|
rtl: renderRTL,
|
|
showError: showError,
|
|
style: styles,
|
|
value: value_0 || '',
|
|
valueToRender: valueToRender
|
|
});
|
|
};
|
|
export const TextField = withCondition(TextFieldComponent);
|
|
//# sourceMappingURL=index.js.map |