-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathMetaSection.js
225 lines (204 loc) · 6.31 KB
/
MetaSection.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
import React, { isValidElement } from 'react';
import PropTypes from 'prop-types';
import { FormattedMessage } from 'react-intl';
import { Link } from 'react-router-dom';
import { get } from 'lodash';
import { Accordion } from '../Accordion';
import FormattedDate from '../FormattedDate';
import FormattedTime from '../FormattedTime';
import MetaAccordionHeader from './MetaAccordionHeader';
import css from './MetaSection.css';
const propTypes = {
contentId: PropTypes.string,
createdBy: PropTypes.oneOfType([
PropTypes.shape({
id: PropTypes.string,
personal: PropTypes.shape({
firstName: PropTypes.string,
lastName: PropTypes.string,
middleName: PropTypes.string,
}),
}),
PropTypes.node, // Passing a node will _not_ render a link to the user record
]),
createdDate: PropTypes.string,
headingLevel: PropTypes.oneOf([1, 2, 3, 4, 5, 6]),
hideSource: PropTypes.bool,
id: PropTypes.string,
inlineLayout: PropTypes.bool,
lastUpdatedBy: PropTypes.oneOfType([
PropTypes.shape({
id: PropTypes.string,
personal: PropTypes.shape({
firstName: PropTypes.string,
lastName: PropTypes.string,
middleName: PropTypes.string,
}),
}),
PropTypes.node, // Passing a node will _not_ render a link to the user record
]),
lastUpdatedDate: PropTypes.string,
noBackGround: PropTypes.bool,
showUserLink: PropTypes.bool,
useAccordion: PropTypes.bool,
};
const defaultProps = {
hideSource: false,
showUserLink: false,
headingLevel: 4,
useAccordion: true,
};
class MetaSection extends React.Component {
renderName(user) {
const lastName = get(user, ['personal', 'lastName'], '');
const firstName = get(user, ['personal', 'firstName'], '');
const middleName = get(user, ['personal', 'middleName'], '');
return `${lastName}${firstName ? ', ' : ' '}${firstName} ${middleName}`;
}
renderUser = (user) => {
if (typeof user === 'string' || isValidElement(user)) return user;
const { showUserLink } = this.props;
const name = this.renderName(user);
if (showUserLink && user.id) {
return <Link to={`/users/view/${user.id}`} data-test-user-link>{name}</Link>;
} else {
return name;
}
}
renderMetaSectionWithinAccordion = () => {
const {
headingLevel,
createdBy,
createdDate,
hideSource,
lastUpdatedBy,
lastUpdatedDate,
} = this.props;
const lastUpdatedByLabel = lastUpdatedBy ?
<FormattedMessage
id="stripes-components.metaSection.source"
values={{ source: this.renderUser(lastUpdatedBy) }}
/>
:
<FormattedMessage id="stripes-components.metaSection.sourceNoData" />;
const createdLabel = createdDate ?
<FormattedMessage
id="stripes-components.metaSection.recordCreated"
values={{
date: <FormattedDate value={createdDate} />,
time: <FormattedTime value={createdDate} />
}}
/>
:
<FormattedMessage id="stripes-components.metaSection.recordCreatedNoData" />;
const createdByLabel = createdBy ?
<FormattedMessage
id="stripes-components.metaSection.source"
values={{ source: this.renderUser(createdBy) }}
/>
:
<FormattedMessage id="stripes-components.metaSection.sourceNoData" />;
const lastUpdatedLabel = lastUpdatedDate ?
<FormattedMessage
id="stripes-components.metaSection.recordLastUpdated"
values={{
date: <FormattedDate value={lastUpdatedDate} />,
time: <FormattedTime value={lastUpdatedDate} />,
}}
/>
:
<FormattedMessage id="stripes-components.metaSection.recordLastUpdatedNoData" />;
return (
<Accordion
header={MetaAccordionHeader}
headerProps={{ headingLevel }}
closedByDefault
id={this.props.id}
contentId={this.props.contentId}
label={lastUpdatedLabel}
>
<div className={css.metaSectionContent}>
{!hideSource &&
<div className={css.metaSectionContentBlock} data-test-updated-by>
{lastUpdatedByLabel}
</div>
}
<div className={css.metaSectionGroup}>
<div className={css.metaSectionContentBlock} data-test-created>
{createdLabel}
</div>
{!hideSource &&
<div className={css.metaSectionContentBlock} data-test-created-by>
{createdByLabel}
</div>
}
</div>
</div>
</Accordion>
);
}
renderMetaSection = () => {
const {
hideSource,
inlineLayout,
lastUpdatedBy,
lastUpdatedDate,
} = this.props;
return (
<div
className={`${css.metaSectionContent} ${inlineLayout && css.metaSectionInline}`}
data-test-meta-section-content
>
<div style={{ marginRight: '5px' }}>
<FormattedMessage id="stripes-components.metaSection.lastUpdated" />
</div>
<div style={{ display: 'flex' }}>
<div style={{ marginRight: '5px' }}>
<FormattedMessage
id="stripes-components.metaSection.lastUpdatedDateTime"
values={{
date: <FormattedDate value={lastUpdatedDate} />,
time: <FormattedTime value={lastUpdatedDate} />,
}}
/>
</div>
<div data-test-updated-by>
{
!hideSource && (
<FormattedMessage
id="stripes-components.metaSection.lastUpdatedBy"
values={{
source: lastUpdatedBy ? this.renderUser(lastUpdatedBy) :
<FormattedMessage
id="stripes-components.metaSection.unknownUser"
/>
}}
/>
)
}
</div>
</div>
</div>
)
}
render() {
const {
noBackGround,
useAccordion,
} = this.props;
return (
<div
className={`${css.metaSectionRoot} ${!noBackGround && css.metaSectionRootBGColor}`}
data-test-meta-section
>
{
useAccordion ? this.renderMetaSectionWithinAccordion()
: this.renderMetaSection()
}
</div>
);
}
}
MetaSection.propTypes = propTypes;
MetaSection.defaultProps = defaultProps;
export default MetaSection;