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

65 lines
1.9 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 LineDrawComponent extends Component {
shouldComponentUpdate(nextProps) {
2020-04-07 04:34:08 +08:00
const { version } = this.props;
return version !== nextProps.version;
}
2016-06-07 01:12:14 +08:00
getCoordinates() {
2020-04-07 04:34:08 +08:00
const { slideWidth, slideHeight, annotation } = this.props;
const { points } = annotation;
2020-04-07 04:34:08 +08:00
const x1 = denormalizeCoord(points[0], slideWidth);
const y1 = denormalizeCoord(points[1], slideHeight);
const x2 = denormalizeCoord(points[2], slideWidth);
const y2 = denormalizeCoord(points[3], slideHeight);
2016-06-07 01:12:14 +08:00
return {
2017-06-03 03:25:02 +08:00
x1,
y1,
x2,
y2,
2016-06-08 02:33:31 +08:00
};
2016-06-07 01:12:14 +08:00
}
render() {
2017-06-03 03:25:02 +08:00
const results = this.getCoordinates();
const { annotation, slideWidth } = this.props;
2020-04-07 04:34:08 +08:00
const {
x1, y1, x2, y2,
} = results;
return (
<line
2017-09-06 09:36:15 +08:00
x1={x1}
y1={y1}
x2={x2}
y2={y2}
2020-04-07 04:34:08 +08:00
stroke={getFormattedColor(annotation.color)}
2016-06-08 02:33:31 +08:00
strokeLinejoin="round"
2020-04-07 04:34:08 +08:00
strokeWidth={getStrokeWidth(annotation.thickness, slideWidth)}
style={{ WebkitTapHighlightColor: 'rgba(0, 0, 0, 0)' }}
data-test="drawnLine"
/>
);
}
}
2016-06-07 01:12:14 +08:00
LineDrawComponent.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 line
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-07 01:12:14 +08:00
};