12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- import React, { Component } from 'react';
-
- /**
- * React component for displaying a preview of a DesktopCapturerSource.
- *
- * @extends Component
- */
- class DesktopSourcePreview extends Component {
- /**
- * DesktopSourcePreview component's property types.
- *
- * @static
- */
- static propTypes = {
- /**
- * If true the 'is-selected' class will be added to the component.
- */
- isSelected: React.PropTypes.bool,
-
- /**
- * The callback to invoke when the component is clicked.
- * The id of the DesktopCapturerSource will be passed in.
- */
- onClick: React.PropTypes.func,
-
- /**
- * The callback to invoke when the component is double clicked.
- * The id of the DesktopCapturerSource will be passed in.
- */
- onDoubleClick: React.PropTypes.func,
-
- /**
- * The DesktopCapturerSource to display.
- */
- source: React.PropTypes.object
- }
-
- /**
- * Initializes a new DesktopSourcePreview instance.
- *
- * @param {Object} props - The read-only properties with which the new
- * instance is to be initialized.
- */
- constructor(props) {
- super(props);
-
- this._onClick = this._onClick.bind(this);
- this._onDoubleClick = this._onDoubleClick.bind(this);
- }
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- const isSelectedClass = this.props.isSelected ? 'is-selected' : '';
- const displayClasses = `desktop-picker-source ${isSelectedClass}`;
-
- return (
- <div
- className = { displayClasses }
- onClick = { this._onClick }
- onDoubleClick = { this._onDoubleClick }>
- <div className = 'desktop-source-preview-image-container'>
- <img
- className = 'desktop-source-preview-thumbnail'
- src = { this.props.source.thumbnail.toDataURL() } />
- </div>
- <div className = 'desktop-source-preview-label'>
- { this.props.source.name }
- </div>
- </div>
- );
- }
-
- /**
- * Invokes the passed in onClick callback.
- *
- * @returns {void}
- */
- _onClick() {
- this.props.onClick(this.props.source.id);
- }
-
- /**
- * Invokes the passed in onDoubleClick callback.
- *
- * @returns {void}
- */
- _onDoubleClick() {
- this.props.onDoubleClick(this.props.source.id);
- }
- }
-
- export default DesktopSourcePreview;
|