a8e1462744
Fix wrong annotation codes #13674
77 lines
2.3 KiB
JavaScript
77 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;
|
|
|
|
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 { fill } = annotation;
|
|
const {
|
|
cx, cy, rx, ry,
|
|
} = results;
|
|
|
|
return (
|
|
<ellipse
|
|
cx={cx}
|
|
cy={cy}
|
|
rx={rx}
|
|
ry={ry}
|
|
fill={ fill ? getFormattedColor(annotation.color) : "none" }
|
|
stroke={getFormattedColor(annotation.color)}
|
|
strokeWidth={getStrokeWidth(annotation.thickness, slideWidth)}
|
|
style={{ WebkitTapHighlightColor: 'rgba(0, 0, 0, 0)' }}
|
|
data-test="drawnEllipse"
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
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,
|
|
fill: PropTypes.bool.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,
|
|
};
|