bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/whiteboard/annotations/ellipse/component.jsx
2020-04-08 20:03:56 +00:00

76 lines
2.3 KiB
JavaScript

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { getFormattedColor, getStrokeWidth, denormalizeCoord } from '../helpers';
export default class EllipseDrawComponent extends Component {
shouldComponentUpdate(nextProps) {
const { version } = this.props;
return version !== nextProps.version;
}
getCoordinates() {
const { slideWidth, slideHeight, annotation } = this.props;
const { points } = annotation;
// x1 and y1 - coordinates of the ellipse's top left corner
// x2 and y2 - coordinates of the ellipse's bottom right corner
const x1 = points[0];
const y1 = points[1];
const x2 = points[2];
const y2 = points[3];
// rx - horizontal radius
// ry - vertical radius
// cx and cy - coordinates of the ellipse's center
let rx = (x2 - x1) / 2;
let ry = (y2 - y1) / 2;
const cx = denormalizeCoord(rx + x1, slideWidth);
const cy = denormalizeCoord(ry + y1, slideHeight);
rx = denormalizeCoord(Math.abs(rx), slideWidth);
ry = denormalizeCoord(Math.abs(ry), slideHeight);
return {
cx,
cy,
rx,
ry,
};
}
render() {
const results = this.getCoordinates();
const { annotation, slideWidth } = this.props;
const {
cx, cy, rx, ry,
} = results;
return (
<ellipse
cx={cx}
cy={cy}
rx={rx}
ry={ry}
fill="none"
stroke={getFormattedColor(annotation.color)}
strokeWidth={getStrokeWidth(annotation.thickness, slideWidth)}
style={{ WebkitTapHighlightColor: 'rgba(0, 0, 0, 0)' }}
/>
);
}
}
EllipseDrawComponent.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 an ellipse
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,
};