-
Notifications
You must be signed in to change notification settings - Fork 3k
/
Copy pathReportActionCompose.js
325 lines (294 loc) · 13.2 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
import React from 'react';
import PropTypes from 'prop-types';
import {View, TouchableOpacity} from 'react-native';
import _ from 'underscore';
import lodashGet from 'lodash/get';
import {withOnyx} from 'react-native-onyx';
import styles 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} 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 withWindowDimensions, {windowDimensionsPropTypes} from '../../../components/withWindowDimensions';
import compose from '../../../libs/compose';
import CreateMenu from '../../../components/CreateMenu';
import CONST from '../../../CONST';
import Navigation from '../../../libs/Navigation/Navigation';
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,
...windowDimensionsPropTypes,
};
const defaultProps = {
comment: '',
modal: {},
};
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.comment = props.comment;
this.state = {
isFocused: false,
textInputShouldClear: false,
isCommentEmpty: props.comment.length === 0,
isMenuVisible: false,
};
}
componentDidUpdate(prevProps) {
// The first time the component loads the props is empty and the next time it may contain value.
// If it does let's update this.comment so that it matches the defaultValue that we show in textInput.
if (this.props.comment && prevProps.comment === '' && prevProps.comment !== this.props.comment) {
this.comment = this.props.comment;
}
// When any modal goes from visible to hidden or when the report ID changes, bring focus to the compose field
if (
(prevProps.modal.isVisible && !this.props.modal.isVisible)
|| (prevProps.reportID !== this.props.reportID)
) {
this.setIsFocused(true);
}
}
/**
* Updates the Highlight state of the composer
*
* @param {Boolean} shouldHighlight
*/
setIsFocused(shouldHighlight) {
this.setState({isFocused: shouldHighlight});
if (shouldHighlight && this.textInput) {
this.textInput.focus();
}
}
/**
* Updates the should clear state of the composer
*
* @param {Boolean} shouldClear
*/
setTextInputShouldClear(shouldClear) {
this.setState({textInputShouldClear: shouldClear});
}
/**
* Updates the visiblity state of the menu
*
* @param {Boolean} isMenuVisible
*/
setMenuVisibility(isMenuVisible) {
this.setState({isMenuVisible});
}
/**
* 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();
}
}
/**
* 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() {
// We want to make sure to disable on small screens because in iOS safari the keyboard up/down buttons will
// focus this from the chat switcher.
// https://github.com/Expensify/Expensify.cash/issues/1228
const inputDisable = this.props.isSmallScreenWidth && Navigation.isDrawerOpen();
// eslint-disable-next-line no-unused-vars
const hasMultipleParticipants = lodashGet(this.props.report, 'participants.length') > 1;
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)}
onAttachmentPickerSelected={() => {
setTimeout(() => {
openPicker({
onPicked: (file) => {
displayFileInModal({file});
},
});
}, 10);
}}
onItemSelected={() => this.setMenuVisibility(false)}
menuOptions={[CONST.MENU_ITEM_KEYS.ATTACHMENT_PICKER]}
/**
* 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
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={inputDisable}
/>
</>
)}
</AttachmentModal>
<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>
<ReportTypingIndicator reportID={this.props.reportID} />
</View>
);
}
}
ReportActionCompose.propTypes = propTypes;
ReportActionCompose.defaultProps = defaultProps;
export default compose(
withOnyx({
comment: {
key: ({reportID}) => `${ONYXKEYS.COLLECTION.REPORT_DRAFT_COMMENT}${reportID}`,
},
modal: {
key: ONYXKEYS.MODAL,
},
report: {
key: ({reportID}) => `${ONYXKEYS.COLLECTION.REPORT}${reportID}`,
},
}),
withWindowDimensions,
)(ReportActionCompose);