bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/whiteboard/shapes/text/component.jsx
2017-05-12 12:46:10 -07:00

88 lines
2.1 KiB
JavaScript
Executable File

import React, { PropTypes } from 'react';
import ShapeHelpers from '../helpers.js';
export default class TextDrawComponent extends React.Component {
constructor(props) {
super(props);
}
getCoordinates() {
let x = this.props.shape.x / 100 * this.props.slideWidth;
let y = this.props.shape.y / 100 * this.props.slideHeight;
let width = this.props.shape.textBoxWidth / 100 * this.props.slideWidth;
let height = this.props.shape.textBoxHeight / 100 * this.props.slideHeight;
let fontColor = ShapeHelpers.formatColor(this.props.shape.fontColor);
let fontSize = this.props.shape.fontSize;
let calcedFontSize = this.props.shape.calcedFontSize / 100 * this.props.slideHeight;
let text = this.props.shape.text;
return {
x: x,
y: y,
text: text,
width: width,
height: height,
fontSize: fontSize,
fontColor: fontColor,
calcedFontSize: calcedFontSize,
};
}
getStyles(results) {
let styles = {
WebkitTapHighlightColor: 'rgba(0, 0, 0, 0)',
pointerEvents: 'none',
fontStyle: 'normal',
fontVariant: 'normal',
fontWeight: 'normal',
fontStretch: 'normal',
lineHeight: 'normal',
fontFamily: 'Arial',
whiteSpace: 'pre-wrap',
wordWrap: 'break-word',
wordBreak: 'normal',
textAlign: 'left',
margin: 0,
color: results.fontColor,
fontSize: results.calcedFontSize,
};
return styles;
}
render() {
let results = this.getCoordinates();
let styles = this.getStyles(results);
return (
<g>
<clipPath id="c1">
<rect
x={results.x}
y={results.y}
width={results.width}
height={results.height}
fill="purple"
strokeWidth="2"
/>
</clipPath>
<foreignObject
clipPath="url(#c1)"
x={results.x}
y={results.y}
width={results.width}
height={results.height}
>
<p style={styles}>
{results.text}
</p>
</foreignObject>
</g>
);
}
}
TextDrawComponent.defaultProps = {
};