46 lines
1.5 KiB
JavaScript
46 lines
1.5 KiB
JavaScript
import React from 'react';
|
|
import { makeCall } from '/imports/ui/services/api';
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
|
import Presentations from '/imports/api/presentations';
|
|
import PresentationAreaService from '/imports/ui/components/presentation/service';
|
|
import Poll from '/imports/ui/components/poll/component';
|
|
import Service from './service';
|
|
|
|
const CHAT_CONFIG = Meteor.settings.public.chat;
|
|
const PUBLIC_CHAT_KEY = CHAT_CONFIG.public_id;
|
|
|
|
const PollContainer = ({ ...props }) => <Poll {...props} />;
|
|
|
|
export default withTracker(() => {
|
|
Meteor.subscribe('current-poll');
|
|
|
|
const currentPresentation = Presentations.findOne({
|
|
current: true,
|
|
}, { fields: { podId: 1 } }) || {};
|
|
|
|
const currentSlide = PresentationAreaService.getCurrentSlide(currentPresentation.podId);
|
|
|
|
const pollId = currentSlide ? currentSlide.id : PUBLIC_CHAT_KEY;
|
|
|
|
const startPoll = type => makeCall('startPoll', type, pollId);
|
|
|
|
const startCustomPoll = (type, answers) => makeCall('startPoll', type, pollId, answers);
|
|
|
|
const stopPoll = () => makeCall('stopPoll');
|
|
|
|
return {
|
|
currentSlide,
|
|
amIPresenter: Service.amIPresenter(),
|
|
pollTypes: Service.pollTypes,
|
|
startPoll,
|
|
startCustomPoll,
|
|
stopPoll,
|
|
publishPoll: Service.publishPoll,
|
|
currentPoll: Service.currentPoll(),
|
|
resetPollPanel: Session.get('resetPollPanel') || false,
|
|
pollAnswerIds: Service.pollAnswerIds,
|
|
isMeteorConnected: Meteor.status().connected,
|
|
sendGroupMessage: Service.sendGroupMessage,
|
|
};
|
|
})(PollContainer);
|