2017-08-20 14:32:01 +08:00
|
|
|
import React, { Component } from 'react';
|
2017-06-04 10:40:14 +08:00
|
|
|
import PropTypes from 'prop-types';
|
2020-04-07 04:34:08 +08:00
|
|
|
import { getFormattedColor, getStrokeWidth, denormalizeCoord } from '../helpers';
|
2016-05-31 06:07:02 +08:00
|
|
|
|
2017-08-20 14:32:01 +08:00
|
|
|
export default class EllipseDrawComponent extends Component {
|
|
|
|
shouldComponentUpdate(nextProps) {
|
2020-04-07 04:34:08 +08:00
|
|
|
const { version } = this.props;
|
|
|
|
return version !== nextProps.version;
|
2017-05-10 04:34:46 +08:00
|
|
|
}
|
|
|
|
|
2016-06-05 07:09:50 +08:00
|
|
|
getCoordinates() {
|
2020-04-07 04:34:08 +08:00
|
|
|
const { slideWidth, slideHeight, annotation } = this.props;
|
|
|
|
const { points } = annotation;
|
2017-08-20 14:32:01 +08:00
|
|
|
|
2017-06-03 03:25:02 +08:00
|
|
|
// x1 and y1 - coordinates of the ellipse's top left corner
|
|
|
|
// x2 and y2 - coordinates of the ellipse's bottom right corner
|
2017-08-20 14:32:01 +08:00
|
|
|
const x1 = points[0];
|
|
|
|
const y1 = points[1];
|
|
|
|
const x2 = points[2];
|
|
|
|
const y2 = points[3];
|
2016-06-05 07:09:50 +08:00
|
|
|
|
2017-06-03 03:25:02 +08:00
|
|
|
// rx - horizontal radius
|
|
|
|
// ry - vertical radius
|
|
|
|
// cx and cy - coordinates of the ellipse's center
|
2016-06-25 05:30:37 +08:00
|
|
|
let rx = (x2 - x1) / 2;
|
|
|
|
let ry = (y2 - y1) / 2;
|
2020-04-07 04:34:08 +08:00
|
|
|
const cx = denormalizeCoord(rx + x1, slideWidth);
|
|
|
|
const cy = denormalizeCoord(ry + y1, slideHeight);
|
|
|
|
rx = denormalizeCoord(Math.abs(rx), slideWidth);
|
|
|
|
ry = denormalizeCoord(Math.abs(ry), slideHeight);
|
2016-06-05 07:09:50 +08:00
|
|
|
|
|
|
|
return {
|
2017-06-03 03:25:02 +08:00
|
|
|
cx,
|
|
|
|
cy,
|
|
|
|
rx,
|
|
|
|
ry,
|
2016-05-31 06:07:02 +08:00
|
|
|
};
|
2016-06-05 07:09:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2017-06-03 03:25:02 +08:00
|
|
|
const results = this.getCoordinates();
|
2017-08-20 14:32:01 +08:00
|
|
|
const { annotation, slideWidth } = this.props;
|
2020-04-07 04:34:08 +08:00
|
|
|
const {
|
|
|
|
cx, cy, rx, ry,
|
|
|
|
} = results;
|
2017-08-20 14:32:01 +08:00
|
|
|
|
2016-05-31 06:07:02 +08:00
|
|
|
return (
|
|
|
|
<ellipse
|
2017-09-06 09:36:15 +08:00
|
|
|
cx={cx}
|
|
|
|
cy={cy}
|
|
|
|
rx={rx}
|
|
|
|
ry={ry}
|
2016-06-05 07:09:50 +08:00
|
|
|
fill="none"
|
2020-04-07 04:34:08 +08:00
|
|
|
stroke={getFormattedColor(annotation.color)}
|
|
|
|
strokeWidth={getStrokeWidth(annotation.thickness, slideWidth)}
|
2017-08-20 14:32:01 +08:00
|
|
|
style={{ WebkitTapHighlightColor: 'rgba(0, 0, 0, 0)' }}
|
2017-06-03 03:25:02 +08:00
|
|
|
/>
|
2016-05-31 06:07:02 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2016-06-05 07:09:50 +08:00
|
|
|
|
2017-08-20 14:32:01 +08:00
|
|
|
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,
|
2016-06-05 07:09:50 +08:00
|
|
|
};
|