15 lines
651 B
React
15 lines
651 B
React
|
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';
|
||
|
|
||
|
export default withTracker(() => {
|
||
|
const presentations = Presentations.find({ 'conversion.done': true }).fetch();
|
||
|
return ({
|
||
|
presentations,
|
||
|
setPresentation: PresentationUploaderService.setPresentation,
|
||
|
podIds: PresentationPodService.getPresentationPodIds(),
|
||
|
});
|
||
|
})(ActionsDropdown);
|