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 TriangleDrawComponent 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-09 01:13:25 +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
|
|
|
|
2021-11-22 23:43:02 +08:00
|
|
|
const xApex = ((points[2] - points[0]) / 2) + points[0];
|
|
|
|
const yApex = points[1];
|
2017-08-20 14:32:01 +08:00
|
|
|
|
2021-11-22 23:43:02 +08:00
|
|
|
const path = `M${denormalizeCoord(xApex, slideWidth)
|
|
|
|
},${denormalizeCoord(yApex, slideHeight)
|
|
|
|
},${denormalizeCoord(points[0], slideWidth)
|
|
|
|
},${denormalizeCoord(points[3], slideHeight)
|
|
|
|
},${denormalizeCoord(points[2], slideWidth)
|
|
|
|
},${denormalizeCoord(points[3], slideHeight)
|
2020-04-07 04:34:08 +08:00
|
|
|
}Z`;
|
2016-06-09 01:13:25 +08:00
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2016-05-31 06:07:02 +08:00
|
|
|
render() {
|
2017-06-03 03:25:02 +08:00
|
|
|
const path = this.getCoordinates();
|
2017-08-20 14:32:01 +08:00
|
|
|
const { annotation, slideWidth } = this.props;
|
2020-10-28 13:39:33 +08:00
|
|
|
const { fill } = annotation;
|
2016-05-31 06:07:02 +08:00
|
|
|
return (
|
|
|
|
<path
|
2017-08-20 14:32:01 +08:00
|
|
|
style={{ WebkitTapHighlightColor: 'rgba(0, 0, 0, 0)' }}
|
2020-10-28 13:39:33 +08:00
|
|
|
fill={ fill ? getFormattedColor(annotation.color) : "none" }
|
2020-04-07 04:34:08 +08:00
|
|
|
stroke={getFormattedColor(annotation.color)}
|
2016-06-09 01:13:25 +08:00
|
|
|
d={path}
|
2020-04-07 04:34:08 +08:00
|
|
|
strokeWidth={getStrokeWidth(annotation.thickness, slideWidth)}
|
2017-08-26 06:45:06 +08:00
|
|
|
strokeLinejoin="miter"
|
2020-10-27 23:54:55 +08:00
|
|
|
data-test="drawnTriangle"
|
2017-06-03 03:25:02 +08:00
|
|
|
/>
|
2016-05-31 06:07:02 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2016-06-09 01:13:25 +08:00
|
|
|
|
2017-08-20 14:32:01 +08:00
|
|
|
TriangleDrawComponent.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 triangle
|
|
|
|
annotation: PropTypes.shape({
|
|
|
|
points: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
|
|
color: PropTypes.number.isRequired,
|
|
|
|
thickness: PropTypes.number.isRequired,
|
2020-10-28 13:39:33 +08:00
|
|
|
fill: PropTypes.bool.isRequired,
|
2017-08-20 14:32:01 +08:00
|
|
|
}).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-09 01:13:25 +08:00
|
|
|
};
|