bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/whiteboard/annotations/pencil/component.jsx
2020-10-27 12:54:55 -03:00

175 lines
5.9 KiB
JavaScript
Executable File

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { getFormattedColor, getStrokeWidth, denormalizeCoord } from '../helpers';
export default class PencilDrawComponent extends Component {
static getInitialCoordinates(annotation, slideWidth, slideHeight) {
const { points } = annotation;
let i = 2;
let path = '';
if (points && points.length >= 2) {
path = `M${denormalizeCoord(points[0], slideWidth)
}, ${denormalizeCoord(points[1], slideHeight)}`;
while (i < points.length) {
path = `${path} L${denormalizeCoord(points[i], slideWidth)
}, ${denormalizeCoord(points[i + 1], slideHeight)}`;
i += 2;
}
}
return { path, points };
}
static getFinalCoordinates(annotation, slideWidth, slideHeight) {
const { points, commands } = annotation;
let path = '';
let i;
let j;
for (i = 0, j = 0; i < commands.length; i += 1) {
switch (commands[i]) {
// MOVE_TO - consumes 1 pair of values
case 1:
path = `${path} M${denormalizeCoord(points[j], slideWidth)} ${denormalizeCoord(points[j + 1], slideHeight)}`;
j += 2;
break;
// LINE_TO - consumes 1 pair of values
case 2:
path = `${path} L${denormalizeCoord(points[j], slideWidth)} ${denormalizeCoord(points[j + 1], slideHeight)}`;
j += 2;
break;
// QUADRATIC_CURVE_TO - consumes 2 pairs of values
// 1st pair is a control point, second is a coordinate
case 3:
path = `${path} Q${denormalizeCoord(points[j], slideWidth)}, ${
denormalizeCoord(points[j + 1], slideHeight)}, ${denormalizeCoord(points[j + 2], slideWidth)}, ${
denormalizeCoord(points[j + 3], slideHeight)}`;
j += 4;
break;
// CUBIC_CURVE_TO - consumes 3 pairs of values
// 1st and 2nd are control points, 3rd is an end coordinate
case 4:
path = `${path} C${denormalizeCoord(points[j], slideWidth)}, ${
denormalizeCoord(points[j + 1], slideHeight)}, ${denormalizeCoord(points[j + 2], slideWidth)}, ${
denormalizeCoord(points[j + 3], slideHeight)}, ${denormalizeCoord(points[j + 4], slideWidth)}, ${
denormalizeCoord(points[j + 5], slideHeight)}`;
j += 6;
break;
default:
break;
}
}
// If that's just one coordinate at the end (dot) - we want to display it.
// So adding L with the same X and Y values to the path
if (path && points.length === 2) {
path = `${path} L${denormalizeCoord(points[0], slideWidth)} ${denormalizeCoord(points[1], slideHeight)}`;
}
return { path, points };
}
constructor(props) {
super(props);
const { annotation, slideWidth, slideHeight } = this.props;
this.path = this.getCoordinates(annotation, slideWidth, slideHeight);
this.getCurrentPath = this.getCurrentPath.bind(this);
this.getCoordinates = this.getCoordinates.bind(this);
}
shouldComponentUpdate(nextProps) {
const { version } = this.props;
return version !== nextProps.version;
}
componentWillUpdate(nextProps) {
const { annotation: nextAnnotation, slideWidth, slideHeight } = nextProps;
const { points: nextPoints } = nextAnnotation;
const { annotation } = this.props;
const { points } = annotation;
if (nextPoints.length !== points.length) {
this.path = this.getCoordinates(nextAnnotation, slideWidth, slideHeight);
}
}
getCoordinates(annotation, slideWidth, slideHeight) {
if ((!annotation || annotation.points.length === 0)
|| (annotation.status === 'DRAW_END' && !annotation.commands)) {
return undefined;
}
let data;
// Final message, display smoothes coordinates
if (annotation.status === 'DRAW_END') {
data = PencilDrawComponent.getFinalCoordinates(annotation, slideWidth, slideHeight);
// Not a final message, but rendering it for the first time, creating a new path
} else if (!this.path) {
data = PencilDrawComponent.getInitialCoordinates(annotation, slideWidth, slideHeight);
// If it's not the first 2 cases - means we just got an update, updating the coordinates
} else {
data = this.updateCoordinates(annotation, slideWidth, slideHeight);
}
this.points = data.points;
return data.path;
}
getCurrentPath() {
return this.path ? this.path : 'M -1 -1';
}
updateCoordinates(annotation, slideWidth, slideHeight) {
const { points } = annotation;
let i = this.points.length;
let path = '';
while (i < points.length) {
path = `${path} L${denormalizeCoord(points[i], slideWidth)
}, ${denormalizeCoord(points[i + 1], slideHeight)}`;
i += 2;
}
path = this.path + path;
return { path, points };
}
render() {
const { annotation, slideWidth } = this.props;
return (
<path
fill="none"
stroke={getFormattedColor(annotation.color)}
d={this.getCurrentPath()}
strokeWidth={getStrokeWidth(annotation.thickness, slideWidth)}
strokeLinejoin="round"
strokeLinecap="round"
style={{ WebkitTapHighlightColor: 'rgba(0, 0, 0, 0)' }}
data-test="pencilDraw"
/>
);
}
}
PencilDrawComponent.propTypes = {
// Defines a version of the shape, so that we know if we need to update the component or not
version: PropTypes.number.isRequired,
// Defines an annotation object, which contains all the basic info we need to draw with a pencil
annotation: PropTypes.shape({
points: PropTypes.arrayOf(PropTypes.number).isRequired,
color: PropTypes.number.isRequired,
thickness: PropTypes.number.isRequired,
}).isRequired,
// Defines the width of the slide (svg coordinate system), which needed in calculations
slideWidth: PropTypes.number.isRequired,
// Defines the height of the slide (svg coordinate system), which needed in calculations
slideHeight: PropTypes.number.isRequired,
};