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';
|
2022-05-13 21:42:19 +08:00
|
|
|
import { layoutSelectInput, layoutDispatch, layoutSelect } from '../../layout/context';
|
2022-03-04 01:46:20 +08:00
|
|
|
import { SMALL_VIEWPORT_BREAKPOINT } from '../../layout/enums';
|
2021-05-18 04:25:07 +08:00
|
|
|
|
|
|
|
const ActionsDropdownContainer = (props) => {
|
2021-09-11 04:48:52 +08:00
|
|
|
const sidebarContent = layoutSelectInput((i) => i.sidebarContent);
|
|
|
|
const sidebarNavigation = layoutSelectInput((i) => i.sidebarNavigation);
|
2022-03-04 01:46:20 +08:00
|
|
|
const { width: browserWidth } = layoutSelectInput((i) => i.browser);
|
|
|
|
const isMobile = browserWidth <= SMALL_VIEWPORT_BREAKPOINT;
|
2021-09-11 04:48:52 +08:00
|
|
|
const layoutContextDispatch = layoutDispatch();
|
2022-05-13 21:42:19 +08:00
|
|
|
const isRTL = layoutSelect((i) => i.isRTL);
|
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,
|
2022-03-04 01:46:20 +08:00
|
|
|
isMobile,
|
2022-05-13 21:42:19 +08:00
|
|
|
isRTL,
|
2021-05-19 22:51:31 +08:00
|
|
|
...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);
|