|
|
|
@ -5,7 +5,7 @@ import { abbreviateNumber } from '../../../../util/abbreviateNumber';
|
|
|
|
|
import { nativeEmojiData } from '../../../../util/emoji';
|
|
|
|
|
import styled from 'styled-components';
|
|
|
|
|
import { useMouse } from 'react-use';
|
|
|
|
|
import { ReactionPopup, TipPosition } from './ReactionPopup';
|
|
|
|
|
import { POPUP_WIDTH, ReactionPopup, TipPosition } from './ReactionPopup';
|
|
|
|
|
import { popupXDefault, popupYDefault } from '../message-content/MessageReactions';
|
|
|
|
|
import { isUsAnySogsFromCache } from '../../../../session/apis/open_group_api/sogsv3/knownBlindedkeys';
|
|
|
|
|
|
|
|
|
@ -77,7 +77,7 @@ export const Reaction = (props: ReactionProps): ReactElement => {
|
|
|
|
|
const { docX, elW } = useMouse(reactionRef);
|
|
|
|
|
|
|
|
|
|
const gutterWidth = 380;
|
|
|
|
|
const tooltipMidPoint = 108; // width is 216px;
|
|
|
|
|
const tooltipMidPoint = POPUP_WIDTH / 2; // px
|
|
|
|
|
const [tooltipPosition, setTooltipPosition] = useState<TipPosition>('center');
|
|
|
|
|
|
|
|
|
|
const me = UserUtils.getOurPubKeyStrFromCache();
|
|
|
|
@ -108,7 +108,7 @@ export const Reaction = (props: ReactionProps): ReactElement => {
|
|
|
|
|
const { innerWidth: windowWidth } = window;
|
|
|
|
|
if (handlePopupReaction) {
|
|
|
|
|
// overflow on far right means we shift left
|
|
|
|
|
if (docX + tooltipMidPoint > windowWidth) {
|
|
|
|
|
if (docX + elW + tooltipMidPoint > windowWidth) {
|
|
|
|
|
handlePopupX(Math.abs(popupXDefault) * 1.5 * -1);
|
|
|
|
|
setTooltipPosition('right');
|
|
|
|
|
// overflow onto conversations means we lock to the right
|
|
|
|
|