-
Notifications
You must be signed in to change notification settings - Fork 2.9k
/
ReportActionCompose.js
481 lines (437 loc) · 19 KB
/
ReportActionCompose.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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
import React from 'react';
import PropTypes from 'prop-types';
import {
View,
TouchableOpacity,
Pressable,
InteractionManager,
Text,
} from 'react-native';
import {withNavigationFocus} from '@react-navigation/compat';
import _ from 'underscore';
import lodashGet from 'lodash/get';
import {withOnyx} from 'react-native-onyx';
import styles, {getButtonBackgroundColorStyle, getIconFillColor} from '../../../styles/styles';
import themeColors from '../../../styles/themes/default';
import TextInputFocusable from '../../../components/TextInputFocusable';
import ONYXKEYS from '../../../ONYXKEYS';
import Icon from '../../../components/Icon';
import {
Plus, Send, Emoji, Paperclip, Offline,
} from '../../../components/Icon/Expensicons';
import AttachmentPicker from '../../../components/AttachmentPicker';
import {addAction, saveReportComment, broadcastUserIsTyping} from '../../../libs/actions/Report';
import ReportTypingIndicator from './ReportTypingIndicator';
import AttachmentModal from '../../../components/AttachmentModal';
import compose from '../../../libs/compose';
import CreateMenu from '../../../components/CreateMenu';
import Popover from '../../../components/Popover';
import EmojiPickerMenu from './EmojiPickerMenu';
import withWindowDimensions from '../../../components/withWindowDimensions';
import withDrawerState from '../../../components/withDrawerState';
import getButtonState from '../../../libs/getButtonState';
import CONST from '../../../CONST';
import canFocusInputOnScreenFocus from '../../../libs/canFocusInputOnScreenFocus';
import variables from '../../../styles/variables';
const propTypes = {
// A method to call when the form is submitted
onSubmit: PropTypes.func.isRequired,
// The comment left by the user
comment: PropTypes.string,
// The ID of the report actions will be created for
reportID: PropTypes.number.isRequired,
// Details about any modals being used
modal: PropTypes.shape({
// Indicates if there is a modal currently visible or not
isVisible: PropTypes.bool,
}),
// The report currently being looked at
report: PropTypes.shape({
// participants associated with current report
participants: PropTypes.arrayOf(PropTypes.string),
}).isRequired,
/* Is the report view covered by the drawer */
isDrawerOpen: PropTypes.bool.isRequired,
/* Is the window width narrow, like on a mobile device */
isSmallScreenWidth: PropTypes.bool.isRequired,
// Is composer screen focused
isFocused: PropTypes.bool.isRequired,
// Information about the network
network: PropTypes.shape({
// Is the network currently offline or not
isOffline: PropTypes.bool,
}),
};
const defaultProps = {
comment: '',
modal: {},
network: {isOffline: false},
};
class ReportActionCompose extends React.Component {
constructor(props) {
super(props);
this.updateComment = this.updateComment.bind(this);
this.debouncedSaveReportComment = _.debounce(this.debouncedSaveReportComment.bind(this), 1000, false);
this.debouncedBroadcastUserIsTyping = _.debounce(this.debouncedBroadcastUserIsTyping.bind(this), 100, true);
this.submitForm = this.submitForm.bind(this);
this.triggerSubmitShortcut = this.triggerSubmitShortcut.bind(this);
this.submitForm = this.submitForm.bind(this);
this.setIsFocused = this.setIsFocused.bind(this);
this.showEmojiPicker = this.showEmojiPicker.bind(this);
this.hideEmojiPicker = this.hideEmojiPicker.bind(this);
this.addEmojiToTextBox = this.addEmojiToTextBox.bind(this);
this.focus = this.focus.bind(this);
this.comment = props.comment;
this.shouldFocusInputOnScreenFocus = canFocusInputOnScreenFocus();
this.focusEmojiSearchInput = this.focusEmojiSearchInput.bind(this);
this.emojiSearchInput = null;
this.state = {
isFocused: this.shouldFocusInputOnScreenFocus,
textInputShouldClear: false,
isCommentEmpty: props.comment.length === 0,
isEmojiPickerVisible: false,
isMenuVisible: false,
// The horizontal and vertical position (relative to the window) where the emoji popover will display.
emojiPopoverAnchorPosition: {
horizontal: 0,
vertical: 0,
},
};
}
componentDidUpdate(prevProps) {
// We want to focus or refocus the input when a modal has been closed and the underlying screen is focused.
// We avoid doing this on native platforms since the software keyboard popping
// open creates a jarring and broken UX.
if (this.shouldFocusInputOnScreenFocus && this.props.isFocused
&& prevProps.modal.isVisible && !this.props.modal.isVisible) {
this.setIsFocused(true);
this.focus();
}
}
/**
* Updates the Highlight state of the composer
*
* @param {Boolean} shouldHighlight
*/
setIsFocused(shouldHighlight) {
this.setState({isFocused: shouldHighlight});
}
/**
* Updates the should clear state of the composer
*
* @param {Boolean} shouldClear
*/
setTextInputShouldClear(shouldClear) {
this.setState({textInputShouldClear: shouldClear});
}
/**
* Updates the visibility state of the menu
*
* @param {Boolean} isMenuVisible
*/
setMenuVisibility(isMenuVisible) {
this.setState({isMenuVisible});
}
/**
* Focus the composer text input
*/
focus() {
if (this.textInput) {
// There could be other animations running while we trigger manual focus.
// This prevents focus from making those animations janky.
InteractionManager.runAfterInteractions(() => {
this.textInput.focus();
});
}
}
/**
* Save our report comment in Onyx. We debounce this method in the constructor so that it's not called too often
* to update Onyx and re-render this component.
*
* @param {String} comment
*/
debouncedSaveReportComment(comment) {
saveReportComment(this.props.reportID, comment || '');
}
/**
* Broadcast that the user is typing. We debounce this method in the constructor to limit how often we publish
* client events.
*/
debouncedBroadcastUserIsTyping() {
broadcastUserIsTyping(this.props.reportID);
}
/**
* Update the value of the comment in Onyx
*
* @param {String} newComment
*/
updateComment(newComment) {
this.setState({
isCommentEmpty: newComment.length === 0,
});
this.comment = newComment;
this.debouncedSaveReportComment(newComment);
this.debouncedBroadcastUserIsTyping();
}
/**
* Listens for the keyboard shortcut and submits
* the form when we have enter
*
* @param {Object} e
*/
triggerSubmitShortcut(e) {
if (e && e.key === 'Enter' && !e.shiftKey) {
e.preventDefault();
this.submitForm();
}
}
/**
* Show the ReportActionContextMenu modal popover.
*
* @param {Object} [event] - A press event.
*/
showEmojiPicker(event) {
this.textInput.blur();
this.state.emojiPopoverAnchorPosition = {
horizontal: event.nativeEvent.pageX,
vertical: event.nativeEvent.pageY,
};
this.setState({isEmojiPickerVisible: true});
}
/**
* Hide the ReportActionContextMenu modal popover.
*/
hideEmojiPicker() {
this.setState({isEmojiPickerVisible: false});
}
/**
* Callback for the emoji picker to add whatever emoji is chosen into the main input
*
* @param {String} emoji
*/
addEmojiToTextBox(emoji) {
this.hideEmojiPicker();
this.textInput.value = this.comment + emoji;
this.setIsFocused(true);
this.updateComment(this.textInput.value);
}
/**
* Focus the search input in the emoji picker.
*/
focusEmojiSearchInput() {
if (this.emojiSearchInput) {
this.emojiSearchInput.focus();
}
}
/**
* Add a new comment to this chat
*
* @param {SyntheticEvent} [e]
*/
submitForm(e) {
if (e) {
e.preventDefault();
}
const trimmedComment = this.comment.trim();
// Don't submit empty comments
if (!trimmedComment) {
return;
}
this.props.onSubmit(trimmedComment);
this.updateComment('');
this.setTextInputShouldClear(true);
}
render() {
// eslint-disable-next-line no-unused-vars
const hasMultipleParticipants = lodashGet(this.props.report, 'participants.length') > 1;
// Prevents focusing and showing the keyboard while the drawer is covering the chat.
const isComposeDisabled = this.props.isDrawerOpen && this.props.isSmallScreenWidth;
return (
<View style={[styles.chatItemCompose]}>
<View style={[
(this.state.isFocused || this.state.isDraggingOver)
? styles.chatItemComposeBoxFocusedColor
: styles.chatItemComposeBoxColor,
styles.chatItemComposeBox,
styles.flexRow,
]}
>
<AttachmentModal
title="Upload Attachment"
onConfirm={(file) => {
addAction(this.props.reportID, '', file);
this.setTextInputShouldClear(false);
}}
>
{({displayFileInModal}) => (
<>
<AttachmentPicker>
{({openPicker}) => (
<>
<TouchableOpacity
onPress={(e) => {
e.preventDefault();
this.setMenuVisibility(true);
}}
style={styles.chatItemAttachButton}
underlayColor={themeColors.componentBG}
>
<Icon src={Plus} />
</TouchableOpacity>
<CreateMenu
isVisible={this.state.isMenuVisible}
onClose={() => this.setMenuVisibility(false)}
onItemSelected={() => this.setMenuVisibility(false)}
anchorPosition={styles.createMenuPositionReportActionCompose}
animationIn="fadeInUp"
animationOut="fadeOutDown"
menuItems={[
{
icon: Paperclip,
text: 'Add Attachment',
onSelected: () => {
openPicker({
onPicked: (file) => {
displayFileInModal({file});
},
});
},
},
]}
/**
* Temporarily hiding IOU Modal options while Modal is incomplete. Will
* be replaced by a beta flag once IOUConfirm is completed.
menuOptions={hasMultipleParticipants
? [
CONST.MENU_ITEM_KEYS.SPLIT_BILL,
CONST.MENU_ITEM_KEYS.ATTACHMENT_PICKER]
: [
CONST.MENU_ITEM_KEYS.REQUEST_MONEY,
CONST.MENU_ITEM_KEYS.ATTACHMENT_PICKER]}
*/
/>
</>
)}
</AttachmentPicker>
<TextInputFocusable
autoFocus={this.shouldFocusInputOnScreenFocus}
multiline
ref={el => this.textInput = el}
textAlignVertical="top"
placeholder="Write something..."
placeholderTextColor={themeColors.placeholderText}
onChangeText={this.updateComment}
onKeyPress={this.triggerSubmitShortcut}
onDragEnter={() => this.setState({isDraggingOver: true})}
onDragLeave={() => this.setState({isDraggingOver: false})}
onDrop={(e) => {
e.preventDefault();
const file = lodashGet(e, ['dataTransfer', 'files', 0]);
if (!file) {
return;
}
displayFileInModal({file});
this.setState({isDraggingOver: false});
}}
style={[styles.textInputCompose, styles.flex4]}
defaultValue={this.props.comment}
maxLines={16} // This is the same that slack has
onFocus={() => this.setIsFocused(true)}
onBlur={() => this.setIsFocused(false)}
onPasteFile={file => displayFileInModal({file})}
shouldClear={this.state.textInputShouldClear}
onClear={() => this.setTextInputShouldClear(false)}
isDisabled={isComposeDisabled}
/>
</>
)}
</AttachmentModal>
{
// There is no way to disable animations and they are really laggy, because there are so many
// emojis. The best alternative is to set it to 1ms so it just "pops" in and out
}
<Popover
isVisible={this.state.isEmojiPickerVisible}
onClose={this.hideEmojiPicker}
onModalShow={this.focusEmojiSearchInput}
hideModalContentWhileAnimating
animationInTiming={1}
animationOutTiming={1}
anchorPosition={{
top: this.state.emojiPopoverAnchorPosition.vertical - CONST.EMOJI_PICKER_SIZE,
left: this.state.emojiPopoverAnchorPosition.horizontal - CONST.EMOJI_PICKER_SIZE,
}}
>
<EmojiPickerMenu
onEmojiSelected={this.addEmojiToTextBox}
ref={el => this.emojiSearchInput = el}
/>
</Popover>
<Pressable
style={({hovered, pressed}) => ([
styles.chatItemEmojiButton,
getButtonBackgroundColorStyle(getButtonState(hovered, pressed)),
])}
onPress={this.showEmojiPicker}
>
{({hovered, pressed}) => (
<Icon
src={Emoji}
fill={getIconFillColor(getButtonState(hovered, pressed))}
/>
)}
</Pressable>
<TouchableOpacity
style={[styles.chatItemSubmitButton,
this.state.isCommentEmpty
? styles.buttonDisable : styles.buttonSuccess]}
onPress={this.submitForm}
underlayColor={themeColors.componentBG}
disabled={this.state.isCommentEmpty}
>
<Icon src={Send} fill={themeColors.componentBG} />
</TouchableOpacity>
</View>
{this.props.network.isOffline ? (
<View style={[styles.chatItemComposeSecondaryRow]}>
<View style={[
styles.chatItemComposeSecondaryRowOffset,
styles.flexRow,
styles.alignItemsCenter]}
>
<Icon
src={Offline}
width={variables.iconSizeExtraSmall}
height={variables.iconSizeExtraSmall}
/>
<Text style={[styles.ml2, styles.chatItemComposeSecondaryRowSubText]}>
You appear to be offline.
</Text>
</View>
</View>
) : <ReportTypingIndicator reportID={this.props.reportID} />}
</View>
);
}
}
ReportActionCompose.propTypes = propTypes;
ReportActionCompose.defaultProps = defaultProps;
export default compose(
withWindowDimensions,
withDrawerState,
withNavigationFocus,
withOnyx({
comment: {
key: ({reportID}) => `${ONYXKEYS.COLLECTION.REPORT_DRAFT_COMMENT}${reportID}`,
},
modal: {
key: ONYXKEYS.MODAL,
},
network: {
key: ONYXKEYS.NETWORK,
},
report: {
key: ({reportID}) => `${ONYXKEYS.COLLECTION.REPORT}${reportID}`,
},
}),
)(ReportActionCompose);