Merge 73824fe7d9
into a035211cdf
This commit is contained in:
commit
3ab6ed3b77
|
@ -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();
|
||||
|
||||
|
|
|
@ -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 = () => {
|
||||
|
|
Loading…
Reference in New Issue