2021-09-10 04:49:15 +08:00
|
|
|
import React from 'react';
|
2020-04-02 06:54:47 +08:00
|
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
|
|
|
import Presentations from '/imports/api/presentations';
|
|
|
|
import PresentationUploaderService from '/imports/ui/components/presentation/presentation-uploader/service';
|
|
|
|
import PresentationPodService from '/imports/ui/components/presentation-pod/service';
|
|
|
|
import ActionsDropdown from './component';
|
2021-09-10 04:49:15 +08:00
|
|
|
import { LayoutContextFunc } from '../../layout/context';
|
2021-05-18 04:25:07 +08:00
|
|
|
|
|
|
|
const ActionsDropdownContainer = (props) => {
|
2021-09-10 04:49:15 +08:00
|
|
|
const { layoutContextSelector } = LayoutContextFunc;
|
|
|
|
|
|
|
|
const sidebarContent = layoutContextSelector.selectInput((i) => i.sidebarContent);
|
|
|
|
const sidebarNavigation = layoutContextSelector.selectInput((i) => i.sidebarNavigation);
|
|
|
|
const layoutContextDispatch = layoutContextSelector.layoutDispatch();
|
2021-05-19 22:51:31 +08:00
|
|
|
|
|
|
|
return (
|
|
|
|
<ActionsDropdown {...{
|
2021-08-05 19:03:24 +08:00
|
|
|
layoutContextDispatch,
|
2021-05-19 22:51:31 +08:00
|
|
|
sidebarContent,
|
|
|
|
sidebarNavigation,
|
|
|
|
...props,
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
);
|
2021-05-18 04:25:07 +08:00
|
|
|
};
|
2020-04-02 06:54:47 +08:00
|
|
|
|
|
|
|
export default withTracker(() => {
|
|
|
|
const presentations = Presentations.find({ 'conversion.done': true }).fetch();
|
|
|
|
return ({
|
|
|
|
presentations,
|
2021-05-12 22:07:18 +08:00
|
|
|
isDropdownOpen: Session.get('dropdownOpen'),
|
2020-04-02 06:54:47 +08:00
|
|
|
setPresentation: PresentationUploaderService.setPresentation,
|
|
|
|
podIds: PresentationPodService.getPresentationPodIds(),
|
|
|
|
});
|
2021-05-18 04:25:07 +08:00
|
|
|
})(ActionsDropdownContainer);
|