-
Notifications
You must be signed in to change notification settings - Fork 2.9k
/
ReportSettingsPage.js
249 lines (228 loc) · 10.9 KB
/
ReportSettingsPage.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
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import {View, ScrollView} from 'react-native';
import {withOnyx} from 'react-native-onyx';
import _ from 'underscore';
import lodashGet from 'lodash/get';
import CONST from '../CONST';
import ONYXKEYS from '../ONYXKEYS';
import styles from '../styles/styles';
import compose from '../libs/compose';
import Navigation from '../libs/Navigation/Navigation';
import * as Report from '../libs/actions/Report';
import * as ReportUtils from '../libs/ReportUtils';
import HeaderWithCloseButton from '../components/HeaderWithCloseButton';
import ScreenWrapper from '../components/ScreenWrapper';
import withLocalize, {withLocalizePropTypes} from '../components/withLocalize';
import Text from '../components/Text';
import Button from '../components/Button';
import RoomNameInput from '../components/RoomNameInput';
import Picker from '../components/Picker';
import * as ValidationUtils from '../libs/ValidationUtils';
import OfflineWithFeedback from '../components/OfflineWithFeedback';
import reportPropTypes from './reportPropTypes';
const propTypes = {
/** Route params */
route: PropTypes.shape({
params: PropTypes.shape({
/** Report ID passed via route r/:reportID/settings */
reportID: PropTypes.string,
}),
}).isRequired,
...withLocalizePropTypes,
/* Onyx Props */
/** The active report */
report: reportPropTypes.isRequired,
/** The policies which the user has access to and which the report could be tied to */
policies: PropTypes.shape({
/** The policy name */
name: PropTypes.string,
/** ID of the policy */
id: PropTypes.string,
}).isRequired,
};
class ReportSettingsPage extends Component {
constructor(props) {
super(props);
this.notificationPreferencesOptions = {
default: {
value: CONST.REPORT.NOTIFICATION_PREFERENCE.ALWAYS,
label: this.props.translate('notificationPreferences.immediately'),
},
daily: {
value: CONST.REPORT.NOTIFICATION_PREFERENCE.DAILY,
label: this.props.translate('notificationPreferences.daily'),
},
mute: {
value: CONST.REPORT.NOTIFICATION_PREFERENCE.MUTE,
label: this.props.translate('notificationPreferences.mute'),
},
};
this.roomNameInputRef = null;
this.state = {
newRoomName: this.props.report.reportName,
errors: {},
};
this.resetToPreviousName = this.resetToPreviousName.bind(this);
this.validateAndUpdatePolicyRoomName = this.validateAndUpdatePolicyRoomName.bind(this);
}
/**
* When the user dismisses the error updating the policy room name,
* reset the report name to the previously saved name and clear errors.
*/
resetToPreviousName() {
this.setState({newRoomName: this.props.report.reportName});
Report.clearPolicyRoomNameErrors(this.props.report.reportID);
}
validateAndUpdatePolicyRoomName() {
if (!this.validate()) {
return;
}
Report.updatePolicyRoomName(this.props.report, this.state.newRoomName);
}
validate() {
const errors = {};
// We error if the user doesn't enter a room name or left blank
if (!this.state.newRoomName || this.state.newRoomName === CONST.POLICY.ROOM_PREFIX) {
errors.newRoomName = this.props.translate('newRoomPage.pleaseEnterRoomName');
}
// Certain names are reserved for default rooms and should not be used for policy rooms.
if (ValidationUtils.isReservedRoomName(this.state.newRoomName)) {
errors.newRoomName = this.props.translate('newRoomPage.roomNameReservedError');
}
this.setState({errors});
return _.isEmpty(errors);
}
/**
* @param {String} inputKey
* @param {String} value
*/
clearErrorAndSetValue(inputKey, value) {
this.setState(prevState => ({
[inputKey]: value,
errors: {
...prevState.errors,
[inputKey]: '',
},
}));
}
render() {
const shouldShowRoomName = !ReportUtils.isPolicyExpenseChat(this.props.report);
const shouldDisableRename = ReportUtils.isDefaultRoom(this.props.report)
|| ReportUtils.isArchivedRoom(this.props.report);
const linkedWorkspace = _.find(this.props.policies, policy => policy && policy.id === this.props.report.policyID);
return (
<ScreenWrapper>
<HeaderWithCloseButton
title={this.props.translate('common.settings')}
shouldShowBackButton
onBackButtonPress={() => Navigation.goBack()}
onCloseButtonPress={() => Navigation.dismissModal()}
/>
<ScrollView style={styles.flex1} contentContainerStyle={styles.p5}>
<View>
<View style={[styles.mt2]}>
<Picker
label={this.props.translate('notificationPreferences.label')}
onInputChange={(notificationPreference) => {
Report.updateNotificationPreference(
this.props.report.reportID,
this.props.report.notificationPreference,
notificationPreference,
);
}}
items={_.values(this.notificationPreferencesOptions)}
value={this.props.report.notificationPreference}
/>
</View>
</View>
{shouldShowRoomName && (
<View style={styles.mt4}>
<OfflineWithFeedback
pendingAction={lodashGet(this.props.report, 'pendingFields.reportName', null)}
errors={lodashGet(this.props.report, 'errorFields.reportName', null)}
onClose={this.resetToPreviousName}
>
<View style={[styles.flexRow]}>
<View style={[styles.flex3]}>
{shouldDisableRename ? (
<View>
<Text style={[styles.textLabelSupporting, styles.lh16, styles.mb1]} numberOfLines={1}>
{this.props.translate('newRoomPage.roomName')}
</Text>
<Text numberOfLines={1} style={[styles.optionAlternateText]}>
{this.state.newRoomName}
</Text>
</View>
)
: (
<RoomNameInput
ref={el => this.roomNameInputRef = el}
value={this.state.newRoomName}
policyID={linkedWorkspace && linkedWorkspace.id}
errorText={this.state.errors.newRoomName}
onChangeText={newRoomName => this.clearErrorAndSetValue('newRoomName', newRoomName)}
disabled={shouldDisableRename}
/>
)}
</View>
{!shouldDisableRename && (
<Button
large
success={!shouldDisableRename}
text={this.props.translate('common.save')}
onPress={this.validateAndUpdatePolicyRoomName}
style={[styles.ml2, styles.flex1]}
textStyles={[styles.label]}
innerStyles={[styles.ph5]}
isDisabled={shouldDisableRename}
/>
)}
</View>
</OfflineWithFeedback>
</View>
)}
{linkedWorkspace && (
<View style={[styles.mt4]}>
<Text style={[styles.textLabelSupporting, styles.lh16, styles.mb1]} numberOfLines={1}>
{this.props.translate('workspace.common.workspace')}
</Text>
<Text numberOfLines={1} style={[styles.optionAlternateText]}>
{linkedWorkspace.name}
</Text>
</View>
)}
{this.props.report.visibility && (
<View style={[styles.mt4]}>
<Text style={[styles.textLabelSupporting, styles.lh16, styles.mb1]} numberOfLines={1}>
{this.props.translate('newRoomPage.visibility')}
</Text>
<Text numberOfLines={1} style={[styles.reportSettingsVisibilityText]}>
{this.props.translate(`newRoomPage.visibilityOptions.${this.props.report.visibility}`)}
</Text>
<Text style={[styles.textLabelSupporting, styles.mt1]}>
{
this.props.report.visibility === CONST.REPORT.VISIBILITY.RESTRICTED
? this.props.translate('newRoomPage.restrictedDescription')
: this.props.translate('newRoomPage.privateDescription')
}
</Text>
</View>
)}
</ScrollView>
</ScreenWrapper>
);
}
}
ReportSettingsPage.propTypes = propTypes;
export default compose(
withLocalize,
withOnyx({
report: {
key: ({route}) => `${ONYXKEYS.COLLECTION.REPORT}${route.params.reportID}`,
},
policies: {
key: ONYXKEYS.COLLECTION.POLICY,
},
}),
)(ReportSettingsPage);