2016-05-31 06:07:02 +08:00
|
|
|
import React, { PropTypes } from 'react';
|
|
|
|
import WhiteboardShapeModel from './shape-factory/component.jsx';
|
2016-07-16 04:45:54 +08:00
|
|
|
import Cursor from './cursor/component.jsx';
|
2016-07-27 04:56:43 +08:00
|
|
|
import SlideControlsContainer from './slide-controls/container.jsx'; //I added
|
2016-05-31 06:07:02 +08:00
|
|
|
import { createContainer } from 'meteor/react-meteor-data';
|
|
|
|
import Slide from './slide/component.jsx';
|
|
|
|
import styles from './styles.scss';
|
|
|
|
import ReactCSSTransitionGroup from 'react-addons-css-transition-group';
|
2016-07-08 01:08:26 +08:00
|
|
|
import PollingContainer from '/imports/ui/components/polling/container';
|
2016-05-31 06:07:02 +08:00
|
|
|
|
|
|
|
export default class Whiteboard extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
2016-06-02 07:37:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
renderWhiteboard() {
|
2016-06-27 22:48:17 +08:00
|
|
|
let slideObj = this.props.currentSlide;
|
2016-07-27 04:56:43 +08:00
|
|
|
|
2016-06-27 22:48:17 +08:00
|
|
|
if (this.props.currentSlide) {
|
|
|
|
slideObj = this.props.currentSlide.slide;
|
2016-06-25 05:30:37 +08:00
|
|
|
let x = -slideObj.x_offset * 2 * slideObj.width / 100;
|
|
|
|
let y = -slideObj.y_offset * 2 * slideObj.height / 100;
|
|
|
|
let viewBoxWidth = slideObj.width * slideObj.width_ratio / 100;
|
|
|
|
let viewBoxHeight = slideObj.height * slideObj.height_ratio / 100;
|
2016-06-02 07:37:51 +08:00
|
|
|
return (
|
2016-06-03 06:09:28 +08:00
|
|
|
<ReactCSSTransitionGroup
|
|
|
|
transitionName={ {
|
|
|
|
enter: styles.enter,
|
|
|
|
enterActive: styles.enterActive,
|
|
|
|
appear: styles.appear,
|
|
|
|
appearActive: styles.appearActive,
|
|
|
|
} }
|
|
|
|
transitionAppear={true}
|
|
|
|
transitionEnter={true}
|
|
|
|
transitionLeave={false}
|
|
|
|
transitionAppearTimeout={400}
|
|
|
|
transitionEnterTimeout={400}
|
|
|
|
transitionLeaveTimeout={400}
|
2016-06-02 07:37:51 +08:00
|
|
|
>
|
2016-06-03 06:09:28 +08:00
|
|
|
<svg
|
2016-06-25 05:30:37 +08:00
|
|
|
viewBox={`${x} ${y} ${viewBoxWidth} ${viewBoxHeight}`}
|
2016-06-03 06:09:28 +08:00
|
|
|
version="1.1"
|
2016-07-06 05:49:31 +08:00
|
|
|
|
2016-07-05 08:06:18 +08:00
|
|
|
//it's supposed to be here in theory
|
|
|
|
//but now it's ignored by all the browsers and it's not supported by React
|
|
|
|
//xmlNS="http://www.w3.org/2000/svg"
|
2016-06-03 06:09:28 +08:00
|
|
|
className={styles.svgStyles}
|
2016-06-05 07:09:50 +08:00
|
|
|
key={slideObj.id}
|
2016-05-31 06:07:02 +08:00
|
|
|
>
|
2016-06-10 03:00:44 +08:00
|
|
|
<defs>
|
|
|
|
<clipPath id="viewBox">
|
|
|
|
<rect x={x} y={y} width="100%" height="100%" fill="none"/>
|
|
|
|
</clipPath>
|
|
|
|
</defs>
|
|
|
|
<g clipPath="url(#viewBox)">
|
2016-07-27 04:56:43 +08:00
|
|
|
<Slide id="slideComponent" currentSlide={this.props.currentSlide}/>
|
2016-06-10 03:00:44 +08:00
|
|
|
{this.props.shapes ? this.props.shapes.map((shape) =>
|
|
|
|
<WhiteboardShapeModel
|
|
|
|
shape={shape.shape}
|
|
|
|
key={shape.shape.id}
|
|
|
|
slideWidth = {slideObj.width}
|
|
|
|
slideHeight = {slideObj.height}
|
|
|
|
widthRatio={slideObj.width_ratio}
|
|
|
|
heightRatio={slideObj.height_ratio}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
: null }
|
2016-08-21 10:59:32 +08:00
|
|
|
{this.props.cursor ?
|
|
|
|
<Cursor
|
2016-07-16 04:45:54 +08:00
|
|
|
viewBoxWidth={viewBoxWidth}
|
|
|
|
viewBoxHeight={viewBoxHeight}
|
|
|
|
viewBoxX={x}
|
|
|
|
viewBoxY={y}
|
|
|
|
widthRatio={slideObj.width_ratio}
|
2016-08-21 10:59:32 +08:00
|
|
|
cursorX={this.props.cursor.x}
|
|
|
|
cursorY={this.props.cursor.y}
|
|
|
|
/>
|
|
|
|
: null }
|
2016-06-10 03:00:44 +08:00
|
|
|
</g>
|
2016-06-03 06:09:28 +08:00
|
|
|
</svg>
|
|
|
|
</ReactCSSTransitionGroup>
|
2016-06-02 07:37:51 +08:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-06 02:39:24 +08:00
|
|
|
renderSlideControlsContainer() {
|
|
|
|
if (this.props.currentSlide) {
|
|
|
|
return (
|
|
|
|
<SlideControlsContainer
|
|
|
|
currentSlideNum={this.props.currentSlide.slide.num}
|
|
|
|
presentationId={this.props.currentSlide.presentationId}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-02 07:37:51 +08:00
|
|
|
render() {
|
|
|
|
return (
|
2016-06-30 06:00:06 +08:00
|
|
|
<div className={styles.whiteboardContainer}>
|
2016-07-01 06:21:46 +08:00
|
|
|
<div className={styles.whiteboardWrapper}>
|
|
|
|
<div className={styles.whiteboardPaper}>
|
|
|
|
{this.renderWhiteboard()}
|
|
|
|
</div>
|
2016-06-30 06:00:06 +08:00
|
|
|
</div>
|
|
|
|
<PollingContainer />
|
2016-08-06 02:39:24 +08:00
|
|
|
{this.renderSlideControlsContainer()}
|
2016-05-31 06:07:02 +08:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Whiteboard.defaultProps = {
|
|
|
|
svgProps: {
|
2016-06-03 06:09:28 +08:00
|
|
|
|
2016-05-31 06:07:02 +08:00
|
|
|
},
|
|
|
|
svgStyle: {
|
2016-06-03 06:09:28 +08:00
|
|
|
|
2016-05-31 06:07:02 +08:00
|
|
|
},
|
|
|
|
};
|