Merge pull request #3171 from yougotwill/fix/ses-2585/multiline_input_autofocus

Restore autofocus behaviour for multiline inputs
pull/3172/head
Audric Ackermann 8 months ago committed by GitHub
commit e1b736440e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -152,8 +152,15 @@ const StyledPlaceholder = styled(motion.div)<{
${props => props.editable && 'cursor: pointer;'}
line-height: 1;
padding: ${props => !props.centerText && 'var(--margins-md) 0'};
background: transparent;
color: ${props => (props.error ? 'var(--danger-color)' : 'var(--input-text-color)')};
color: ${props =>
props.error
? 'var(--danger-color)'
: props.editable
? 'var(--input-text-placeholder-color)'
: 'var(--input-text-color)'};
font-family: ${props => (props.monospaced ? 'var(--font-mono)' : 'var(--font-default)')};
font-size: ${props => `var(--font-size-${props.textSize})`};
@ -296,7 +303,7 @@ export const SessionInput = (props: Props) => {
const [errorString, setErrorString] = useState('');
const [textErrorStyle, setTextErrorStyle] = useState(false);
const [forceShow, setForceShow] = useState(false);
const [isFocused, setIsFocused] = useState(false);
const [isFocused, setIsFocused] = useState(props.autoFocus || false);
const textAreaRef = useRef(inputRef?.current || null);
@ -312,7 +319,7 @@ export const SessionInput = (props: Props) => {
setTextErrorStyle(false);
if (isTextArea && textAreaRef && textAreaRef.current !== null) {
const scrollHeight = `${textAreaRef.current.scrollHeight}px`;
if (isEmpty(val)) {
if (!autoFocus && isEmpty(val)) {
// resets the height of the text area so it's centered if we clear the text
textAreaRef.current.style.height = 'unset';
}
@ -344,7 +351,7 @@ export const SessionInput = (props: Props) => {
onBlur: (event: ChangeEvent<HTMLInputElement>) => {
if (editable && !disableOnBlurEvent) {
updateInputValue(event);
if (isEmpty(value) && isFocused) {
if (isEmpty(value) && !autoFocus && isFocused) {
setIsFocused(false);
}
}
@ -380,6 +387,12 @@ export const SessionInput = (props: Props) => {
}
}, [error, errorString]);
useEffect(() => {
if (isTextArea && editable && isFocused && textAreaRef && textAreaRef.current !== null) {
textAreaRef.current.focus();
}
}, [editable, isFocused, isTextArea]);
return (
<StyledSessionInput
className={className}
@ -407,7 +420,7 @@ export const SessionInput = (props: Props) => {
{isFocused ? (
<textarea
{...inputProps}
placeholder={''}
placeholder={!autoFocus ? '' : editable ? placeholder : value}
ref={inputRef || textAreaRef}
aria-label={ariaLabel || 'session input text area'}
/>

@ -92,7 +92,6 @@ export const OverlayInvite = () => {
alignItems="center"
>
<SessionInput
autoFocus={true}
type="text"
value={ourSessionID}
editable={false}

Loading…
Cancel
Save