focus composition box on attachment added

pull/1381/head
Audric Ackermann 4 years ago
parent 7a81c78382
commit a695528d09
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -181,10 +181,13 @@ export class SessionCompositionBox extends React.Component<Props, State> {
this.linkPreviewAbortController?.abort();
this.linkPreviewAbortController = undefined;
}
public componentDidUpdate(prevProps: Props, prevState: State) {
public componentDidUpdate(prevProps: Props, _prevState: State) {
// reset the state on new conversation key
if (prevProps.conversationKey !== this.props.conversationKey) {
this.setState(getDefaultState(), this.focusCompositionBox);
} else if (this.props.stagedAttachments?.length !== prevProps.stagedAttachments?.length) {
// if number of staged attachment changed, focus the composition box for a more natural UI
this.focusCompositionBox();
}
}

Loading…
Cancel
Save