bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/presentation/presentation-uploader/component.jsx

1075 lines
34 KiB
React
Raw Normal View History

2017-04-29 02:42:32 +08:00
import React, { Component } from 'react';
2017-09-08 02:18:14 +08:00
import PropTypes from 'prop-types';
import { defineMessages, injectIntl } from 'react-intl';
2021-08-30 08:53:06 +08:00
import { TAB } from '/imports/utils/keyCodes';
2021-04-01 01:13:36 +08:00
import deviceInfo from '/imports/utils/deviceInfo';
2020-02-26 03:29:14 +08:00
import Button from '/imports/ui/components/button/component';
import Icon from '/imports/ui/components/icon/component';
2017-05-04 00:36:16 +08:00
import update from 'immutability-helper';
import logger from '/imports/startup/client/logger';
2020-02-26 03:29:14 +08:00
import { notify } from '/imports/ui/services/notification';
import { toast } from 'react-toastify';
import _ from 'lodash';
2021-09-05 06:36:48 +08:00
import { registerTitleView, unregisterTitleView } from '/imports/utils/dom-utils';
import Styled from './styles';
import Settings from '/imports/ui/services/settings';
import Checkbox from '/imports/ui/components/common/checkbox/component';
2021-04-01 01:13:36 +08:00
const { isMobile } = deviceInfo;
2017-04-29 02:42:32 +08:00
2017-09-08 02:18:14 +08:00
const propTypes = {
intl: PropTypes.object.isRequired,
fileUploadConstraintsHint: PropTypes.bool.isRequired,
fileSizeMax: PropTypes.number.isRequired,
filePagesMax: PropTypes.number.isRequired,
2017-09-08 02:18:14 +08:00
handleSave: PropTypes.func.isRequired,
dispatchTogglePresentationDownloadable: PropTypes.func.isRequired,
2019-03-08 03:53:01 +08:00
fileValidMimeTypes: PropTypes.arrayOf(PropTypes.object).isRequired,
2017-09-08 02:18:14 +08:00
presentations: PropTypes.arrayOf(PropTypes.shape({
id: PropTypes.string.isRequired,
filename: PropTypes.string.isRequired,
isCurrent: PropTypes.bool.isRequired,
conversion: PropTypes.object,
upload: PropTypes.object,
})).isRequired,
2020-02-26 03:29:14 +08:00
isOpen: PropTypes.bool.isRequired,
2017-09-08 02:18:14 +08:00
};
const defaultProps = {
};
2017-04-29 02:42:32 +08:00
const intlMessages = defineMessages({
2017-12-05 00:10:37 +08:00
current: {
id: 'app.presentationUploder.currentBadge',
},
2017-04-29 02:42:32 +08:00
title: {
id: 'app.presentationUploder.title',
2017-11-02 00:13:18 +08:00
description: 'title of the modal',
2017-04-29 02:42:32 +08:00
},
message: {
id: 'app.presentationUploder.message',
2017-11-02 00:13:18 +08:00
description: 'message warning the types of files accepted',
2017-04-29 02:42:32 +08:00
},
uploadLabel: {
id: 'app.presentationUploder.uploadLabel',
description: 'confirm label when presentations are to be uploaded',
2017-04-29 02:42:32 +08:00
},
confirmLabel: {
id: 'app.presentationUploder.confirmLabel',
description: 'confirm label when no presentations are to be uploaded',
2017-04-29 02:42:32 +08:00
},
confirmDesc: {
id: 'app.presentationUploder.confirmDesc',
2017-11-02 00:13:18 +08:00
description: 'description of the confirm',
2017-04-29 02:42:32 +08:00
},
dismissLabel: {
id: 'app.presentationUploder.dismissLabel',
2017-11-02 00:13:18 +08:00
description: 'used in the button that close modal',
2017-04-29 02:42:32 +08:00
},
dismissDesc: {
id: 'app.presentationUploder.dismissDesc',
2017-11-02 00:13:18 +08:00
description: 'description of the dismiss',
2017-04-29 02:42:32 +08:00
},
dropzoneLabel: {
id: 'app.presentationUploder.dropzoneLabel',
2017-11-02 00:13:18 +08:00
description: 'message warning where drop files for upload',
2017-04-29 02:42:32 +08:00
},
dropzoneImagesLabel: {
id: 'app.presentationUploder.dropzoneImagesLabel',
description: 'message warning where drop images for upload',
},
2017-04-29 02:42:32 +08:00
browseFilesLabel: {
id: 'app.presentationUploder.browseFilesLabel',
2017-11-02 00:13:18 +08:00
description: 'message use on the file browser',
2017-04-29 02:42:32 +08:00
},
browseImagesLabel: {
id: 'app.presentationUploder.browseImagesLabel',
description: 'message use on the image browser',
},
2017-05-06 04:17:38 +08:00
fileToUpload: {
id: 'app.presentationUploder.fileToUpload',
2017-11-02 00:13:18 +08:00
description: 'message used in the file selected for upload',
2017-05-06 04:17:38 +08:00
},
extraHint: {
id: 'app.presentationUploder.extraHint',
description: 'message used to indicate upload file max sizes',
},
rejectedError: {
id: 'app.presentationUploder.rejectedError',
description: 'some files rejected, please check the file mime types',
},
2017-09-08 02:18:14 +08:00
uploadProcess: {
id: 'app.presentationUploder.upload.progress',
2017-11-02 00:13:18 +08:00
description: 'message that indicates the percentage of the upload',
2017-09-08 02:18:14 +08:00
},
413: {
id: 'app.presentationUploder.upload.413',
2017-11-02 00:13:18 +08:00
description: 'error that file exceed the size limit',
2017-05-06 04:17:38 +08:00
},
408: {
id: 'app.presentationUploder.upload.408',
description: 'error for token request timeout',
},
404: {
id: 'app.presentationUploder.upload.404',
description: 'error not found',
},
401: {
id: 'app.presentationUploder.upload.401',
description: 'error for failed upload token request.',
},
2017-05-06 04:17:38 +08:00
conversionProcessingSlides: {
id: 'app.presentationUploder.conversion.conversionProcessingSlides',
2017-11-02 00:13:18 +08:00
description: 'indicates how many slides were converted',
2017-05-06 04:17:38 +08:00
},
2020-03-12 21:56:12 +08:00
genericError: {
id: 'app.presentationUploder.genericError',
description: 'generic error while uploading/converting',
},
2017-05-06 04:17:38 +08:00
genericConversionStatus: {
id: 'app.presentationUploder.conversion.genericConversionStatus',
2017-11-02 00:13:18 +08:00
description: 'indicates that file is being converted',
2017-05-06 04:17:38 +08:00
},
TIMEOUT: {
id: 'app.presentationUploder.conversion.timeout',
},
2017-05-06 04:17:38 +08:00
GENERATING_THUMBNAIL: {
id: 'app.presentationUploder.conversion.generatingThumbnail',
description: 'indicatess that it is generating thumbnails',
2017-05-06 04:17:38 +08:00
},
2017-09-27 03:45:33 +08:00
GENERATING_SVGIMAGES: {
id: 'app.presentationUploder.conversion.generatingSvg',
2017-11-02 00:13:18 +08:00
description: 'warns that it is generating svg images',
2017-09-27 03:45:33 +08:00
},
2017-05-06 04:17:38 +08:00
GENERATED_SLIDE: {
id: 'app.presentationUploder.conversion.generatedSlides',
2017-11-02 00:13:18 +08:00
description: 'warns that were slides generated',
2017-05-06 04:17:38 +08:00
},
2017-11-28 20:26:00 +08:00
PAGE_COUNT_EXCEEDED: {
id: 'app.presentationUploder.conversion.pageCountExceeded',
description: 'warns the user that the conversion failed because of the page count',
},
PDF_HAS_BIG_PAGE: {
id: 'app.presentationUploder.conversion.pdfHasBigPage',
description: 'warns the user that the conversion failed because of the pdf page siz that exceeds the allowed limit',
},
2021-04-28 03:45:14 +08:00
OFFICE_DOC_CONVERSION_INVALID: {
id: 'app.presentationUploder.conversion.officeDocConversionInvalid',
description: '',
},
OFFICE_DOC_CONVERSION_FAILED: {
id: 'app.presentationUploder.conversion.officeDocConversionFailed',
description: 'warns the user that the conversion failed because of wrong office file',
},
UNSUPPORTED_DOCUMENT: {
id: 'app.presentationUploder.conversion.unsupportedDocument',
description: 'warns the user that the file extension is not supported',
},
2019-02-21 06:44:44 +08:00
isDownloadable: {
id: 'app.presentationUploder.isDownloadableLabel',
description: 'presentation is available for downloading by all viewers',
2019-02-21 06:44:44 +08:00
},
isNotDownloadable: {
id: 'app.presentationUploder.isNotDownloadableLabel',
description: 'presentation is not available for downloading the viewers',
2019-02-21 06:44:44 +08:00
},
removePresentation: {
id: 'app.presentationUploder.removePresentationLabel',
description: 'select to delete this presentation',
},
setAsCurrentPresentation: {
id: 'app.presentationUploder.setAsCurrentPresentation',
description: 'set this presentation to be the current one',
},
2019-05-15 00:51:13 +08:00
status: {
id: 'app.presentationUploder.tableHeading.status',
description: 'aria label status table heading',
},
options: {
id: 'app.presentationUploder.tableHeading.options',
description: 'aria label for options table heading',
},
filename: {
id: 'app.presentationUploder.tableHeading.filename',
description: 'aria label for file name table heading',
},
uploading: {
id: 'app.presentationUploder.uploading',
description: 'uploading label for toast notification',
},
uploadStatus: {
id: 'app.presentationUploder.uploadStatus',
description: 'upload status for toast notification',
},
completed: {
id: 'app.presentationUploder.completed',
description: 'uploads complete label for toast notification',
},
item: {
id: 'app.presentationUploder.item',
description: 'single item label',
},
itemPlural: {
id: 'app.presentationUploder.itemPlural',
description: 'plural item label',
},
clearErrors: {
id: 'app.presentationUploder.clearErrors',
description: 'button label for clearing upload errors',
},
clearErrorsDesc: {
id: 'app.presentationUploder.clearErrorsDesc',
description: 'aria description for button clearing upload error',
},
2021-09-05 06:36:48 +08:00
uploadViewTitle: {
id: 'app.presentationUploder.uploadViewTitle',
description: 'view name apended to document title',
}
2017-04-29 02:42:32 +08:00
});
2017-05-06 04:17:38 +08:00
class PresentationUploader extends Component {
2017-04-29 02:42:32 +08:00
constructor(props) {
super(props);
this.state = {
2020-02-26 03:29:14 +08:00
presentations: [],
2017-05-06 04:17:38 +08:00
disableActions: false,
toUploadCount: 0,
2017-04-29 02:42:32 +08:00
};
2020-02-26 03:29:14 +08:00
this.toastId = null;
2020-03-12 21:56:12 +08:00
this.hasError = null;
2020-02-26 03:29:14 +08:00
// handlers
2017-04-29 02:42:32 +08:00
this.handleFiledrop = this.handleFiledrop.bind(this);
this.handleConfirm = this.handleConfirm.bind(this);
this.handleDismiss = this.handleDismiss.bind(this);
this.handleRemove = this.handleRemove.bind(this);
2020-02-26 03:29:14 +08:00
this.handleCurrentChange = this.handleCurrentChange.bind(this);
this.handleDismissToast = this.handleDismissToast.bind(this);
this.handleToggleDownloadable = this.handleToggleDownloadable.bind(this);
// renders
this.renderDropzone = this.renderDropzone.bind(this);
this.renderPicDropzone = this.renderPicDropzone.bind(this);
this.renderPresentationList = this.renderPresentationList.bind(this);
this.renderPresentationItem = this.renderPresentationItem.bind(this);
this.renderPresentationItemStatus = this.renderPresentationItemStatus.bind(this);
this.renderToastList = this.renderToastList.bind(this);
this.renderToastItem = this.renderToastItem.bind(this);
// utilities
2017-09-27 03:45:33 +08:00
this.deepMergeUpdateFileKey = this.deepMergeUpdateFileKey.bind(this);
2020-02-26 03:29:14 +08:00
this.updateFileKey = this.updateFileKey.bind(this);
}
2020-02-26 03:29:14 +08:00
componentDidUpdate(prevProps) {
2021-09-05 06:36:48 +08:00
const { isOpen, presentations: propPresentations, intl } = this.props;
2020-02-26 03:29:14 +08:00
const { presentations } = this.state;
2021-09-05 06:36:48 +08:00
if (!isOpen && prevProps.isOpen) {
unregisterTitleView();
}
// Updates presentation list when chat modal opens to avoid missing presentations
if (isOpen && !prevProps.isOpen) {
2021-09-05 06:36:48 +08:00
registerTitleView(intl.formatMessage(intlMessages.uploadViewTitle));
const focusableElements =
'button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])';
const modal = document.getElementById('upload-modal');
const firstFocusableElement = modal?.querySelectorAll(focusableElements)[0];
const focusableContent = modal?.querySelectorAll(focusableElements);
const lastFocusableElement = focusableContent[focusableContent.length - 1];
firstFocusableElement.focus();
modal.addEventListener('keydown', function(e) {
2021-08-30 08:53:06 +08:00
let tab = e.key === 'Tab' || e.keyCode === TAB;
if (!tab) return;
if (e.shiftKey) {
if (document.activeElement === firstFocusableElement) {
lastFocusableElement.focus();
e.preventDefault();
}
} else {
if (document.activeElement === lastFocusableElement) {
firstFocusableElement.focus();
e.preventDefault();
}
}
});
2021-05-07 21:52:12 +08:00
this.setState({
2021-05-13 02:43:45 +08:00
presentations: Object.values({
2021-05-07 21:52:12 +08:00
...propPresentations,
...presentations,
2021-05-13 02:43:45 +08:00
}),
2021-05-07 21:52:12 +08:00
});
}
if (presentations.length > 0) {
2021-05-07 22:06:03 +08:00
const selected = propPresentations.filter((p) => p.isCurrent);
if (selected.length > 0) Session.set('selectedToBeNextCurrent', selected[0].id);
2020-02-26 03:29:14 +08:00
}
2017-09-27 03:45:33 +08:00
2020-02-26 03:29:14 +08:00
if (this.toastId) {
if (!prevProps.isOpen && isOpen) {
this.handleDismissToast(this.toastId);
}
2017-09-27 03:45:33 +08:00
2020-02-26 03:29:14 +08:00
toast.update(this.toastId, {
render: this.renderToastList(),
});
}
2017-09-27 03:45:33 +08:00
}
componentWillUnmount() {
Session.set('showUploadPresentationView', false);
}
2020-02-26 03:29:14 +08:00
handleDismissToast() {
return toast.dismiss(this.toastId);
2017-04-29 02:42:32 +08:00
}
handleFiledrop(files, files2) {
const { fileValidMimeTypes, intl } = this.props;
const { toUploadCount } = this.state;
2021-04-28 03:45:14 +08:00
const validMimes = fileValidMimeTypes.map((fileValid) => fileValid.mime);
const validExtentions = fileValidMimeTypes.map((fileValid) => fileValid.extension);
const [accepted, rejected] = _.partition(files
2021-04-28 03:45:14 +08:00
.concat(files2), (f) => (
validMimes.includes(f.type) || validExtentions.includes(`.${f.name.split('.').pop()}`)
));
const presentationsToUpload = accepted.map((file) => {
2017-11-22 22:47:27 +08:00
const id = _.uniqueId(file.name);
return {
file,
isDownloadable: false, // by default new presentations are set not to be downloadable
2017-11-22 22:47:27 +08:00
id,
filename: file.name,
isCurrent: false,
conversion: { done: false, error: false },
upload: { done: false, error: false, progress: 0 },
onProgress: (event) => {
if (!event.lengthComputable) {
this.deepMergeUpdateFileKey(id, 'upload', {
progress: 100,
done: true,
});
return;
}
this.deepMergeUpdateFileKey(id, 'upload', {
progress: (event.loaded / event.total) * 100,
done: event.loaded === event.total,
2017-09-23 04:45:31 +08:00
});
2017-11-22 22:47:27 +08:00
},
onConversion: (conversion) => {
this.deepMergeUpdateFileKey(id, 'conversion', conversion);
},
onUpload: (upload) => {
this.deepMergeUpdateFileKey(id, 'upload', upload);
},
onDone: (newId) => {
this.updateFileKey(id, 'id', newId);
2017-11-22 22:47:27 +08:00
},
};
});
2017-04-29 02:42:32 +08:00
this.setState(({ presentations }) => ({
2017-09-08 02:18:14 +08:00
presentations: presentations.concat(presentationsToUpload),
toUploadCount: (toUploadCount + presentationsToUpload.length),
}), () => {
// after the state is set (files have been dropped),
// make the first of the new presentations current
if (presentationsToUpload && presentationsToUpload.length) {
this.handleCurrentChange(presentationsToUpload[0].id);
}
});
if (rejected.length > 0) {
notify(intl.formatMessage(intlMessages.rejectedError), 'error');
}
2017-04-29 02:42:32 +08:00
}
handleRemove(item, withErr = false) {
if (withErr) {
const { presentations } = this.props;
this.hasError = false;
return this.setState({
presentations,
disableActions: false,
});
}
2020-02-26 03:29:14 +08:00
const { presentations } = this.state;
const toRemoveIndex = presentations.indexOf(item);
return this.setState({
presentations: update(presentations, {
$splice: [[toRemoveIndex, 1]],
}),
}, () => {
const { presentations: updatedPresentations, oldCurrentId } = this.state;
const commands = {};
const currentIndex = updatedPresentations.findIndex((p) => p.isCurrent);
const actualCurrentIndex = updatedPresentations.findIndex((p) => p.id === oldCurrentId);
2020-02-26 03:29:14 +08:00
if (currentIndex === -1 && updatedPresentations.length > 0) {
const newCurrentIndex = actualCurrentIndex === -1 ? 0 : actualCurrentIndex;
commands[newCurrentIndex] = {
$apply: (presentation) => {
const p = presentation;
p.isCurrent = true;
return p;
},
};
}
const updatedCurrent = update(updatedPresentations, commands);
this.setState({ presentations: updatedCurrent });
});
2020-02-26 03:29:14 +08:00
}
handleCurrentChange(id) {
const { presentations, disableActions } = this.state;
2020-02-26 03:29:14 +08:00
if (disableActions) return;
2020-02-26 03:29:14 +08:00
const currentIndex = presentations.findIndex((p) => p.isCurrent);
const newCurrentIndex = presentations.findIndex((p) => p.id === id);
2020-02-26 03:29:14 +08:00
const commands = {};
// we can end up without a current presentation
if (currentIndex !== -1) {
commands[currentIndex] = {
$apply: (presentation) => {
const p = presentation;
p.isCurrent = false;
return p;
},
};
}
commands[newCurrentIndex] = {
2020-02-26 03:29:14 +08:00
$apply: (presentation) => {
const p = presentation;
p.isCurrent = true;
2020-02-26 03:29:14 +08:00
return p;
},
};
const presentationsUpdated = update(presentations, commands);
this.setState({ presentations: presentationsUpdated });
2020-02-26 03:29:14 +08:00
}
deepMergeUpdateFileKey(id, key, value) {
const applyValue = (toUpdate) => update(toUpdate, { $merge: value });
this.updateFileKey(id, key, applyValue, '$apply');
}
2020-02-26 03:29:14 +08:00
handleConfirm(hasNewUpload) {
const {
handleSave,
selectedToBeNextCurrent,
presentations: propPresentations,
dispatchTogglePresentationDownloadable,
2020-02-26 03:29:14 +08:00
} = this.props;
const { disableActions, presentations } = this.state;
const presentationsToSave = presentations;
this.setState({ disableActions: true });
presentations.forEach(item => {
if (item.upload.done) {
const didDownloadableStateChange = propPresentations.some(
(p) => p.id === item.id && p.isDownloadable !== item.isDownloadable
);
if (didDownloadableStateChange) {
dispatchTogglePresentationDownloadable(item, item.isDownloadable);
}
}
});
2020-02-26 03:29:14 +08:00
if (hasNewUpload) {
this.toastId = toast.info(this.renderToastList(), {
hideProgressBar: true,
autoClose: false,
newestOnTop: true,
closeOnClick: true,
2020-02-26 03:29:14 +08:00
onClose: () => {
this.toastId = null;
},
});
}
if (this.toastId) Session.set('UploadPresentationToastId', this.toastId);
2020-02-26 03:29:14 +08:00
if (!disableActions) {
Session.set('showUploadPresentationView', false);
2020-02-26 03:29:14 +08:00
return handleSave(presentationsToSave)
.then(() => {
const hasError = presentations.some((p) => p.upload.error || p.conversion.error);
2020-02-26 03:29:14 +08:00
if (!hasError) {
this.setState({
disableActions: false,
toUploadCount: 0,
2020-02-26 03:29:14 +08:00
});
return;
}
// if there's error we don't want to close the modal
this.setState({
disableActions: true,
// preventClosing: true,
}, () => {
// if the selected current has error we revert back to the old one
const newCurrent = presentations.find((p) => p.isCurrent);
2020-02-26 03:29:14 +08:00
if (newCurrent.upload.error || newCurrent.conversion.error) {
this.handleCurrentChange(selectedToBeNextCurrent);
2020-02-26 03:29:14 +08:00
}
});
})
.catch((error) => {
logger.error({
logCode: 'presentationuploader_component_save_error',
extraInfo: { error },
}, 'Presentation uploader catch error on confirm');
});
}
Session.set('showUploadPresentationView', false);
2020-02-26 03:29:14 +08:00
return null;
}
handleDismiss() {
const { presentations } = this.state;
const { presentations: propPresentations } = this.props;
const ids = new Set(propPresentations.map((d) => d.ID));
const merged = [
...propPresentations,
...presentations.filter((d) => !ids.has(d.ID)),
];
this.setState(
{ presentations: merged },
Session.set('showUploadPresentationView', false),
);
2020-02-26 03:29:14 +08:00
}
handleToggleDownloadable(item) {
const { presentations } = this.state;
2020-02-26 03:29:14 +08:00
const oldDownloadableState = item.isDownloadable;
2017-09-27 03:45:33 +08:00
const outOfDatePresentationIndex = presentations.findIndex((p) => p.id === item.id);
const commands = {};
commands[outOfDatePresentationIndex] = {
$apply: (presentation) => {
const p = presentation;
p.isDownloadable = !oldDownloadableState;
2017-04-29 02:42:32 +08:00
return p;
},
};
const presentationsUpdated = update(presentations, commands);
2017-04-29 02:42:32 +08:00
this.setState({
presentations: presentationsUpdated,
});
}
2017-09-27 03:45:33 +08:00
updateFileKey(id, key, value, operation = '$set') {
this.setState(({ presentations }) => {
const fileIndex = presentations.findIndex((f) => f.id === id);
return fileIndex === -1 ? false : {
presentations: update(presentations, {
[fileIndex]: {
$apply: (file) => update(file, {
[key]: {
[operation]: value,
},
}),
},
}),
};
});
}
renderToastItem(item) {
const isUploading = !item.upload.done && item.upload.progress > 0;
const isConverting = !item.conversion.done && item.upload.done;
const hasError = item.conversion.error || item.upload.error;
const isProcessing = (isUploading || isConverting) && !hasError;
let icon = isProcessing ? 'blank' : 'check';
if (hasError) icon = 'circle_close';
return (
<Styled.UploadRow
key={item.id}
onClick={() => {
if (hasError || isProcessing) Session.set('showUploadPresentationView', true);
}}
>
<Styled.FileLine>
<Styled.FileIcon>
<Icon iconName="file" />
</Styled.FileIcon>
<Styled.ToastFileName>
<span>{item.filename}</span>
</Styled.ToastFileName>
<Styled.StatusIcon>
<Styled.ToastItemIcon
done={!isProcessing && !hasError}
error={hasError}
loading={isProcessing}
iconName={icon}
/>
</Styled.StatusIcon>
</Styled.FileLine>
<Styled.StatusInfo>
<Styled.StatusInfoSpan styles={hasError ? 'error' : 'info'}>
{this.renderPresentationItemStatus(item)}
</Styled.StatusInfoSpan>
</Styled.StatusInfo>
</Styled.UploadRow>
);
}
renderExtraHint() {
const {
intl,
fileSizeMax,
filePagesMax,
} = this.props;
const options = {
0: fileSizeMax/1000000,
1: filePagesMax,
};
return (
<Styled.ExtraHint>
{intl.formatMessage(intlMessages.extraHint, options)}
</Styled.ExtraHint>
);
}
2017-04-29 02:42:32 +08:00
renderPresentationList() {
const { presentations } = this.state;
2019-05-15 00:51:13 +08:00
const { intl } = this.props;
2017-04-29 02:42:32 +08:00
let presentationsSorted = presentations;
try {
presentationsSorted = presentations
.sort((a, b) => a.uploadTimestamp - b.uploadTimestamp)
.sort((a, b) => a.filename.localeCompare(b.filename))
.sort((a, b) => b.upload.progress - a.upload.progress)
.sort((a, b) => b.conversion.done - a.conversion.done)
.sort((a, b) => {
const aUploadNotTriggeredYet = !a.upload.done && a.upload.progress === 0;
const bUploadNotTriggeredYet = !b.upload.done && b.upload.progress === 0;
return bUploadNotTriggeredYet - aUploadNotTriggeredYet;
});
} catch (error) {
logger.error({
logCode: 'presentationuploader_component_render_error',
extraInfo: { error },
}, 'Presentation uploader catch error on render presentation list');
}
2017-04-29 02:42:32 +08:00
return (
<Styled.FileList>
<Styled.Table>
2019-05-15 03:45:12 +08:00
<thead>
<tr>
<Styled.VisuallyHidden colSpan={3}>
{intl.formatMessage(intlMessages.filename)}
</Styled.VisuallyHidden>
<Styled.VisuallyHidden>
{intl.formatMessage(intlMessages.status)}
</Styled.VisuallyHidden>
<Styled.VisuallyHidden>
{intl.formatMessage(intlMessages.options)}
</Styled.VisuallyHidden>
2019-05-15 03:45:12 +08:00
</tr>
</thead>
2017-05-04 00:36:16 +08:00
<tbody>
2021-04-28 03:45:14 +08:00
{presentationsSorted.map((item) => this.renderPresentationItem(item))}
2017-05-04 00:36:16 +08:00
</tbody>
</Styled.Table>
</Styled.FileList>
2017-04-29 02:42:32 +08:00
);
}
2020-02-26 03:29:14 +08:00
renderToastList() {
const { presentations, toUploadCount } = this.state;
if (toUploadCount === 0) {
return this.handleDismissToast(this.toastId);
2017-09-08 02:18:14 +08:00
}
const { intl } = this.props;
2020-02-26 03:29:14 +08:00
let converted = 0;
2017-09-08 02:18:14 +08:00
2020-02-26 03:29:14 +08:00
let presentationsSorted = presentations
2021-05-07 22:06:03 +08:00
.filter((p) => (p.upload.progress || p.conversion.status) && p.file)
2020-02-26 03:29:14 +08:00
.sort((a, b) => a.uploadTimestamp - b.uploadTimestamp)
.sort((a, b) => a.conversion.done - b.conversion.done);
presentationsSorted = presentationsSorted
.splice(0, toUploadCount)
2020-02-26 03:29:14 +08:00
.map((p) => {
if (p.conversion.done) converted += 1;
return p;
2017-09-08 02:18:14 +08:00
});
2017-05-06 04:17:38 +08:00
2020-02-26 03:29:14 +08:00
let toastHeading = '';
const itemLabel = presentationsSorted.length > 1
? intl.formatMessage(intlMessages.itemPlural)
: intl.formatMessage(intlMessages.item);
2017-09-08 02:18:14 +08:00
2020-02-26 03:29:14 +08:00
if (converted === 0) {
toastHeading = intl.formatMessage(intlMessages.uploading, {
0: presentationsSorted.length,
1: itemLabel,
});
2017-05-06 04:17:38 +08:00
}
2020-02-26 03:29:14 +08:00
if (converted > 0 && converted !== presentationsSorted.length) {
toastHeading = intl.formatMessage(intlMessages.uploadStatus, {
0: converted,
1: presentationsSorted.length,
});
}
2017-05-06 04:17:38 +08:00
2020-02-26 03:29:14 +08:00
if (converted === presentationsSorted.length) {
toastHeading = intl.formatMessage(intlMessages.completed, {
0: converted,
});
2017-05-06 04:17:38 +08:00
}
2020-02-26 03:29:14 +08:00
return (
<Styled.ToastWrapper>
<Styled.UploadToastHeader>
<Styled.UploadIcon iconName="upload" />
<Styled.UploadToastTitle>{toastHeading}</Styled.UploadToastTitle>
</Styled.UploadToastHeader>
<Styled.InnerToast>
2020-02-26 03:29:14 +08:00
<div>
<div>
{presentationsSorted.map((item) => this.renderToastItem(item))}
2020-02-26 03:29:14 +08:00
</div>
</div>
</Styled.InnerToast>
</Styled.ToastWrapper>
2020-02-26 03:29:14 +08:00
);
2017-05-06 04:17:38 +08:00
}
2017-04-29 02:42:32 +08:00
renderPresentationItem(item) {
2021-09-01 19:48:46 +08:00
const { disableActions } = this.state;
2020-02-26 03:29:14 +08:00
const {
intl,
selectedToBeNextCurrent,
allowDownloadable
2020-02-26 03:29:14 +08:00
} = this.props;
2017-05-04 00:36:16 +08:00
const isActualCurrent = selectedToBeNextCurrent ? item.id === selectedToBeNextCurrent : item.isCurrent;
2017-11-28 20:26:00 +08:00
const isUploading = !item.upload.done && item.upload.progress > 0;
const isConverting = !item.conversion.done && item.upload.done;
const hasError = item.conversion.error || item.upload.error;
const isProcessing = (isUploading || isConverting) && !hasError;
2021-09-01 19:48:46 +08:00
if (hasError) {
2020-03-12 21:56:12 +08:00
this.hasError = true;
2020-02-26 03:29:14 +08:00
}
const formattedDownloadableLabel = !item.isDownloadable
2019-02-21 06:44:44 +08:00
? intl.formatMessage(intlMessages.isDownloadable)
: intl.formatMessage(intlMessages.isNotDownloadable);
2017-05-04 04:51:17 +08:00
const formattedDownloadableAriaLabel = `${formattedDownloadableLabel} ${item.filename}`;
const { animations } = Settings.application;
2020-02-26 03:29:14 +08:00
const isRemovable = item.isRemovable
2017-04-29 02:42:32 +08:00
return (
<Styled.PresentationItem
2017-05-04 00:36:16 +08:00
key={item.id}
isNew={item.id.indexOf(item.filename) !== -1}
uploading={isUploading}
converting={isConverting}
error={hasError}
animated={isProcessing}
animations={animations}
2017-04-29 02:42:32 +08:00
>
<Styled.TableItemIcon>
2017-11-22 22:47:27 +08:00
<Icon iconName="file" />
</Styled.TableItemIcon>
2017-12-05 00:10:37 +08:00
{
2018-12-06 01:42:31 +08:00
isActualCurrent
? (
<Styled.TableItemCurrent>
<Styled.CurrentLabel>
{intl.formatMessage(intlMessages.current)}
</Styled.CurrentLabel>
</Styled.TableItemCurrent>
2018-12-06 01:42:31 +08:00
)
: null
2017-12-05 00:10:37 +08:00
}
<Styled.TableItemName colSpan={!isActualCurrent ? 2 : 0}>
2017-04-29 02:42:32 +08:00
<span>{item.filename}</span>
</Styled.TableItemName>
<Styled.TableItemStatus colSpan={hasError ? 2 : 0}>
2017-05-06 04:17:38 +08:00
{this.renderPresentationItemStatus(item)}
</Styled.TableItemStatus>
{hasError ? null : (
<Styled.TableItemActions notDownloadable={!allowDownloadable}>
{allowDownloadable ? (
<Styled.DownloadButton
disabled={disableActions}
isDownloadable={item.isDownloadable}
label={formattedDownloadableLabel}
data-test={item.isDownloadable ? 'disallowPresentationDownload' : 'allowPresentationDownload'}
aria-label={formattedDownloadableAriaLabel}
hideLabel
size="sm"
icon={item.isDownloadable ? 'download' : 'download-off'}
onClick={() => this.handleToggleDownloadable(item)}
animations={animations}
/>
) : null
}
2021-11-06 01:21:35 +08:00
<Styled.ItemAction>
<Checkbox
animations={animations}
ariaLabel={`${intl.formatMessage(intlMessages.setAsCurrentPresentation)} ${item.filename}`}
checked={item.isCurrent}
keyValue={item.id}
2020-02-26 03:29:14 +08:00
onChange={() => this.handleCurrentChange(item.id)}
disabled={disableActions}
animations={animations}
2022-02-03 23:03:26 +08:00
/>
2021-11-06 01:21:35 +08:00
</Styled.ItemAction>
{isRemovable ? (
2022-02-03 23:03:26 +08:00
<Styled.RemoveButton
disabled={disableActions}
label={intl.formatMessage(intlMessages.removePresentation)}
data-test="removePresentation"
aria-label={`${intl.formatMessage(intlMessages.removePresentation)} ${item.filename}`}
size="sm"
icon="delete"
hideLabel
onClick={() => this.handleRemove(item)}
animations={animations}
/>
2022-02-03 23:03:26 +08:00
) : null
}
</Styled.TableItemActions>
2017-11-28 20:26:00 +08:00
)}
</Styled.PresentationItem>
2017-04-29 02:42:32 +08:00
);
}
2020-02-26 03:29:14 +08:00
renderDropzone() {
const {
intl,
2020-02-26 03:29:14 +08:00
fileValidMimeTypes,
} = this.props;
const { disableActions } = this.state;
2020-03-12 21:56:12 +08:00
if (disableActions && !this.hasError) return null;
2020-03-12 21:56:12 +08:00
return this.hasError ? (
2020-02-26 03:29:14 +08:00
<div>
<Button
color="danger"
onClick={() => this.handleRemove(null, true)}
label={intl.formatMessage(intlMessages.clearErrors)}
aria-describedby="clearErrorDesc"
/>
<div id="clearErrorDesc" style={{ display: 'none' }}>
{intl.formatMessage(intlMessages.clearErrorsDesc)}
</div>
</div>
) : (
// Until the Dropzone package has fixed the mime type hover validation, the rejectClassName
// prop is being remove to prevent the error styles from being applied to valid file types.
// Error handling is being done in the onDrop prop.
<Styled.UploaderDropzone
multiple
activeClassName={"dropzoneActive"}
accept={fileValidMimeTypes.map((fileValid) => fileValid.extension)}
2020-02-26 03:29:14 +08:00
disablepreview="true"
onDrop={this.handleFiledrop}
>
<Styled.DropzoneIcon iconName="upload" />
<Styled.DropzoneMessage>
2020-02-26 03:29:14 +08:00
{intl.formatMessage(intlMessages.dropzoneLabel)}
&nbsp;
<Styled.DropzoneLink>
2020-02-26 03:29:14 +08:00
{intl.formatMessage(intlMessages.browseFilesLabel)}
</Styled.DropzoneLink>
</Styled.DropzoneMessage>
</Styled.UploaderDropzone>
);
}
2020-02-26 03:29:14 +08:00
renderPicDropzone() {
2017-05-04 00:36:16 +08:00
const {
intl,
} = this.props;
2017-04-29 02:42:32 +08:00
2017-05-06 04:17:38 +08:00
const { disableActions } = this.state;
2020-03-12 21:56:12 +08:00
if (disableActions && !this.hasError) return null;
2017-05-04 04:51:17 +08:00
2020-03-12 21:56:12 +08:00
return this.hasError ? (
2020-02-26 03:29:14 +08:00
<div>
<Button
color="danger"
onClick={() => this.handleRemove(null, true)}
label={intl.formatMessage(intlMessages.clearErrors)}
aria-describedby="clearErrorDesc"
/>
<div id="clearErrorDesc" style={{ display: 'none' }}>
{intl.formatMessage(intlMessages.clearErrorsDesc)}
</div>
</div>
) : (
<Styled.UploaderDropzone
2017-09-08 02:18:14 +08:00
multiple
2020-02-26 03:29:14 +08:00
accept="image/*"
2018-12-06 01:42:31 +08:00
disablepreview="true"
2020-07-18 03:13:47 +08:00
data-test="fileUploadDropZone"
2017-04-29 02:42:32 +08:00
onDrop={this.handleFiledrop}
>
<Styled.DropzoneIcon iconName="upload" />
<Styled.DropzoneMessage>
2020-02-26 03:29:14 +08:00
{intl.formatMessage(intlMessages.dropzoneImagesLabel)}
&nbsp;
<Styled.DropzoneLink>
2020-02-26 03:29:14 +08:00
{intl.formatMessage(intlMessages.browseImagesLabel)}
</Styled.DropzoneLink>
</Styled.DropzoneMessage>
</Styled.UploaderDropzone>
2017-04-29 02:42:32 +08:00
);
}
2020-02-26 03:29:14 +08:00
renderPresentationItemStatus(item) {
const { intl } = this.props;
2020-02-26 03:29:14 +08:00
if (!item.upload.done && item.upload.progress === 0) {
return intl.formatMessage(intlMessages.fileToUpload);
}
if (!item.upload.done && !item.upload.error) {
return intl.formatMessage(intlMessages.uploadProcess, {
0: Math.floor(item.upload.progress).toString(),
});
}
const constraint = {};
2020-02-26 03:29:14 +08:00
if (item.upload.done && item.upload.error) {
if (item.conversion.status === 'FILE_TOO_LARGE') {
constraint['0'] = ((item.conversion.maxFileSize) / 1000 / 1000).toFixed(2);
}
2020-03-12 21:56:12 +08:00
const errorMessage = intlMessages[item.upload.status] || intlMessages.genericError;
return intl.formatMessage(errorMessage, constraint);
2020-02-26 03:29:14 +08:00
}
if (!item.conversion.done && item.conversion.error) {
2020-03-12 21:56:12 +08:00
const errorMessage = intlMessages[item.conversion.status] || intlMessages.genericConversionStatus;
switch (item.conversion.status) {
case 'PAGE_COUNT_EXCEEDED':
constraint['0'] = item.conversion.maxNumberPages;
break;
case 'PDF_HAS_BIG_PAGE':
constraint['0'] = (item.conversion.bigPageSize / 1000 / 1000).toFixed(2);
break;
default:
break;
}
return intl.formatMessage(errorMessage, constraint);
2020-02-26 03:29:14 +08:00
}
if (!item.conversion.done && !item.conversion.error) {
if (item.conversion.pagesCompleted < item.conversion.numPages) {
return intl.formatMessage(intlMessages.conversionProcessingSlides, {
0: item.conversion.pagesCompleted,
1: item.conversion.numPages,
});
}
const conversionStatusMessage = intlMessages[item.conversion.status]
|| intlMessages.genericConversionStatus;
return intl.formatMessage(conversionStatusMessage);
}
return null;
}
render() {
const {
isOpen,
isPresenter,
intl,
fileUploadConstraintsHint,
2020-02-26 03:29:14 +08:00
} = this.props;
if (!isPresenter) return null;
2020-02-26 03:29:14 +08:00
const { presentations, disableActions } = this.state;
let hasNewUpload = false;
2020-02-26 03:29:14 +08:00
presentations.map((item) => {
if (item.id.indexOf(item.filename) !== -1 && item.upload.progress === 0) hasNewUpload = true;
});
2020-02-26 03:29:14 +08:00
return isOpen ? (
<Styled.UploaderModal id="upload-modal">
<Styled.ModalInner>
<Styled.ModalHeader>
<h1>{intl.formatMessage(intlMessages.title)}</h1>
<Styled.ActionWrapper>
<Styled.DismissButton
2020-02-26 03:29:14 +08:00
color="default"
onClick={this.handleDismiss}
2020-02-26 03:29:14 +08:00
label={intl.formatMessage(intlMessages.dismissLabel)}
aria-describedby={intl.formatMessage(intlMessages.dismissDesc)}
/>
<Styled.ConfirmButton
data-test="confirmManagePresentation"
2020-02-26 03:29:14 +08:00
color="primary"
onClick={() => this.handleConfirm(hasNewUpload)}
disabled={disableActions}
label={hasNewUpload
? intl.formatMessage(intlMessages.uploadLabel)
2021-05-07 22:06:03 +08:00
: intl.formatMessage(intlMessages.confirmLabel)}
2020-02-26 03:29:14 +08:00
/>
</Styled.ActionWrapper>
</Styled.ModalHeader>
<Styled.ModalHint>
2020-02-26 03:29:14 +08:00
{`${intl.formatMessage(intlMessages.message)}`}
{fileUploadConstraintsHint ? this.renderExtraHint() : null}
</Styled.ModalHint>
2020-02-26 03:29:14 +08:00
{this.renderPresentationList()}
2021-04-01 01:13:36 +08:00
{isMobile ? this.renderPicDropzone() : null}
{this.renderDropzone()}
</Styled.ModalInner>
</Styled.UploaderModal>
2020-02-26 03:29:14 +08:00
) : null;
}
}
2017-04-29 02:42:32 +08:00
2017-09-23 04:45:31 +08:00
PresentationUploader.propTypes = propTypes;
PresentationUploader.defaultProps = defaultProps;
export default injectIntl(PresentationUploader);