bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/presentation/component.jsx

116 lines
3.5 KiB
React
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
import CSSTransitionGroup from 'react-transition-group/CSSTransitionGroup';
import PollingContainer from '/imports/ui/components/polling/container';
2017-07-27 20:35:55 +08:00
import AnnotationGroupContainer from '../whiteboard/annotation-group/container';
2017-07-01 03:16:00 +08:00
import Cursor from './cursor/component';
import PresentationToolbarContainer from './presentation-toolbar/container';
import Slide from './slide/component';
import styles from './styles.scss';
2017-02-17 05:11:46 +08:00
export default class PresentationArea extends React.Component {
constructor(props) {
super(props);
}
2017-02-17 05:11:46 +08:00
renderPresentationArea() {
let slideObj = this.props.currentSlide;
2016-07-27 04:56:43 +08:00
if (this.props.currentSlide) {
2017-07-25 01:50:44 +08:00
slideObj = this.props.currentSlide;
const x = -slideObj.xOffset * 2 * slideObj.width / 100;
const y = -slideObj.yOffset * 2 * slideObj.height / 100;
const viewBoxWidth = slideObj.width * slideObj.widthRatio / 100;
const viewBoxHeight = slideObj.height * slideObj.heightRatio / 100;
return (
<CSSTransitionGroup
2017-06-03 03:25:02 +08:00
transitionName={{
2016-06-03 06:09:28 +08:00
enter: styles.enter,
enterActive: styles.enterActive,
appear: styles.appear,
appearActive: styles.appearActive,
2017-06-03 03:25:02 +08:00
}}
transitionAppear
transitionEnter
2016-06-03 06:09:28 +08:00
transitionLeave={false}
transitionAppearTimeout={400}
transitionEnterTimeout={400}
transitionLeaveTimeout={400}
>
2016-06-03 06:09:28 +08:00
<svg
2016-06-25 05:30:37 +08:00
viewBox={`${x} ${y} ${viewBoxWidth} ${viewBoxHeight}`}
2016-06-03 06:09:28 +08:00
version="1.1"
2016-07-06 05:49:31 +08:00
2017-06-03 03:25:02 +08:00
// it's supposed to be here in theory
// but now it's ignored by all the browsers and it's not supported by React
// xmlNS="http://www.w3.org/2000/svg"
2016-06-03 06:09:28 +08:00
className={styles.svgStyles}
key={slideObj.id}
>
<defs>
<clipPath id="viewBox">
2017-06-03 03:25:02 +08:00
<rect x={x} y={y} width="100%" height="100%" fill="none" />
</clipPath>
</defs>
<g clipPath="url(#viewBox)">
2017-06-03 03:25:02 +08:00
<Slide id="slideComponent" currentSlide={this.props.currentSlide} />
2017-07-27 20:35:55 +08:00
<AnnotationGroupContainer
2017-06-03 03:25:02 +08:00
width={slideObj.width}
height={slideObj.height}
whiteboardId={slideObj.id}
2017-02-23 08:10:30 +08:00
/>
{this.props.cursor ?
<Cursor
2017-06-03 03:25:02 +08:00
viewBoxWidth={viewBoxWidth}
viewBoxHeight={viewBoxHeight}
viewBoxX={x}
viewBoxY={y}
2017-07-25 01:50:44 +08:00
widthRatio={slideObj.widthRatio}
2017-06-03 03:25:02 +08:00
cursorX={this.props.cursor.x}
cursorY={this.props.cursor.y}
/>
: null }
</g>
2016-06-03 06:09:28 +08:00
</svg>
</CSSTransitionGroup>
);
}
2017-06-03 03:25:02 +08:00
return null;
}
renderPresentationToolbar() {
2016-08-06 02:39:24 +08:00
if (this.props.currentSlide) {
return (
<PresentationToolbarContainer
2017-07-25 01:50:44 +08:00
currentSlideNum={this.props.currentSlide.num}
2016-08-06 02:39:24 +08:00
presentationId={this.props.currentSlide.presentationId}
/>
);
}
2017-06-03 03:25:02 +08:00
return null;
2016-08-06 02:39:24 +08:00
}
render() {
return (
2017-02-17 05:11:46 +08:00
<div className={styles.presentationContainer}>
<div className={styles.presentationWrapper}>
<div className={styles.presentationPaper}>
{this.renderPresentationArea()}
</div>
2016-06-30 06:00:06 +08:00
</div>
<PollingContainer />
{this.renderPresentationToolbar()}
</div>
);
}
}
2017-02-17 05:11:46 +08:00
PresentationArea.defaultProps = {
svgProps: {
2016-06-03 06:09:28 +08:00
},
svgStyle: {
2016-06-03 06:09:28 +08:00
},
};