bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/whiteboard/annotations/rectangle/component.jsx

81 lines
2.5 KiB
React
Raw Normal View History

import React, { Component } from 'react';
import PropTypes from 'prop-types';
2020-04-07 04:34:08 +08:00
import { getFormattedColor, getStrokeWidth, denormalizeCoord } from '../helpers';
export default class RectangleDrawComponent extends Component {
shouldComponentUpdate(nextProps) {
2020-04-07 04:34:08 +08:00
const { version } = this.props;
return version !== nextProps.version;
}
2016-06-10 02:58:41 +08:00
getCoordinates() {
2020-04-07 04:34:08 +08:00
const { slideWidth, slideHeight, annotation } = this.props;
const { points } = annotation;
/* eslint-disable prefer-destructuring */
2017-07-27 20:35:55 +08:00
// x1 and y1 are the coordinates of the top left corner of the annotation
// x2 and y2 are the coordinates of the bottom right corner of the annotation
let x1 = points[0];
let y1 = points[1];
let x2 = points[2];
let y2 = points[3];
2016-06-10 02:58:41 +08:00
2017-06-03 03:25:02 +08:00
// Presenter pulled rectangle to the left
2016-06-10 02:58:41 +08:00
if (x2 < x1) {
x1 = points[2];
x2 = points[0];
2016-06-10 02:58:41 +08:00
}
2017-06-03 03:25:02 +08:00
// Presenter pulled Rectangle to the top
2016-06-10 02:58:41 +08:00
if (y2 < y1) {
y1 = points[3];
y2 = points[1];
2016-06-10 02:58:41 +08:00
}
2020-04-07 04:34:08 +08:00
/* eslint-enable prefer-destructuring */
const x = denormalizeCoord(x1, slideWidth);
const y = denormalizeCoord(y1, slideHeight);
const width = denormalizeCoord((x2 - x1), slideWidth);
const height = denormalizeCoord((y2 - y1), slideHeight);
2016-06-10 02:58:41 +08:00
return {
2017-06-03 03:25:02 +08:00
x,
y,
width,
height,
};
2016-06-10 02:58:41 +08:00
}
2016-06-10 02:58:41 +08:00
render() {
2017-06-03 03:25:02 +08:00
const results = this.getCoordinates();
const { annotation, slideWidth } = this.props;
2016-06-10 02:58:41 +08:00
return (
<rect
2016-06-10 02:58:41 +08:00
x={results.x}
y={results.y}
width={results.width}
height={results.height}
fill="none"
2020-04-07 04:34:08 +08:00
stroke={getFormattedColor(annotation.color)}
strokeWidth={getStrokeWidth(annotation.thickness, slideWidth)}
style={{ WebkitTapHighlightColor: 'rgba(0, 0, 0, 0)' }}
data-test="drawnRectangle"
2017-06-03 03:25:02 +08:00
/>
);
}
}
2016-06-10 02:58:41 +08:00
RectangleDrawComponent.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 a rectangle
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,
2016-06-10 02:58:41 +08:00
};