bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/whiteboard/shapes/triangle/component.jsx
Oleksandr Zhurbenko 29e8524de0 Polishing
2016-06-24 14:30:37 -07:00

53 lines
1.5 KiB
JavaScript
Executable File

import React, { PropTypes } from 'react';
import ShapeHelpers from '../helpers.js';
export default class TriangleDrawComponent extends React.Component {
constructor(props) {
super(props);
}
getCoordinates() {
let path = '';
//points[0] and points[1] are x and y coordinates of the top left corner of the shape obj
//points[2] and points[3] are x and y coordinates of the bottom right corner of the shape obj
let xBottomLeft = this.props.shape.points[0];
let yBottomLeft = this.props.shape.points[3];
let xBottomRight = this.props.shape.points[2];
let yBottomRight = this.props.shape.points[3];
let xTop = ((xBottomRight - xBottomLeft) / 2) + xBottomLeft;
let yTop = this.props.shape.points[1];
path = path + 'M' + (xTop / 100 * this.props.slideWidth) +
',' + (yTop / 100 * this.props.slideHeight) +
',' + (xBottomLeft / 100 * this.props.slideWidth) +
',' + (yBottomLeft / 100 * this.props.slideHeight) +
',' + (xBottomRight / 100 * this.props.slideWidth) +
',' + (yBottomRight / 100 * this.props.slideHeight) +
'Z';
return path;
}
render() {
let path = this.getCoordinates();
return (
<path
style={this.props.style}
fill="none"
stroke={ShapeHelpers.formatColor(this.props.shape.color)}
d={path}
strokeWidth={this.props.shape.thickness}
strokeLinejoin="round"
>
</path>
);
}
}
TriangleDrawComponent.defaultProps = {
style: {
WebkitTapHighlightColor: 'rgba(0, 0, 0, 0)',
},
};