This commit is contained in:
anirban paul 2024-05-23 11:31:59 -04:00 committed by GitHub
commit 3ab6ed3b77
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -100,8 +100,10 @@ describe('MessageComposer', () => {
const onSendMessage = jest.fn();
render(<Render context={{ onSendMessage }} />);
expect(screen.getByTestId('message-composer-send-audio')).toBeOnTheScreen();
expect(screen.getByTestId('message-composer-send')).not.toBeOnTheScreen();
await user.type(screen.getByTestId('message-composer-input'), 'test');
expect(screen.getByTestId('message-composer-input').props.value.trim()).not.toBe("");
expect(screen.queryByTestId('message-composer-send-audio')).not.toBeOnTheScreen();
expect(screen.getByTestId('message-composer-send')).toBeOnTheScreen();

View File

@ -143,7 +143,8 @@ export const ComposerInput = memo(
}));
const setInput: TSetInput = (text, selection) => {
textRef.current = text;
const message = text.trim();
textRef.current = message;
if (inputRef.current) {
inputRef.current.setNativeProps({ text });
}
@ -154,7 +155,7 @@ export const ComposerInput = memo(
selectionRef.current = selection;
}, 50);
}
setMicOrSend(text.length === 0 ? 'mic' : 'send');
setMicOrSend(message.length === 0 ? 'mic' : 'send');
};
const focus = () => {