import PropTypes from 'prop-types'; 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 = { /** * The callback to invoke when the component is clicked. The id of * the DesktopCapturerSource will be passed in. */ onClick: PropTypes.func, /** * The callback to invoke when the component is double clicked. The id * of the DesktopCapturerSource will be passed in. */ onDoubleClick: PropTypes.func, /** * The indicator which determines whether this DesktopSourcePreview is * selected. If true, the 'is-selected' CSS class will be added to the * Component. */ selected: PropTypes.bool, /** * The DesktopCapturerSource to display. */ source: PropTypes.object, /** * The source type of the DesktopCapturerSources to display. */ type: PropTypes.string }; /** * 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 selectedClass = this.props.selected ? 'is-selected' : ''; const displayClasses = `desktop-picker-source ${selectedClass}`; return (
{ this.props.source.name }
); } /** * Invokes the passed in onClick callback. * * @returns {void} */ _onClick() { const { source, type } = this.props; this.props.onClick(source.id, type); } /** * Invokes the passed in onDoubleClick callback. * * @returns {void} */ _onDoubleClick() { const { source, type } = this.props; this.props.onDoubleClick(source.id, type); } } export default DesktopSourcePreview;