26 lines
679 B
JavaScript
Executable File
26 lines
679 B
JavaScript
Executable File
import React, { Component, PropTypes } from 'react';
|
|
import { createContainer } from 'meteor/react-meteor-data';
|
|
import WhiteboardService from './service';
|
|
import Whiteboard from './component';
|
|
|
|
class WhiteboardContainer extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<Whiteboard {...this.props}>
|
|
{this.props.children}
|
|
</Whiteboard>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default createContainer(() => ({
|
|
currentSlide: WhiteboardService.getCurrentSlide(),
|
|
shapes: WhiteboardService.getCurrentShapes(),
|
|
cursor: WhiteboardService.getCurrentCursor(),
|
|
userIsPresenter: WhiteboardService.isPresenter(),
|
|
}), WhiteboardContainer);
|