-
Notifications
You must be signed in to change notification settings - Fork 2.9k
/
ReportDetailsPage.js
193 lines (179 loc) · 8.12 KB
/
ReportDetailsPage.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
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import {withOnyx} from 'react-native-onyx';
import _ from 'underscore';
import {View, ScrollView} from 'react-native';
import lodashGet from 'lodash/get';
import RoomHeaderAvatars from '../components/RoomHeaderAvatars';
import compose from '../libs/compose';
import withLocalize, {withLocalizePropTypes} from '../components/withLocalize';
import ONYXKEYS from '../ONYXKEYS';
import ScreenWrapper from '../components/ScreenWrapper';
import Navigation from '../libs/Navigation/Navigation';
import HeaderWithCloseButton from '../components/HeaderWithCloseButton';
import styles from '../styles/styles';
import DisplayNames from '../components/DisplayNames';
import * as OptionsListUtils from '../libs/OptionsListUtils';
import * as ReportUtils from '../libs/ReportUtils';
import participantPropTypes from '../components/participantPropTypes';
import * as Expensicons from '../components/Icon/Expensicons';
import ROUTES from '../ROUTES';
import MenuItem from '../components/MenuItem';
import Text from '../components/Text';
import CONST from '../CONST';
import reportPropTypes from './reportPropTypes';
import withReportOrNavigateHome from './home/report/withReportOrNavigateHome';
const propTypes = {
...withLocalizePropTypes,
/** Whether or not to show the Compose Input */
session: PropTypes.shape({
accountID: PropTypes.number,
}).isRequired,
/** The report currently being looked at */
report: reportPropTypes.isRequired,
/** The policies which the user has access to and which the report could be tied to */
policies: PropTypes.shape({
/** Name of the policy */
name: PropTypes.string,
}).isRequired,
/** Route params */
route: PropTypes.shape({
params: PropTypes.shape({
/** Report ID passed via route r/:reportID/details */
reportID: PropTypes.string,
}),
}).isRequired,
/** Personal details of all the users */
personalDetails: PropTypes.objectOf(participantPropTypes).isRequired,
};
class ReportDetailsPage extends Component {
constructor(props) {
super(props);
this.menuItems = [];
if (ReportUtils.isArchivedRoom(this.props.report)) {
return;
}
// All nonarchived chats should let you see their members
this.menuItems.push({
key: CONST.REPORT_DETAILS_MENU_ITEM.MEMBERS,
translationKey: 'common.members',
icon: Expensicons.Users,
subtitle: lodashGet(props.report, 'participants', []).length,
action: () => { Navigation.navigate(ROUTES.getReportParticipantsRoute(props.report.reportID)); },
});
if (ReportUtils.isPolicyExpenseChat(this.props.report) || ReportUtils.isChatRoom(this.props.report)) {
this.menuItems.push({
key: CONST.REPORT_DETAILS_MENU_ITEM.SETTINGS,
translationKey: 'common.settings',
icon: Expensicons.Gear,
action: () => { Navigation.navigate(ROUTES.getReportSettingsRoute(props.report.reportID)); },
});
}
if (ReportUtils.isUserCreatedPolicyRoom(this.props.report)) {
this.menuItems.push({
key: CONST.REPORT_DETAILS_MENU_ITEM.INVITE,
translationKey: 'common.invite',
icon: Expensicons.Plus,
action: () => { /* Placeholder for when inviting other users is built in */ },
},
{
key: CONST.REPORT_DETAILS_MENU_ITEM.LEAVE_ROOM,
translationKey: 'common.leaveRoom',
icon: Expensicons.Exit,
action: () => { /* Placeholder for when leaving rooms is built in */ },
});
}
}
render() {
const isPolicyExpenseChat = ReportUtils.isPolicyExpenseChat(this.props.report);
const isChatRoom = ReportUtils.isChatRoom(this.props.report);
const chatRoomSubtitle = ReportUtils.getChatRoomSubtitle(this.props.report, this.props.policies);
const participants = lodashGet(this.props.report, 'participants', []);
const isMultipleParticipant = participants.length > 1;
const displayNamesWithTooltips = ReportUtils.getDisplayNamesWithTooltips(
OptionsListUtils.getPersonalDetailsForLogins(participants, this.props.personalDetails),
isMultipleParticipant,
);
return (
<ScreenWrapper>
<HeaderWithCloseButton
title={this.props.translate('common.details')}
onBackButtonPress={() => Navigation.goBack()}
onCloseButtonPress={() => Navigation.dismissModal()}
/>
<ScrollView style={[styles.flex1]}>
<View style={[styles.m5]}>
<View
style={styles.reportDetailsTitleContainer}
>
<View style={styles.mb4}>
<RoomHeaderAvatars
icons={ReportUtils.getIcons(this.props.report, this.props.personalDetails, this.props.policies)}
shouldShowLargeAvatars={isPolicyExpenseChat}
/>
</View>
<View style={[styles.reportDetailsRoomInfo, styles.mw100]}>
<View style={[styles.alignSelfCenter, styles.w100]}>
<DisplayNames
fullTitle={ReportUtils.getReportName(this.props.report, this.props.policies)}
displayNamesWithTooltips={displayNamesWithTooltips}
tooltipEnabled
numberOfLines={1}
textStyles={[styles.headerText, styles.mb2, styles.textAlignCenter]}
shouldUseFullTitle={isChatRoom || isPolicyExpenseChat}
/>
</View>
<Text
style={[
styles.sidebarLinkText,
styles.optionAlternateText,
styles.textLabelSupporting,
styles.mb5,
]}
numberOfLines={1}
>
{chatRoomSubtitle}
</Text>
</View>
</View>
</View>
{_.map(this.menuItems, (item) => {
const brickRoadIndicator = (
ReportUtils.hasReportNameError(this.props.report)
&& item.key === CONST.REPORT_DETAILS_MENU_ITEM.SETTINGS
)
? CONST.BRICK_ROAD_INDICATOR_STATUS.ERROR
: '';
return (
<MenuItem
key={item.key}
title={this.props.translate(item.translationKey)}
subtitle={item.subtitle}
icon={item.icon}
onPress={item.action}
shouldShowRightIcon
brickRoadIndicator={brickRoadIndicator}
/>
);
})}
</ScrollView>
</ScreenWrapper>
);
}
}
ReportDetailsPage.propTypes = propTypes;
export default compose(
withLocalize,
withReportOrNavigateHome,
withOnyx({
personalDetails: {
key: ONYXKEYS.PERSONAL_DETAILS,
},
policies: {
key: ONYXKEYS.COLLECTION.POLICY,
},
session: {
key: ONYXKEYS.SESSION,
},
}),
)(ReportDetailsPage);