bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/quick-poll-dropdown/container.jsx
João Victor Nunes 06500be757
refactor(storage): replace Tracker.Dependency with observer hook (#20322)
* refactor(storage): replace Tracker.Dependency with observer hook

* fix(storage): set initial value

* refactor(storage): stop using Meteor's Session singleton
2024-06-06 10:50:03 -03:00

23 lines
896 B
JavaScript

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';
import { useMutation } from '@apollo/client';
import { layoutDispatch } from '../../layout/context';
import { POLL_CANCEL } from '/imports/ui/components/poll/mutations';
import { useStorageKey } from '/imports/ui/services/storage/hooks';
const QuickPollDropdownContainer = (props) => {
const layoutContextDispatch = layoutDispatch();
const activePoll = useStorageKey('pollInitiated') || false;
const [stopPoll] = useMutation(POLL_CANCEL);
return <QuickPollDropdown {...{ layoutContextDispatch, stopPoll, activePoll, ...props }} />;
};
export default withTracker(() => ({
pollTypes: PollService.pollTypes,
}))(injectIntl(QuickPollDropdownContainer));