Message: Fix disappearing messages when opening context menu with soft keyboard (#1246)

This commit is contained in:
Alexander Zinchuk 2021-07-07 18:38:46 +03:00
parent 03608959e6
commit 55ff760f03

View File

@ -168,6 +168,7 @@ const APPENDIX_OWN = '<svg width="9" height="20" xmlns="http://www.w3.org/2000/s
const APPENDIX_NOT_OWN = '<svg width="9" height="20" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-50%" y="-14.7%" width="200%" height="141.2%" filterUnits="objectBoundingBox" id="a"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0621962482 0 0 0 0 0.138574144 0 0 0 0 0.185037364 0 0 0 0.15 0" in="shadowBlurOuter1"/></filter></defs><g fill="none" fill-rule="evenodd"><path d="M3 17h6V0c-.193 2.84-.876 5.767-2.05 8.782-.904 2.325-2.446 4.485-4.625 6.48A1 1 0 003 17z" fill="#000" filter="url(#a)"/><path d="M3 17h6V0c-.193 2.84-.876 5.767-2.05 8.782-.904 2.325-2.446 4.485-4.625 6.48A1 1 0 003 17z" fill="#FFF" class="corner"/></g></svg>';
const APPEARANCE_DELAY = 10;
const NO_MEDIA_CORNERS_THRESHOLD = 18;
const ANDROID_KEYBOARD_HIDE_DELAY_MS = 150;
const Message: FC<OwnProps & StateProps & DispatchProps> = ({
message,
@ -430,7 +431,13 @@ const Message: FC<OwnProps & StateProps & DispatchProps> = ({
return;
}
handleContextMenu(e);
if (IS_ANDROID) {
setTimeout(() => {
handleContextMenu(e);
}, ANDROID_KEYBOARD_HIDE_DELAY_MS);
} else {
handleContextMenu(e);
}
}, [handleContextMenu]);
const handleReadMedia = useCallback((): void => {