2021-09-10 21:16:44 +08:00
|
|
|
import React from 'react';
|
2020-01-30 02:36:17 +08:00
|
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
|
|
|
import { injectIntl } from 'react-intl';
|
2022-10-31 23:09:06 +08:00
|
|
|
import { makeCall } from '/imports/ui/services/api';
|
|
|
|
import PollService from '/imports/ui/components/poll/service';
|
2020-01-30 02:36:17 +08:00
|
|
|
import QuickPollDropdown from './component';
|
2021-09-11 04:48:52 +08:00
|
|
|
import { layoutDispatch } from '../../layout/context';
|
2020-01-30 02:36:17 +08:00
|
|
|
|
2021-05-18 04:25:07 +08:00
|
|
|
const QuickPollDropdownContainer = (props) => {
|
2021-09-11 04:48:52 +08:00
|
|
|
const layoutContextDispatch = layoutDispatch();
|
2021-08-05 19:03:24 +08:00
|
|
|
return <QuickPollDropdown {...{ layoutContextDispatch, ...props }} />;
|
2021-05-18 04:25:07 +08:00
|
|
|
};
|
2020-01-30 02:36:17 +08:00
|
|
|
|
|
|
|
export default withTracker(() => ({
|
|
|
|
activePoll: Session.get('pollInitiated') || false,
|
2021-05-27 01:52:55 +08:00
|
|
|
pollTypes: PollService.pollTypes,
|
2022-10-31 23:09:06 +08:00
|
|
|
stopPoll: () => makeCall('stopPoll'),
|
2020-01-30 02:36:17 +08:00
|
|
|
}))(injectIntl(QuickPollDropdownContainer));
|