2017-06-07 20:28:41 +08:00
|
|
|
import React from 'react';
|
2020-02-26 03:29:14 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
2018-01-08 12:44:42 +08:00
|
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
2017-05-04 00:36:16 +08:00
|
|
|
import Service from './service';
|
2020-03-10 20:58:14 +08:00
|
|
|
import PresentationService from '../service';
|
2020-02-26 03:29:14 +08:00
|
|
|
import Uploader from './component';
|
|
|
|
|
2020-03-10 20:58:14 +08:00
|
|
|
const PRESENTATION_CONFIG = Meteor.settings.public.presentation;
|
2017-05-04 00:36:16 +08:00
|
|
|
|
2020-02-26 03:29:14 +08:00
|
|
|
const UploaderContainer = props => <Uploader {...props} />;
|
2017-05-04 00:36:16 +08:00
|
|
|
|
2018-01-08 12:44:42 +08:00
|
|
|
export default withTracker(() => {
|
2017-05-04 00:36:16 +08:00
|
|
|
const currentPresentations = Service.getPresentations();
|
2019-12-24 22:48:44 +08:00
|
|
|
const {
|
|
|
|
dispatchDisableDownloadable,
|
|
|
|
dispatchEnableDownloadable,
|
|
|
|
dispatchTogglePresentationDownloadable,
|
|
|
|
} = Service;
|
2017-05-04 00:36:16 +08:00
|
|
|
|
|
|
|
return {
|
|
|
|
presentations: currentPresentations,
|
2017-09-23 04:49:11 +08:00
|
|
|
defaultFileName: PRESENTATION_CONFIG.defaultPresentationFile,
|
2017-05-04 00:36:16 +08:00
|
|
|
fileSizeMin: PRESENTATION_CONFIG.uploadSizeMin,
|
|
|
|
fileSizeMax: PRESENTATION_CONFIG.uploadSizeMax,
|
|
|
|
fileValidMimeTypes: PRESENTATION_CONFIG.uploadValidMimeTypes,
|
2017-05-23 22:05:42 +08:00
|
|
|
handleSave: presentations => Service.persistPresentationChanges(
|
|
|
|
currentPresentations,
|
|
|
|
presentations,
|
2017-06-07 20:28:41 +08:00
|
|
|
PRESENTATION_CONFIG.uploadEndpoint,
|
2018-09-05 00:56:10 +08:00
|
|
|
'DEFAULT_PRESENTATION_POD',
|
2017-05-23 22:05:42 +08:00
|
|
|
),
|
2019-02-21 06:20:04 +08:00
|
|
|
dispatchDisableDownloadable,
|
|
|
|
dispatchEnableDownloadable,
|
|
|
|
dispatchTogglePresentationDownloadable,
|
2020-03-10 20:58:14 +08:00
|
|
|
isOpen: Session.get('showUploadPresentationView') || false,
|
2020-03-10 23:19:14 +08:00
|
|
|
selectedToBeNextCurrent: Session.get('selectedToBeNextCurrent') || null,
|
2020-03-10 20:58:14 +08:00
|
|
|
isPresenter: PresentationService.isPresenter('DEFAULT_PRESENTATION_POD'),
|
2017-05-04 00:36:16 +08:00
|
|
|
};
|
2020-03-10 20:58:14 +08:00
|
|
|
})(UploaderContainer);
|