-
Notifications
You must be signed in to change notification settings - Fork 2.9k
/
PopoverReportActionContextMenu.js
338 lines (299 loc) · 12.8 KB
/
PopoverReportActionContextMenu.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
import React, {forwardRef, useCallback, useEffect, useImperativeHandle, useRef, useState} from 'react';
import {Dimensions} from 'react-native';
import _ from 'underscore';
import ConfirmModal from '@components/ConfirmModal';
import PopoverWithMeasuredContent from '@components/PopoverWithMeasuredContent';
import useLocalize from '@hooks/useLocalize';
import * as ReportActionsUtils from '@libs/ReportActionsUtils';
import * as IOU from '@userActions/IOU';
import * as Report from '@userActions/Report';
import BaseReportActionContextMenu from './BaseReportActionContextMenu';
function PopoverReportActionContextMenu(_props, ref) {
const {translate} = useLocalize();
const reportIDRef = useRef('0');
const typeRef = useRef(undefined);
const reportActionRef = useRef({});
const reportActionIDRef = useRef('0');
const originalReportIDRef = useRef('0');
const selectionRef = useRef('');
const reportActionDraftMessageRef = useRef('');
const cursorRelativePosition = useRef({
horizontal: 0,
vertical: 0,
});
// The horizontal and vertical position (relative to the screen) where the popover will display.
const popoverAnchorPosition = useRef({
horizontal: 0,
vertical: 0,
});
const [instanceID, setInstanceID] = useState('');
const [isPopoverVisible, setIsPopoverVisible] = useState(false);
const [isDeleteCommentConfirmModalVisible, setIsDeleteCommentConfirmModalVisible] = useState(false);
const [shouldSetModalVisibilityForDeleteConfirmation, setShouldSetModalVisibilityForDeleteConfirmation] = useState(true);
const [isRoomArchived, setIsRoomArchived] = useState(false);
const [isChronosReportEnabled, setIsChronosReportEnabled] = useState(false);
const [isChatPinned, setIsChatPinned] = useState(false);
const [hasUnreadMessages, setHasUnreadMessages] = useState(false);
const contentRef = useRef(null);
const anchorRef = useRef(null);
const dimensionsEventListener = useRef(null);
const contextMenuAnchorRef = useRef(null);
const contextMenuTargetNode = useRef(null);
const onPopoverShow = useRef(() => {});
const onPopoverHide = useRef(() => {});
const onCancelDeleteModal = useRef(() => {});
const onComfirmDeleteModal = useRef(() => {});
const onPopoverHideActionCallback = useRef(() => {});
const callbackWhenDeleteModalHide = useRef(() => {});
/**
* Get the Context menu anchor position
* We calculate the achor coordinates from measureInWindow async method
*
* @returns {Promise<Object>}
*/
const getContextMenuMeasuredLocation = useCallback(
() =>
new Promise((resolve) => {
if (contextMenuAnchorRef.current && _.isFunction(contextMenuAnchorRef.current.measureInWindow)) {
contextMenuAnchorRef.current.measureInWindow((x, y) => resolve({x, y}));
} else {
resolve({x: 0, y: 0});
}
}),
[],
);
/**
* This gets called on Dimensions change to find the anchor coordinates for the action context menu.
*/
const measureContextMenuAnchorPosition = useCallback(() => {
if (!isPopoverVisible) {
return;
}
getContextMenuMeasuredLocation().then(({x, y}) => {
if (!x || !y) {
return;
}
popoverAnchorPosition.current = {
horizontal: cursorRelativePosition.horizontal + x,
vertical: cursorRelativePosition.vertical + y,
};
});
}, [isPopoverVisible, getContextMenuMeasuredLocation]);
useEffect(() => {
dimensionsEventListener.current = Dimensions.addEventListener('change', measureContextMenuAnchorPosition);
return () => {
if (!dimensionsEventListener.current) {
return;
}
dimensionsEventListener.current.remove();
};
}, [measureContextMenuAnchorPosition]);
/**
* Whether Context Menu is active for the Report Action.
*
* @param {Number|String} actionID
* @return {Boolean}
*/
const isActiveReportAction = (actionID) => Boolean(actionID) && (reportActionIDRef.current === actionID || reportActionRef.current.reportActionID === actionID);
const clearActiveReportAction = () => {
reportActionIDRef.current = '0';
reportActionRef.current = {};
};
/**
* Show the ReportActionContextMenu modal popover.
*
* @param {string} type - context menu type [EMAIL, LINK, REPORT_ACTION]
* @param {Object} [event] - A press event.
* @param {String} [selection] - Copied content.
* @param {Element} contextMenuAnchor - popoverAnchor
* @param {String} reportID - Active Report Id
* @param {Object} reportActionID - ReportAction for ContextMenu
* @param {String} originalReportID - The currrent Report Id of the reportAction
* @param {String} draftMessage - ReportAction Draftmessage
* @param {Function} [onShow] - Run a callback when Menu is shown
* @param {Function} [onHide] - Run a callback when Menu is hidden
* @param {Boolean} isArchivedRoom - Whether the provided report is an archived room
* @param {Boolean} isChronosReport - Flag to check if the chat participant is Chronos
* @param {Boolean} isPinnedChat - Flag to check if the chat is pinned in the LHN. Used for the Pin/Unpin action
* @param {Boolean} isUnreadChat - Flag to check if the chat is unread in the LHN. Used for the Mark as Read/Unread action
*/
const showContextMenu = (
type,
event,
selection,
contextMenuAnchor,
reportID,
reportActionID,
originalReportID,
draftMessage,
onShow = () => {},
onHide = () => {},
isArchivedRoom = false,
isChronosReport = false,
isPinnedChat = false,
isUnreadChat = false,
) => {
const nativeEvent = event.nativeEvent || {};
contextMenuAnchorRef.current = contextMenuAnchor;
contextMenuTargetNode.current = nativeEvent.target;
setInstanceID(Math.random().toString(36).substr(2, 5));
onPopoverShow.current = onShow;
onPopoverHide.current = onHide;
getContextMenuMeasuredLocation().then(({x, y}) => {
popoverAnchorPosition.current = {
horizontal: nativeEvent.pageX - x,
vertical: nativeEvent.pageY - y,
};
popoverAnchorPosition.current = {
horizontal: nativeEvent.pageX,
vertical: nativeEvent.pageY,
};
typeRef.current = type;
reportIDRef.current = reportID;
reportActionIDRef.current = reportActionID;
originalReportIDRef.current = originalReportID;
selectionRef.current = selection;
setIsPopoverVisible(true);
reportActionDraftMessageRef.current = draftMessage;
setIsRoomArchived(isArchivedRoom);
setIsChronosReportEnabled(isChronosReport);
setIsChatPinned(isPinnedChat);
setHasUnreadMessages(isUnreadChat);
});
};
/**
* After Popover shows, call the registered onPopoverShow callback and reset it
*/
const runAndResetOnPopoverShow = () => {
onPopoverShow.current();
// After we have called the action, reset it.
onPopoverShow.current = () => {};
};
/**
* Run the callback and return a noop function to reset it
* @param {Function} callback
* @returns {Function}
*/
const runAndResetCallback = (callback) => {
callback();
return () => {};
};
/**
* After Popover hides, call the registered onPopoverHide & onPopoverHideActionCallback callback and reset it
*/
const runAndResetOnPopoverHide = () => {
reportIDRef.current = '0';
reportActionIDRef.current = '0';
originalReportIDRef.current = '0';
onPopoverHide.current = runAndResetCallback(onPopoverHide.current);
onPopoverHideActionCallback.current = runAndResetCallback(onPopoverHideActionCallback.current);
};
/**
* Hide the ReportActionContextMenu modal popover.
* @param {Function} onHideActionCallback Callback to be called after popover is completely hidden
*/
const hideContextMenu = (onHideActionCallback) => {
if (_.isFunction(onHideActionCallback)) {
onPopoverHideActionCallback.current = onHideActionCallback;
}
selectionRef.current = '';
reportActionDraftMessageRef.current = '';
setIsPopoverVisible(false);
};
const confirmDeleteAndHideModal = useCallback(() => {
callbackWhenDeleteModalHide.current = () => (onComfirmDeleteModal.current = runAndResetCallback(onComfirmDeleteModal.current));
if (ReportActionsUtils.isMoneyRequestAction(reportActionRef.current)) {
IOU.deleteMoneyRequest(reportActionRef.current.originalMessage.IOUTransactionID, reportActionRef.current);
} else {
Report.deleteReportComment(reportIDRef.current, reportActionRef.current);
}
setIsDeleteCommentConfirmModalVisible(false);
}, []);
const hideDeleteModal = () => {
callbackWhenDeleteModalHide.current = () => (onCancelDeleteModal.current = runAndResetCallback(onCancelDeleteModal.current));
setIsDeleteCommentConfirmModalVisible(false);
setShouldSetModalVisibilityForDeleteConfirmation(true);
setIsRoomArchived(false);
setIsChronosReportEnabled(false);
setIsChatPinned(false);
setHasUnreadMessages(false);
};
/**
* Opens the Confirm delete action modal
* @param {String} reportID
* @param {Object} reportAction
* @param {Boolean} [shouldSetModalVisibility]
* @param {Function} [onConfirm]
* @param {Function} [onCancel]
*/
const showDeleteModal = (reportID, reportAction, shouldSetModalVisibility = true, onConfirm = () => {}, onCancel = () => {}) => {
onCancelDeleteModal.current = onCancel;
onComfirmDeleteModal.current = onConfirm;
reportIDRef.current = reportID;
reportActionRef.current = reportAction;
setShouldSetModalVisibilityForDeleteConfirmation(shouldSetModalVisibility);
setIsDeleteCommentConfirmModalVisible(true);
};
useImperativeHandle(ref, () => ({
showContextMenu,
hideContextMenu,
showDeleteModal,
hideDeleteModal,
isActiveReportAction,
instanceID,
runAndResetOnPopoverHide,
clearActiveReportAction,
contentRef,
}));
const reportAction = reportActionRef.current;
return (
<>
<PopoverWithMeasuredContent
isVisible={isPopoverVisible}
onClose={hideContextMenu}
onModalShow={runAndResetOnPopoverShow}
onModalHide={runAndResetOnPopoverHide}
anchorPosition={popoverAnchorPosition.current}
animationIn="fadeIn"
disableAnimation={false}
animationOutTiming={1}
shouldSetModalVisibility={false}
fullscreen
withoutOverlay
anchorRef={anchorRef}
>
<BaseReportActionContextMenu
isVisible
type={typeRef.current}
reportID={reportIDRef.current}
reportActionID={reportActionIDRef.current}
draftMessage={reportActionDraftMessageRef.current}
selection={selectionRef.current}
isArchivedRoom={isRoomArchived}
isChronosReport={isChronosReportEnabled}
isPinnedChat={isChatPinned}
isUnreadChat={hasUnreadMessages}
anchor={contextMenuTargetNode}
contentRef={contentRef}
originalReportID={originalReportIDRef.current}
/>
</PopoverWithMeasuredContent>
<ConfirmModal
title={translate('reportActionContextMenu.deleteAction', {action: reportAction})}
isVisible={isDeleteCommentConfirmModalVisible}
shouldSetModalVisibility={shouldSetModalVisibilityForDeleteConfirmation}
onConfirm={confirmDeleteAndHideModal}
onCancel={hideDeleteModal}
onModalHide={() => {
callbackWhenDeleteModalHide.current();
}}
prompt={translate('reportActionContextMenu.deleteConfirmation', {action: reportAction})}
confirmText={translate('common.delete')}
cancelText={translate('common.cancel')}
danger
/>
</>
);
}
PopoverReportActionContextMenu.displayName = 'PopoverReportActionContextMenu';
export default forwardRef(PopoverReportActionContextMenu);