2017-06-08 05:25:47 +08:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2017-02-07 08:10:50 +08:00
|
|
|
|
2017-08-27 16:12:27 +08:00
|
|
|
const CURSOR_INTERVAL = 50;
|
|
|
|
|
2017-07-29 08:29:40 +08:00
|
|
|
export default class PresentationOverlay extends Component {
|
2017-02-07 08:10:50 +08:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
2017-07-29 08:29:40 +08:00
|
|
|
// last sent coordinates
|
2017-09-01 09:42:00 +08:00
|
|
|
this.lastSentClientX = 0;
|
|
|
|
this.lastSentClientY = 0;
|
2017-02-07 08:10:50 +08:00
|
|
|
|
2017-07-29 08:29:40 +08:00
|
|
|
// last updated coordinates
|
2017-09-01 09:42:00 +08:00
|
|
|
this.currentClientX = 0;
|
|
|
|
this.currentClientY = 0;
|
2017-05-27 03:05:19 +08:00
|
|
|
|
2017-07-29 08:29:40 +08:00
|
|
|
// id of the setInterval()
|
|
|
|
this.intervalId = 0;
|
2017-02-07 08:10:50 +08:00
|
|
|
|
|
|
|
this.mouseMoveHandler = this.mouseMoveHandler.bind(this);
|
|
|
|
this.checkCursor = this.checkCursor.bind(this);
|
|
|
|
this.mouseEnterHandler = this.mouseEnterHandler.bind(this);
|
|
|
|
this.mouseOutHandler = this.mouseOutHandler.bind(this);
|
2017-09-01 09:42:00 +08:00
|
|
|
this.getTransformedSvgPoint = this.getTransformedSvgPoint.bind(this);
|
|
|
|
this.svgCoordinateToPercentages = this.svgCoordinateToPercentages.bind(this);
|
2017-02-07 08:10:50 +08:00
|
|
|
}
|
|
|
|
|
2017-09-01 09:42:00 +08:00
|
|
|
// transforms the coordinate from window coordinate system
|
|
|
|
// to the main svg coordinate system
|
|
|
|
getTransformedSvgPoint(clientX, clientY) {
|
|
|
|
const svgObject = this.props.getSvgRef();
|
|
|
|
const screenPoint = svgObject.createSVGPoint();
|
|
|
|
screenPoint.x = clientX;
|
|
|
|
screenPoint.y = clientY;
|
|
|
|
|
|
|
|
// transform a screen point to svg point
|
|
|
|
const CTM = svgObject.getScreenCTM();
|
|
|
|
return screenPoint.matrixTransform(CTM.inverse());
|
2017-02-07 08:10:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
checkCursor() {
|
2017-07-29 08:29:40 +08:00
|
|
|
// check if the cursor hasn't moved since last check
|
2017-09-01 09:42:00 +08:00
|
|
|
if (this.lastSentClientX !== this.currentClientX
|
|
|
|
|| this.lastSentClientY !== this.currentClientY) {
|
|
|
|
const { currentClientX, currentClientY } = this;
|
|
|
|
// retrieving a transformed coordinate
|
|
|
|
let transformedSvgPoint = this.getTransformedSvgPoint(currentClientX, currentClientY);
|
2017-07-29 08:29:40 +08:00
|
|
|
// determining the cursor's coordinates as percentages from the slide's width/height
|
2017-09-01 09:42:00 +08:00
|
|
|
transformedSvgPoint = this.svgCoordinateToPercentages(transformedSvgPoint);
|
2017-07-29 08:29:40 +08:00
|
|
|
// updating last sent raw coordinates
|
2017-09-01 09:42:00 +08:00
|
|
|
this.lastSentClientX = currentClientX;
|
|
|
|
this.lastSentClientY = currentClientY;
|
2017-07-29 08:29:40 +08:00
|
|
|
|
|
|
|
// sending the update to the server
|
2017-09-01 09:42:00 +08:00
|
|
|
this.props.updateCursor({ xPercent: transformedSvgPoint.x, yPercent: transformedSvgPoint.y });
|
2017-02-07 08:10:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-01 09:42:00 +08:00
|
|
|
// receives an svg coordinate and changes the values to percentages of the slide's width/height
|
|
|
|
svgCoordinateToPercentages(svgPoint) {
|
|
|
|
const point = {
|
|
|
|
x: (svgPoint.x / this.props.slideWidth) * 100,
|
|
|
|
y: (svgPoint.y / this.props.slideHeight) * 100,
|
|
|
|
};
|
|
|
|
|
|
|
|
return point;
|
|
|
|
}
|
|
|
|
|
|
|
|
mouseMoveHandler(event) {
|
|
|
|
// for the case where you change settings in one of the lists (which are displayed on the slide)
|
|
|
|
// the mouse starts pointing to the slide right away and mouseEnter doesn't fire
|
|
|
|
// so we call it manually here
|
|
|
|
if (!this.intervalId) {
|
|
|
|
this.mouseEnterHandler();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.currentClientX = event.nativeEvent.clientX;
|
|
|
|
this.currentClientY = event.nativeEvent.clientY;
|
|
|
|
}
|
|
|
|
|
2017-07-29 08:29:40 +08:00
|
|
|
mouseEnterHandler() {
|
2017-08-27 16:12:27 +08:00
|
|
|
const intervalId = setInterval(this.checkCursor, CURSOR_INTERVAL);
|
2017-05-27 03:05:19 +08:00
|
|
|
this.intervalId = intervalId;
|
2017-02-07 08:10:50 +08:00
|
|
|
}
|
|
|
|
|
2017-07-29 08:29:40 +08:00
|
|
|
mouseOutHandler() {
|
|
|
|
// mouse left the whiteboard, removing the interval
|
2017-05-27 03:05:19 +08:00
|
|
|
clearInterval(this.intervalId);
|
|
|
|
this.intervalId = 0;
|
2017-07-29 08:29:40 +08:00
|
|
|
|
|
|
|
// setting the coords to negative values and send the last message (the cursor will disappear)
|
2017-09-01 09:42:00 +08:00
|
|
|
this.currentClientX = -1;
|
|
|
|
this.currentClientY = -1;
|
2017-07-29 08:29:40 +08:00
|
|
|
this.checkCursor();
|
2017-02-07 08:10:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<foreignObject
|
|
|
|
clipPath="url(#viewBox)"
|
2017-05-27 04:06:34 +08:00
|
|
|
x="0"
|
|
|
|
y="0"
|
|
|
|
width={this.props.slideWidth}
|
|
|
|
height={this.props.slideHeight}
|
2017-02-07 08:10:50 +08:00
|
|
|
>
|
2017-07-29 08:29:40 +08:00
|
|
|
<div
|
|
|
|
onMouseOut={this.mouseOutHandler}
|
|
|
|
onMouseEnter={this.mouseEnterHandler}
|
|
|
|
onMouseMove={this.mouseMoveHandler}
|
|
|
|
style={{ width: '100%', height: '100%' }}
|
|
|
|
>
|
|
|
|
{this.props.children}
|
|
|
|
</div>
|
2017-02-07 08:10:50 +08:00
|
|
|
</foreignObject>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2017-07-29 08:29:40 +08:00
|
|
|
|
|
|
|
PresentationOverlay.propTypes = {
|
2017-09-01 09:42:00 +08:00
|
|
|
// Defines a function which returns a reference to the main svg object
|
|
|
|
getSvgRef: PropTypes.func.isRequired,
|
|
|
|
|
2017-07-29 08:29:40 +08:00
|
|
|
// Defines the calculated slide width (in svg coordinate system)
|
|
|
|
slideWidth: PropTypes.number.isRequired,
|
|
|
|
|
|
|
|
// Defines the calculated slide height (in svg coordinate system)
|
|
|
|
slideHeight: PropTypes.number.isRequired,
|
|
|
|
|
|
|
|
// A function to send a cursor update
|
|
|
|
updateCursor: PropTypes.func.isRequired,
|
|
|
|
|
|
|
|
// As a child we expect only a WhiteboardOverlay at this point
|
|
|
|
children: PropTypes.element.isRequired,
|
|
|
|
};
|