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
|
|
|
|
2018-05-12 00:01:24 +08:00
|
|
|
const CURSOR_INTERVAL = 16;
|
2017-08-27 16:12:27 +08:00
|
|
|
|
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
|
|
|
|
2017-12-02 11:35:15 +08:00
|
|
|
// Mobile Firefox has a bug where e.preventDefault on touchstart doesn't prevent
|
|
|
|
// onmousedown from triggering right after. Thus we have to track it manually.
|
|
|
|
// In case if it's fixed one day - there is another issue, React one.
|
|
|
|
// https://github.com/facebook/react/issues/9809
|
|
|
|
// Check it to figure if you can add onTouchStart in render(), or should use raw DOM api
|
|
|
|
this.touchStarted = false;
|
|
|
|
|
|
|
|
this.handleTouchStart = this.handleTouchStart.bind(this);
|
|
|
|
this.handleTouchMove = this.handleTouchMove.bind(this);
|
|
|
|
this.handleTouchEnd = this.handleTouchEnd.bind(this);
|
|
|
|
this.handleTouchCancel = this.handleTouchCancel.bind(this);
|
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;
|
|
|
|
}
|
|
|
|
|
2017-12-02 11:35:15 +08:00
|
|
|
|
|
|
|
handleTouchStart(event) {
|
|
|
|
// to prevent default behavior (scrolling) on devices (in Safari), when you draw a text box
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
window.addEventListener('touchend', this.handleTouchEnd, { passive: false });
|
|
|
|
window.addEventListener('touchmove', this.handleTouchMove, { passive: false });
|
|
|
|
window.addEventListener('touchcancel', this.handleTouchCancel, true);
|
|
|
|
|
|
|
|
this.touchStarted = true;
|
|
|
|
|
|
|
|
const { clientX, clientY } = event.changedTouches[0];
|
|
|
|
this.currentClientX = clientX;
|
|
|
|
this.currentClientY = clientY;
|
|
|
|
|
|
|
|
const intervalId = setInterval(this.checkCursor, CURSOR_INTERVAL);
|
|
|
|
this.intervalId = intervalId;
|
|
|
|
}
|
|
|
|
|
|
|
|
handleTouchMove(event) {
|
|
|
|
const { clientX, clientY } = event.changedTouches[0];
|
|
|
|
|
|
|
|
this.currentClientX = clientX;
|
|
|
|
this.currentClientY = clientY;
|
|
|
|
}
|
|
|
|
|
|
|
|
handleTouchEnd(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
// touch ended, removing the interval
|
|
|
|
clearInterval(this.intervalId);
|
|
|
|
this.intervalId = 0;
|
|
|
|
|
|
|
|
// resetting the touchStarted flag
|
|
|
|
this.touchStarted = false;
|
|
|
|
|
|
|
|
// setting the coords to negative values and send the last message (the cursor will disappear)
|
|
|
|
this.currentClientX = -1;
|
|
|
|
this.currentClientY = -1;
|
|
|
|
this.checkCursor();
|
|
|
|
|
|
|
|
window.removeEventListener('touchend', this.handleTouchEnd, { passive: false });
|
|
|
|
window.removeEventListener('touchmove', this.handleTouchMove, { passive: false });
|
|
|
|
window.removeEventListener('touchcancel', this.handleTouchCancel, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleTouchCancel(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
// touch was cancelled, removing the interval
|
|
|
|
clearInterval(this.intervalId);
|
|
|
|
this.intervalId = 0;
|
|
|
|
|
|
|
|
// resetting the touchStarted flag
|
|
|
|
this.touchStarted = false;
|
|
|
|
|
|
|
|
// setting the coords to negative values and send the last message (the cursor will disappear)
|
|
|
|
this.currentClientX = -1;
|
|
|
|
this.currentClientY = -1;
|
|
|
|
this.checkCursor();
|
|
|
|
|
|
|
|
window.removeEventListener('touchend', this.handleTouchEnd, { passive: false });
|
|
|
|
window.removeEventListener('touchmove', this.handleTouchMove, { passive: false });
|
|
|
|
window.removeEventListener('touchcancel', this.handleTouchCancel, true);
|
|
|
|
}
|
|
|
|
|
2017-09-01 09:42:00 +08:00
|
|
|
mouseMoveHandler(event) {
|
2017-12-02 11:35:15 +08:00
|
|
|
if (this.touchStarted) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-09-01 09:42:00 +08:00
|
|
|
// 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();
|
|
|
|
}
|
|
|
|
|
2017-12-02 11:35:15 +08:00
|
|
|
this.currentClientX = event.clientX;
|
|
|
|
this.currentClientY = event.clientY;
|
2017-09-01 09:42:00 +08:00
|
|
|
}
|
|
|
|
|
2017-07-29 08:29:40 +08:00
|
|
|
mouseEnterHandler() {
|
2017-12-02 11:35:15 +08:00
|
|
|
if (this.touchStarted) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
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
|
2017-12-02 11:35:15 +08:00
|
|
|
onTouchStart={this.handleTouchStart}
|
2017-07-29 08:29:40 +08:00
|
|
|
onMouseOut={this.mouseOutHandler}
|
|
|
|
onMouseEnter={this.mouseEnterHandler}
|
|
|
|
onMouseMove={this.mouseMoveHandler}
|
2017-12-02 11:35:15 +08:00
|
|
|
style={{ width: '100%', height: '100%', touchAction: 'none' }}
|
2017-07-29 08:29:40 +08:00
|
|
|
>
|
|
|
|
{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,
|
|
|
|
};
|