| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338 | 
							- // @flow
 - 
 - import Tabs from '@atlaskit/tabs';
 - import PropTypes from 'prop-types';
 - import React, { Component } from 'react';
 - import { connect } from 'react-redux';
 - 
 - import { Dialog, hideDialog } from '../../base/dialog';
 - import { translate } from '../../base/i18n';
 - 
 - import { obtainDesktopSources, resetDesktopSources } from '../actions';
 - import DesktopPickerPane from './DesktopPickerPane';
 - 
 - const THUMBNAIL_SIZE = {
 -     height: 300,
 -     width: 300
 - };
 - const UPDATE_INTERVAL = 1000;
 - 
 - type TabConfiguration = {
 -     defaultSelected?: boolean,
 -     label: string,
 -     type: string
 - };
 - const TAB_CONFIGURATIONS: Array<TabConfiguration> = [
 -     {
 -         /**
 -          * The indicator which determines whether this tab configuration is
 -          * selected by default.
 -          *
 -          * @type {boolean}
 -          */
 -         defaultSelected: true,
 -         label: 'dialog.yourEntireScreen',
 -         type: 'screen'
 -     },
 -     {
 -         label: 'dialog.applicationWindow',
 -         type: 'window'
 -     }
 - ];
 - const VALID_TYPES = TAB_CONFIGURATIONS.map(c => c.type);
 - 
 - /**
 -  * React component for DesktopPicker.
 -  *
 -  * @extends Component
 -  */
 - class DesktopPicker extends Component {
 -     /**
 -      * Default values for DesktopPicker component's properties.
 -      *
 -      * @static
 -      */
 -     static defaultProps = {
 -         options: {}
 -     };
 - 
 -     /**
 -      * DesktopPicker component's property types.
 -      *
 -      * @static
 -      */
 -     static propTypes = {
 -         /**
 -          * Used to request DesktopCapturerSources.
 -          */
 -         dispatch: PropTypes.func,
 - 
 -         /**
 -          * The callback to be invoked when the component is closed or when
 -          * a DesktopCapturerSource has been chosen.
 -          */
 -         onSourceChoose: PropTypes.func,
 - 
 -         /**
 -          * An object with options related to desktop sharing.
 -          */
 -         options: PropTypes.object,
 - 
 -         /**
 -          * An object with arrays of DesktopCapturerSources. The key should be
 -          * the source type.
 -          */
 -         sources: PropTypes.object,
 - 
 -         /**
 -          * Used to obtain translations.
 -          */
 -         t: PropTypes.func
 -     };
 - 
 -     _poller = null;
 - 
 -     state = {
 -         selectedSource: {},
 -         tabsToPopulate: [],
 -         typesToFetch: []
 -     };
 - 
 -     /**
 -      * Initializes a new DesktopPicker instance.
 -      *
 -      * @param {Object} props - The read-only properties with which the new
 -      * instance is to be initialized.
 -      */
 -     constructor(props) {
 -         super(props);
 - 
 -         // Bind event handlers so they are only bound once per instance.
 -         this._onCloseModal = this._onCloseModal.bind(this);
 -         this._onPreviewClick = this._onPreviewClick.bind(this);
 -         this._onSubmit = this._onSubmit.bind(this);
 -         this._updateSources = this._updateSources.bind(this);
 -     }
 - 
 -     /**
 -      * Perform an immediate update request for DesktopCapturerSources and begin
 -      * requesting updates at an interval.
 -      *
 -      * @inheritdoc
 -      */
 -     componentWillMount() {
 -         const { desktopSharingSources } = this.props.options;
 - 
 -         this._onSourceTypesConfigChanged(
 -             desktopSharingSources);
 -         this._updateSources();
 -         this._startPolling();
 -     }
 - 
 -     /**
 -      * Notifies this mounted React Component that it will receive new props.
 -      * Sets a default selected source if one is not already set.
 -      *
 -      * @inheritdoc
 -      * @param {Object} nextProps - The read-only React Component props that this
 -      * instance will receive.
 -      * @returns {void}
 -      */
 -     componentWillReceiveProps(nextProps) {
 -         if (!this.state.selectedSource.id
 -                 && nextProps.sources.screen.length) {
 -             this.setState({
 -                 selectedSource: {
 -                     id: nextProps.sources.screen[0].id,
 -                     type: 'screen'
 -                 }
 -             });
 -         }
 - 
 -         const { desktopSharingSources } = this.props.options;
 - 
 -         this._onSourceTypesConfigChanged(
 -             desktopSharingSources);
 -     }
 - 
 -     /**
 -      * Clean up component and DesktopCapturerSource store state.
 -      *
 -      * @inheritdoc
 -      */
 -     componentWillUnmount() {
 -         this._stopPolling();
 -         this.props.dispatch(resetDesktopSources());
 -     }
 - 
 -     /**
 -      * Implements React's {@link Component#render()}.
 -      *
 -      * @inheritdoc
 -      */
 -     render() {
 -         return (
 -             <Dialog
 -                 isModal = { false }
 -                 okTitleKey = 'dialog.Share'
 -                 onCancel = { this._onCloseModal }
 -                 onSubmit = { this._onSubmit }
 -                 titleKey = 'dialog.shareYourScreen'
 -                 width = 'medium' >
 -                 { this._renderTabs() }
 -             </Dialog>
 -         );
 -     }
 - 
 -     _onCloseModal: (?string, string) => void;
 - 
 -     /**
 -      * Dispatches an action to hide the DesktopPicker and invokes the passed in
 -      * callback with a selectedSource, if any.
 -      *
 -      * @param {string} [id] - The id of the DesktopCapturerSource to pass into
 -      * the onSourceChoose callback.
 -      * @param {string} type - The type of the DesktopCapturerSource to pass into
 -      * the onSourceChoose callback.
 -      * @returns {void}
 -      */
 -     _onCloseModal(id = '', type) {
 -         this.props.onSourceChoose(id, type);
 -         this.props.dispatch(hideDialog());
 -     }
 - 
 -     _onPreviewClick: (string, string) => void;
 - 
 -     /**
 -      * Sets the currently selected DesktopCapturerSource.
 -      *
 -      * @param {string} id - The id of DesktopCapturerSource.
 -      * @param {string} type - The type of DesktopCapturerSource.
 -      * @returns {void}
 -      */
 -     _onPreviewClick(id, type) {
 -         this.setState({
 -             selectedSource: {
 -                 id,
 -                 type
 -             }
 -         });
 -     }
 - 
 -     /**
 -      * Handles changing of allowed desktop sharing source types.
 -      *
 -      * @param {Array<string>} desktopSharingSourceTypes - The types that will be
 -      * fetched and displayed.
 -      * @returns {void}
 -      */
 -     _onSourceTypesConfigChanged(desktopSharingSourceTypes = []) {
 -         const tabsToPopulate
 -             = TAB_CONFIGURATIONS.filter(({ type }) =>
 -                 desktopSharingSourceTypes.includes(type)
 -                     && VALID_TYPES.includes(type));
 - 
 -         this.setState({
 -             tabsToPopulate,
 -             typesToFetch: tabsToPopulate.map(c => c.type)
 -         });
 -     }
 - 
 -     _onSubmit: () => void;
 - 
 -     /**
 -      * Request to close the modal and execute callbacks with the selected source
 -      * id.
 -      *
 -      * @returns {void}
 -      */
 -     _onSubmit() {
 -         const { id, type } = this.state.selectedSource;
 - 
 -         this._onCloseModal(id, type);
 -     }
 - 
 -     /**
 -      * Configures and renders the tabs for display.
 -      *
 -      * @private
 -      * @returns {ReactElement}
 -      */
 -     _renderTabs() {
 -         const { selectedSource } = this.state;
 -         const { sources, t } = this.props;
 -         const tabs
 -             = this.state.tabsToPopulate.map(
 -                 ({ defaultSelected, label, type }) => {
 -                     return {
 -                         content: <DesktopPickerPane
 -                             key = { type }
 -                             onClick = { this._onPreviewClick }
 -                             onDoubleClick = { this._onCloseModal }
 -                             selectedSourceId = { selectedSource.id }
 -                             sources = { sources[type] || [] }
 -                             type = { type } />,
 -                         defaultSelected,
 -                         label: t(label)
 -                     };
 -                 });
 - 
 -         return <Tabs tabs = { tabs } />;
 -     }
 - 
 -     /**
 -      * Create an interval to update knwon available DesktopCapturerSources.
 -      *
 -      * @private
 -      * @returns {void}
 -      */
 -     _startPolling() {
 -         this._stopPolling();
 -         this._poller = window.setInterval(this._updateSources, UPDATE_INTERVAL);
 -     }
 - 
 -     /**
 -      * Cancels the interval to update DesktopCapturerSources.
 -      *
 -      * @private
 -      * @returns {void}
 -      */
 -     _stopPolling() {
 -         window.clearInterval(this._poller);
 -         this._poller = null;
 -     }
 - 
 -     _updateSources: () => void;
 - 
 -     /**
 -      * Dispatches an action to get currently available DesktopCapturerSources.
 -      *
 -      * @private
 -      * @returns {void}
 -      */
 -     _updateSources() {
 -         this.props.dispatch(obtainDesktopSources(
 -             this.state.typesToFetch,
 -             {
 -                 THUMBNAIL_SIZE
 -             }
 -         ));
 -     }
 - }
 - 
 - /**
 -  * Maps (parts of) the Redux state to the associated DesktopPicker's props.
 -  *
 -  * @param {Object} state - Redux state.
 -  * @private
 -  * @returns {{
 -  *     sources: Object
 -  * }}
 -  */
 - function _mapStateToProps(state) {
 -     return {
 -         sources: state['features/desktop-picker']
 -     };
 - }
 - 
 - export default translate(connect(_mapStateToProps)(DesktopPicker));
 
 
  |