bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/quick-poll-dropdown/container.jsx

22 lines
807 B
React
Raw Normal View History

import React from 'react';
import { withTracker } from 'meteor/react-meteor-data';
import { injectIntl } from 'react-intl';
import PollService from '/imports/ui/components/poll/service';
import QuickPollDropdown from './component';
2023-12-09 04:24:57 +08:00
import { useMutation } from '@apollo/client';
2021-09-11 04:48:52 +08:00
import { layoutDispatch } from '../../layout/context';
2023-12-09 04:24:57 +08:00
import { POLL_CANCEL } from '/imports/ui/components/poll/mutations';
2021-05-18 04:25:07 +08:00
const QuickPollDropdownContainer = (props) => {
2021-09-11 04:48:52 +08:00
const layoutContextDispatch = layoutDispatch();
2023-12-09 04:24:57 +08:00
const [stopPoll] = useMutation(POLL_CANCEL);
return <QuickPollDropdown {...{ layoutContextDispatch, stopPoll, ...props }} />;
2021-05-18 04:25:07 +08:00
};
export default withTracker(() => ({
activePoll: Session.get('pollInitiated') || false,
pollTypes: PollService.pollTypes,
}))(injectIntl(QuickPollDropdownContainer));