-
Notifications
You must be signed in to change notification settings - Fork 196
Expand file tree
/
Copy pathPageAlerts.jsx
More file actions
506 lines (481 loc) · 14.9 KB
/
PageAlerts.jsx
File metadata and controls
506 lines (481 loc) · 14.9 KB
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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
import { getConfig } from '@edx/frontend-platform';
import { FormattedMessage, useIntl } from '@edx/frontend-platform/i18n';
import {
Alert, Button, Hyperlink, Truncate,
} from '@openedx/paragon';
import {
Campaign as CampaignIcon,
Error as ErrorIcon,
InfoOutline as InfoOutlineIcon,
Warning as WarningIcon,
} from '@openedx/paragon/icons';
import { uniqBy } from 'lodash';
import PropTypes from 'prop-types';
import React, { useState } from 'react';
import { useDispatch, useSelector } from 'react-redux';
import { Link, useNavigate } from 'react-router-dom';
import CourseOutlinePageAlertsSlot from '../../plugin-slots/CourseOutlinePageAlertsSlot';
import advancedSettingsMessages from '../../advanced-settings/messages';
import { OutOfSyncAlert } from '../../course-libraries/OutOfSyncAlert';
import { RequestStatus } from '../../data/constants';
import ErrorAlert from '../../editors/sharedComponents/ErrorAlerts/ErrorAlert';
import AlertMessage from '../../generic/alert-message';
import AlertProctoringError from '../../generic/AlertProctoringError';
import { API_ERROR_TYPES } from '../constants';
import { getPasteFileNotices } from '../data/selectors';
import { dismissError, removePasteFileNotices } from '../data/slice';
import messages from './messages';
const PageAlerts = ({
courseId,
notificationDismissUrl,
handleDismissNotification,
discussionsSettings,
discussionsIncontextLearnmoreUrl,
deprecatedBlocksInfo,
proctoringErrors,
mfeProctoredExamSettingsUrl,
advanceSettingsUrl,
savingStatus,
errors,
}) => {
const intl = useIntl();
const dispatch = useDispatch();
const studioBaseUrl = getConfig().STUDIO_BASE_URL;
const discussionAlertDismissKey = `discussionAlertDismissed-${courseId}`;
const [showConfigAlert, setShowConfigAlert] = useState(true);
const [showDiscussionAlert, setShowDiscussionAlert] = useState(
localStorage.getItem(discussionAlertDismissKey) === null,
);
const { newFiles, conflictingFiles, errorFiles } = useSelector(getPasteFileNotices);
const [showOutOfSyncAlert, setShowOutOfSyncAlert] = useState(false);
const navigate = useNavigate();
const getAssetsUrl = () => {
if (getConfig().ENABLE_ASSETS_PAGE === 'true') {
return `/course/${courseId}/assets/`;
}
return `${getConfig().STUDIO_BASE_URL}/assets/${courseId}`;
};
const configurationErrors = () => {
if (!notificationDismissUrl) {
return null;
}
const onDismiss = () => {
setShowConfigAlert(false);
handleDismissNotification();
};
return (
<AlertMessage
title={intl.formatMessage(messages.configurationErrorTitle)}
description={intl.formatMessage(messages.configurationErrorText)}
dismissible
show={showConfigAlert}
icon={CampaignIcon}
variant="info"
onClose={onDismiss}
/>
);
};
const discussionNotification = () => {
const { providerType } = discussionsSettings || {};
if (providerType !== 'openedx') {
return null;
}
const onDismiss = () => {
setShowDiscussionAlert(false);
localStorage.setItem(discussionAlertDismissKey, 'true');
};
return (
<Alert
dismissible
show={showDiscussionAlert}
icon={InfoOutlineIcon}
variant="info"
onClose={onDismiss}
actions={[
<Button
href={discussionsIncontextLearnmoreUrl}
target="_blank"
>
{intl.formatMessage(messages.discussionNotificationLearnMore)}
</Button>,
]}
>
<div className="font-weight-normal text-gray mw-md">
{intl.formatMessage(messages.discussionNotificationText, {
platformName: process.env.SITE_NAME,
})}
</div>
</Alert>
);
};
const deprecationWarning = () => {
const {
blocks,
deprecatedEnabledBlockTypes,
} = deprecatedBlocksInfo || {};
if (blocks?.length > 0 || deprecatedEnabledBlockTypes?.length > 0) {
return (
<Alert
icon={WarningIcon}
variant="warning"
>
<Alert.Heading>
{intl.formatMessage(messages.deprecationWarningTitle)}
</Alert.Heading>
{blocks?.length > 0 && (
<>
<div>
{intl.formatMessage(messages.deprecationWarningBlocksText)}
</div>
<ul>
{blocks.map(([parentUrl, name]) => (
<li key={parentUrl}>
<Hyperlink
destination={parentUrl}
>
{name || intl.formatMessage(messages.deprecatedComponentName)}
</Hyperlink>
</li>
))}
</ul>
</>
)}
{deprecatedEnabledBlockTypes?.length > 0 && (
<>
<div>
<FormattedMessage
{...messages.deprecationWarningDeprecatedBlockText}
values={{
platformName: process.env.SITE_NAME,
hyperlink: (
<Hyperlink
destination={`${studioBaseUrl}${deprecatedBlocksInfo.advanceSettingsUrl}`}
target="_blank"
showLaunchIcon={false}
>
<FormattedMessage
{...messages.advancedSettingLinkText}
/>
</Hyperlink>
),
}}
/>
</div>
<ul>
{deprecatedEnabledBlockTypes.map((name) => (
<li key={name}>
{name}
</li>
))}
</ul>
</>
)}
</Alert>
);
}
return null;
};
const proctoringAlerts = () => {
if (proctoringErrors?.length > 0) {
return (
<AlertProctoringError
icon={InfoOutlineIcon}
proctoringErrorsData={proctoringErrors}
aria-hidden="true"
aria-labelledby={intl.formatMessage(advancedSettingsMessages.alertProctoringAriaLabelledby)}
aria-describedby={intl.formatMessage(advancedSettingsMessages.alertProctoringDescribedby)}
>
<Alert.Heading>
{intl.formatMessage(messages.proctoringErrorTitle)}
</Alert.Heading>
<div className="mb-2">
{mfeProctoredExamSettingsUrl
? (
<FormattedMessage
{...messages.proctoringErrorText}
values={{
hyperlink: (
<Hyperlink
destination={mfeProctoredExamSettingsUrl}
target="_blank"
showLaunchIcon={false}
>
<FormattedMessage
{...messages.proctoredSettingsLinkText}
/>
</Hyperlink>
),
}}
/>
) : (
<FormattedMessage
{...messages.proctoringErrorText}
values={{
hyperlink: (
<Hyperlink
destination={`${studioBaseUrl}${advanceSettingsUrl}`}
target="_blank"
showLaunchIcon={false}
>
<FormattedMessage
{...messages.advancedSettingLinkText}
/>
</Hyperlink>
),
}}
/>
)}
</div>
</AlertProctoringError>
);
}
return null;
};
const newFilesPasteAlert = () => {
const onDismiss = () => {
dispatch(removePasteFileNotices(['newFiles']));
};
if (newFiles?.length) {
return (
<AlertMessage
title={intl.formatMessage(messages.newFileAlertTitle, { newFilesLen: newFiles.length })}
description={intl.formatMessage(
messages.newFileAlertDesc,
{ newFilesLen: newFiles.length, newFilesStr: newFiles.join(', ') },
)}
dismissible
show
icon={CampaignIcon}
variant="info"
onClose={onDismiss}
actions={[
<Button
as={Link}
to={getAssetsUrl()}
>
{intl.formatMessage(messages.newFileAlertAction)}
</Button>,
]}
/>
);
}
return null;
};
const errorFilesPasteAlert = () => {
const onDismiss = () => {
dispatch(removePasteFileNotices(['errorFiles']));
};
if (errorFiles?.length) {
return (
<AlertMessage
title={intl.formatMessage(messages.errorFileAlertTitle)}
description={intl.formatMessage(
messages.errorFileAlertDesc,
{ errorFilesLen: errorFiles.length, errorFilesStr: errorFiles.join(', ') },
)}
dismissible
show
icon={WarningIcon}
variant="danger"
onClose={onDismiss}
/>
);
}
return null;
};
const conflictingFilesPasteAlert = () => {
const onDismiss = () => {
dispatch(removePasteFileNotices(['conflictingFiles']));
};
if (conflictingFiles?.length) {
return (
<AlertMessage
title={intl.formatMessage(
messages.conflictingFileAlertTitle,
{ conflictingFilesLen: conflictingFiles.length },
)}
description={intl.formatMessage(
messages.conflictingFileAlertDesc,
{ conflictingFilesLen: conflictingFiles.length, conflictingFilesStr: conflictingFiles.join(', ') },
)}
dismissible
show
icon={WarningIcon}
variant="warning"
onClose={onDismiss}
actions={[
<Button
as={Link}
to={getAssetsUrl()}
>
{intl.formatMessage(messages.newFileAlertAction)}
</Button>,
]}
/>
);
}
return null;
};
const renderApiErrors = () => {
let errorList = Object.entries(errors).filter(obj => obj[1] !== null).map(([k, v]) => {
switch (v.type) {
case API_ERROR_TYPES.forbidden: {
const description = intl.formatMessage(messages.forbiddenAlertBody, {
LMS: (
<Hyperlink
destination={`${getConfig().LMS_BASE_URL}`}
target="_blank"
showLaunchIcon={false}
>
{intl.formatMessage(messages.forbiddenAlertLmsUrl)}
</Hyperlink>
),
});
return {
key: k,
desc: description,
title: intl.formatMessage(messages.forbiddenAlert),
dismissible: v.dismissible,
};
}
case API_ERROR_TYPES.serverError: {
const description = (
<Truncate.Deprecated lines={2}>
{v.data || intl.formatMessage(messages.serverErrorAlertBody)}
</Truncate.Deprecated>
);
return {
key: k,
desc: description,
title: intl.formatMessage(messages.serverErrorAlert),
dismissible: v.dismissible,
};
}
case API_ERROR_TYPES.networkError:
return {
key: k,
title: intl.formatMessage(messages.networkErrorAlert),
dismissible: v.dismissible,
};
default:
return {
key: k,
title: v.data,
dismissible: v.dismissible,
};
}
});
errorList = uniqBy(errorList, 'title');
if (!errorList?.length) {
return null;
}
return (
errorList.map((msgObj) => (
msgObj.dismissible ? (
<ErrorAlert
isError
hideHeading
key={msgObj.key}
dismissError={() => dispatch(dismissError(msgObj.key))}
>
<Alert.Heading>{msgObj.title}</Alert.Heading>
{msgObj.desc}
</ErrorAlert>
) : (
<Alert
variant="danger"
icon={ErrorIcon}
key={msgObj.key}
>
<Alert.Heading>{msgObj.title}</Alert.Heading>
{msgObj.desc}
</Alert>
)
))
);
};
const renderOutOfSyncAlert = () => (
<OutOfSyncAlert
courseId={courseId}
onReview={() => navigate(`/course/${courseId}/libraries?tab=review`)}
showAlert={showOutOfSyncAlert}
setShowAlert={setShowOutOfSyncAlert}
/>
);
return (
<>
{configurationErrors()}
{discussionNotification()}
{deprecationWarning()}
{proctoringAlerts()}
<ErrorAlert hideHeading isError={savingStatus === RequestStatus.FAILED}>
{intl.formatMessage(messages.alertFailedGeneric, { actionName: 'save', type: 'changes' })}
</ErrorAlert>
{renderApiErrors()}
{errorFilesPasteAlert()}
{conflictingFilesPasteAlert()}
{newFilesPasteAlert()}
{renderOutOfSyncAlert()}
<CourseOutlinePageAlertsSlot />
</>
);
};
PageAlerts.defaultProps = {
notificationDismissUrl: '',
handleDismissNotification: null,
discussionsSettings: {},
discussionsIncontextLearnmoreUrl: '',
deprecatedBlocksInfo: {},
proctoringErrors: [],
mfeProctoredExamSettingsUrl: '',
advanceSettingsUrl: '',
savingStatus: '',
errors: {},
};
PageAlerts.propTypes = {
courseId: PropTypes.string.isRequired,
notificationDismissUrl: PropTypes.string,
handleDismissNotification: PropTypes.func,
discussionsSettings: PropTypes.shape({
providerType: PropTypes.string,
}),
discussionsIncontextLearnmoreUrl: PropTypes.string,
deprecatedBlocksInfo: PropTypes.shape({
blocks: PropTypes.arrayOf(PropTypes.arrayOf(PropTypes.string)),
deprecatedEnabledBlockTypes: PropTypes.arrayOf(PropTypes.string),
advanceSettingsUrl: PropTypes.string,
}),
proctoringErrors: PropTypes.arrayOf(PropTypes.shape({
key: PropTypes.string,
message: PropTypes.string,
model: PropTypes.shape({
deprecated: PropTypes.bool,
displayName: PropTypes.string,
help: PropTypes.string,
hideOnEnabledPublisher: PropTypes.bool,
}),
value: PropTypes.string,
})),
mfeProctoredExamSettingsUrl: PropTypes.string,
advanceSettingsUrl: PropTypes.string,
savingStatus: PropTypes.string,
errors: PropTypes.shape({
outlineIndexApi: PropTypes.shape({
data: PropTypes.string,
type: PropTypes.string.isRequired,
}),
reindexApi: PropTypes.shape({
data: PropTypes.string,
type: PropTypes.string.isRequired,
}),
sectionLoadingApi: PropTypes.shape({
data: PropTypes.string,
type: PropTypes.string.isRequired,
}),
courseLaunchApi: PropTypes.shape({
data: PropTypes.string,
type: PropTypes.string.isRequired,
}),
}),
};
export default PageAlerts;