| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400 | 
							- // @flow
 - 
 - import Tabs from '@atlaskit/tabs';
 - import React, { PureComponent } from 'react';
 - import { connect } from '../../base/redux';
 - import type { Dispatch } from 'redux';
 - 
 - import { Dialog, hideDialog } from '../../base/dialog';
 - import { translate } from '../../base/i18n';
 - 
 - import DesktopPickerPane from './DesktopPickerPane';
 - import { obtainDesktopSources } from '../functions';
 - 
 - /**
 -  * The size of the requested thumbnails.
 -  *
 -  * @type {Object}
 -  */
 - const THUMBNAIL_SIZE = {
 -     height: 300,
 -     width: 300
 - };
 - 
 - /**
 -  * The sources polling interval in ms.
 -  *
 -  * @type {int}
 -  */
 - const UPDATE_INTERVAL = 2000;
 - 
 - /**
 -  * The default selected tab.
 -  *
 -  * @type {string}
 -  */
 - const DEFAULT_TAB_TYPE = 'screen';
 - 
 - const TAB_LABELS = {
 -     screen: 'dialog.yourEntireScreen',
 -     window: 'dialog.applicationWindow'
 - };
 - 
 - const VALID_TYPES = Object.keys(TAB_LABELS);
 - 
 - /**
 -  * The type of the React {@code Component} props of {@link DesktopPicker}.
 -  */
 - type Props = {
 - 
 -     /**
 -      * An array with desktop sharing sources to be displayed.
 -      */
 -     desktopSharingSources: Array<string>,
 - 
 -     /**
 -      * Used to request DesktopCapturerSources.
 -      */
 -     dispatch: Dispatch<any>,
 - 
 -     /**
 -      * The callback to be invoked when the component is closed or when a
 -      * DesktopCapturerSource has been chosen.
 -      */
 -     onSourceChoose: Function,
 - 
 -     /**
 -      * Used to obtain translations.
 -      */
 -     t: Function
 - };
 - 
 - /**
 -  * The type of the React {@code Component} state of {@link DesktopPicker}.
 -  */
 - type State = {
 - 
 -     /**
 -      * The currently higlighted DesktopCapturerSource.
 -      */
 -     selectedSource: Object,
 - 
 -     /**
 -      * The desktop source type currently being displayed.
 -      */
 -     selectedTab: number,
 - 
 -     /**
 -      * An object containing all the DesktopCapturerSources.
 -      */
 -     sources: Object,
 - 
 -     /**
 -      * The desktop source types to fetch previews for.
 -      */
 -     types: Array<string>
 - };
 - 
 - 
 - /**
 -  * React component for DesktopPicker.
 -  *
 -  * @extends Component
 -  */
 - class DesktopPicker extends PureComponent<Props, State> {
 -     /**
 -      * Implements React's {@link Component#getDerivedStateFromProps()}.
 -      *
 -      * @inheritdoc
 -      */
 -     static getDerivedStateFromProps(props) {
 -         return {
 -             types: DesktopPicker._getValidTypes(props.desktopSharingSources)
 -         };
 -     }
 - 
 -     /**
 -      * Extracts only the valid types from the passed {@code types}.
 -      *
 -      * @param {Array<string>} types - The types to filter.
 -      * @private
 -      * @returns {Array<string>} The filtered types.
 -      */
 -     static _getValidTypes(types = []) {
 -         return types.filter(
 -             type => VALID_TYPES.includes(type));
 -     }
 - 
 -     _poller = null;
 - 
 -     state = {
 -         selectedSource: {},
 -         selectedTab: 0,
 -         sources: {},
 -         types: []
 -     };
 - 
 -     /**
 -      * Stores the type of the selected tab.
 -      *
 -      * @type {string}
 -      */
 -     _selectedTabType = DEFAULT_TAB_TYPE;
 - 
 -     /**
 -      * Initializes a new DesktopPicker instance.
 -      *
 -      * @param {Object} props - The read-only properties with which the new
 -      * instance is to be initialized.
 -      */
 -     constructor(props: 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._onTabSelected = this._onTabSelected.bind(this);
 -         this._updateSources = this._updateSources.bind(this);
 - 
 -         this.state.types
 -             = DesktopPicker._getValidTypes(this.props.desktopSharingSources);
 -     }
 - 
 -     /**
 -      * Starts polling.
 -      *
 -      * @inheritdoc
 -      * @returns {void}
 -      */
 -     componentDidMount() {
 -         this._startPolling();
 -     }
 - 
 -     /**
 -      * Clean up component and DesktopCapturerSource store state.
 -      *
 -      * @inheritdoc
 -      */
 -     componentWillUnmount() {
 -         this._stopPolling();
 -     }
 - 
 -     /**
 -      * Implements React's {@link Component#render()}.
 -      *
 -      * @inheritdoc
 -      */
 -     render() {
 -         return (
 -             <Dialog
 -                 isModal = { false }
 -                 okDisabled = { Boolean(!this.state.selectedSource.id) }
 -                 okKey = 'dialog.Share'
 -                 onCancel = { this._onCloseModal }
 -                 onSubmit = { this._onSubmit }
 -                 titleKey = 'dialog.shareYourScreen'
 -                 width = 'medium' >
 -                 { this._renderTabs() }
 -             </Dialog>
 -         );
 -     }
 - 
 -     /**
 -      * Computates the selected source.
 -      *
 -      * @param {Object} sources - The available sources.
 -      * @returns {Object} The selectedSource value.
 -      */
 -     _getSelectedSource(sources = {}) {
 -         const { selectedSource } = this.state;
 - 
 -         /**
 -          * If there are no sources for this type (or no sources for any type)
 -          * we can't select anything.
 -          */
 -         if (!Array.isArray(sources[this._selectedTabType])
 -                 || sources[this._selectedTabType].length <= 0) {
 -             return {};
 -         }
 - 
 -         /**
 -          * Select the first available source for this type in the following
 -          * scenarios:
 -          * 1) Nothing is yet selected.
 -          * 2) Tab change.
 -          * 3) The selected source is no longer available.
 -          */
 -         if (!selectedSource // scenario 1)
 -                 || selectedSource.type !== this._selectedTabType // scenario 2)
 -                 || !sources[this._selectedTabType].some( // scenario 3)
 -                         source => source.id === selectedSource.id)) {
 -             return {
 -                 id: sources[this._selectedTabType][0].id,
 -                 type: this._selectedTabType
 -             };
 -         }
 - 
 -         /**
 -          * For all other scenarios don't change the selection.
 -          */
 -         return selectedSource;
 -     }
 - 
 -     _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
 -             }
 -         });
 -     }
 - 
 -     _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);
 -     }
 - 
 -     _onTabSelected: () => void;
 - 
 -     /**
 -      * Stores the selected tab and updates the selected source via
 -      * {@code _getSelectedSource}.
 -      *
 -      * @param {Object} tab - The configuration passed into atlaskit tabs to
 -      * describe how to display the selected tab.
 -      * @param {number} tabIndex - The index of the tab within the array of
 -      * displayed tabs.
 -      * @returns {void}
 -      */
 -     _onTabSelected(tab, tabIndex) { // eslint-disable-line no-unused-vars
 -         const { types, sources } = this.state;
 - 
 -         this._selectedTabType = types[tabIndex];
 -         this.setState({
 -             selectedSource: this._getSelectedSource(sources),
 -             selectedTab: tabIndex
 -         });
 -     }
 - 
 -     /**
 -      * Configures and renders the tabs for display.
 -      *
 -      * @private
 -      * @returns {ReactElement}
 -      */
 -     _renderTabs() {
 -         const { selectedSource, sources, types } = this.state;
 -         const { t } = this.props;
 -         const tabs
 -             = types.map(
 -                 type => {
 -                     return {
 -                         content: <DesktopPickerPane
 -                             key = { type }
 -                             onClick = { this._onPreviewClick }
 -                             onDoubleClick = { this._onCloseModal }
 -                             selectedSourceId = { selectedSource.id }
 -                             sources = { sources[type] }
 -                             type = { type } />,
 -                         label: t(TAB_LABELS[type])
 -                     };
 -                 });
 - 
 -         return (
 -             <Tabs
 -                 onSelect = { this._onTabSelected }
 -                 selected = { this.state.selectedTab }
 -                 tabs = { tabs } />);
 -     }
 - 
 -     /**
 -      * Create an interval to update knwon available DesktopCapturerSources.
 -      *
 -      * @private
 -      * @returns {void}
 -      */
 -     _startPolling() {
 -         this._stopPolling();
 -         this._updateSources();
 -         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;
 - 
 -     /**
 -      * Obtains the desktop sources and updates state with them.
 -      *
 -      * @private
 -      * @returns {void}
 -      */
 -     _updateSources() {
 -         const { types } = this.state;
 - 
 -         if (types.length > 0) {
 -             obtainDesktopSources(
 -                 this.state.types,
 -                 { thumbnailSize: THUMBNAIL_SIZE }
 -             )
 -             .then(sources => {
 -                 const selectedSource = this._getSelectedSource(sources);
 - 
 -                 // TODO: Maybe check if we have stopped the timer and unmounted
 -                 // the component.
 -                 this.setState({
 -                     sources,
 -                     selectedSource
 -                 });
 -             })
 -             .catch(() => { /* ignore */ });
 -         }
 -     }
 - }
 - 
 - export default translate(connect()(DesktopPicker));
 
 
  |