2017-04-17 21:02:36 +00:00
|
|
|
import AKDropdownMenu from '@atlaskit/dropdown-menu';
|
|
|
|
import ExpandIcon from '@atlaskit/icon/glyph/expand';
|
2017-03-29 17:43:30 +00:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
|
|
|
import { translate } from '../../base/i18n';
|
|
|
|
|
2017-04-17 21:02:36 +00:00
|
|
|
const EXPAND_ICON = <ExpandIcon label = 'expand' />;
|
|
|
|
|
2017-03-29 17:43:30 +00:00
|
|
|
/**
|
2017-04-17 21:02:36 +00:00
|
|
|
* React component for selecting a device from a select element. Wraps
|
|
|
|
* AKDropdownMenu with device selection specific logic.
|
2017-03-29 17:43:30 +00:00
|
|
|
*
|
|
|
|
* @extends Component
|
|
|
|
*/
|
|
|
|
class DeviceSelector extends Component {
|
|
|
|
/**
|
|
|
|
* DeviceSelector component's property types.
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
static propTypes = {
|
|
|
|
/**
|
|
|
|
* MediaDeviceInfos used for display in the select element.
|
|
|
|
*/
|
|
|
|
devices: React.PropTypes.array,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If false, will return a selector with no selection options.
|
|
|
|
*/
|
|
|
|
hasPermission: React.PropTypes.bool,
|
|
|
|
|
2017-04-17 21:02:36 +00:00
|
|
|
/**
|
|
|
|
* CSS class for the icon to the left of the dropdown trigger.
|
|
|
|
*/
|
|
|
|
icon: React.PropTypes.string,
|
|
|
|
|
2017-03-29 17:43:30 +00:00
|
|
|
/**
|
|
|
|
* If true, will render the selector disabled with a default selection.
|
|
|
|
*/
|
|
|
|
isDisabled: React.PropTypes.bool,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The translation key to display as a menu label.
|
|
|
|
*/
|
|
|
|
label: React.PropTypes.string,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The callback to invoke when a selection is made.
|
|
|
|
*/
|
|
|
|
onSelect: React.PropTypes.func,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The default device to display as selected.
|
|
|
|
*/
|
|
|
|
selectedDeviceId: React.PropTypes.string,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoked to obtain translated strings.
|
|
|
|
*/
|
|
|
|
t: React.PropTypes.func
|
2017-06-02 02:01:50 +00:00
|
|
|
};
|
2017-03-29 17:43:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes a new DeviceSelector instance.
|
|
|
|
*
|
|
|
|
* @param {Object} props - The read-only React Component props with which
|
|
|
|
* the new instance is to be initialized.
|
|
|
|
*/
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this._onSelect = this._onSelect.bind(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
|
|
|
render() {
|
|
|
|
if (!this.props.hasPermission) {
|
|
|
|
return this._renderNoPermission();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.props.devices.length) {
|
|
|
|
return this._renderNoDevices();
|
|
|
|
}
|
|
|
|
|
2017-04-17 21:02:36 +00:00
|
|
|
const items = this.props.devices.map(this._createDropdownItem);
|
2017-03-29 17:43:30 +00:00
|
|
|
const defaultSelected = items.find(item =>
|
|
|
|
item.value === this.props.selectedDeviceId
|
|
|
|
);
|
|
|
|
|
2017-04-17 21:02:36 +00:00
|
|
|
return this._createDropdown({
|
2017-03-29 17:43:30 +00:00
|
|
|
defaultSelected,
|
|
|
|
isDisabled: this.props.isDisabled,
|
|
|
|
items,
|
2017-04-21 15:58:34 +00:00
|
|
|
placeholder: this.props.t('deviceSelection.selectADevice')
|
2017-03-29 17:43:30 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-04-21 02:24:55 +00:00
|
|
|
* Creates a React Element for displaying the passed in text surrounded by
|
|
|
|
* two icons. The left icon is the icon class passed in through props and
|
|
|
|
* the right icon is AtlasKit ExpandIcon.
|
2017-04-17 21:02:36 +00:00
|
|
|
*
|
2017-04-21 02:24:55 +00:00
|
|
|
* @param {string} triggerText - The text to display within the element.
|
2017-04-17 21:02:36 +00:00
|
|
|
* @private
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
2017-04-21 02:24:55 +00:00
|
|
|
_createDropdownTrigger(triggerText) {
|
2017-04-17 21:02:36 +00:00
|
|
|
return (
|
2017-04-21 02:24:55 +00:00
|
|
|
<div className = 'device-selector-trigger'>
|
|
|
|
<span
|
|
|
|
className = { `device-selector-icon ${this.props.icon}` } />
|
|
|
|
<span className = 'device-selector-trigger-text'>
|
|
|
|
{ triggerText }
|
|
|
|
</span>
|
|
|
|
{ EXPAND_ICON }
|
|
|
|
</div>
|
2017-04-17 21:02:36 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an object in the format expected by AKDropdownMenu for an option.
|
2017-03-29 17:43:30 +00:00
|
|
|
*
|
|
|
|
* @param {MediaDeviceInfo} device - An object with a label and a deviceId.
|
|
|
|
* @private
|
|
|
|
* @returns {Object} The passed in media device description converted to a
|
2017-04-17 21:02:36 +00:00
|
|
|
* format recognized as a valid AKDropdownMenu item.
|
2017-03-29 17:43:30 +00:00
|
|
|
*/
|
2017-04-17 21:02:36 +00:00
|
|
|
_createDropdownItem(device) {
|
2017-03-29 17:43:30 +00:00
|
|
|
return {
|
|
|
|
content: device.label,
|
|
|
|
value: device.deviceId
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-04-25 16:15:15 +00:00
|
|
|
* Creates a AKDropdownMenu Component using passed in props and options. If
|
|
|
|
* the dropdown needs to be disabled, then only the AKDropdownMenu trigger
|
|
|
|
* element is returned to simulate a disabled state.
|
2017-03-29 17:43:30 +00:00
|
|
|
*
|
2017-04-17 21:02:36 +00:00
|
|
|
* @param {Object} options - Additional configuration for display.
|
2017-03-29 17:43:30 +00:00
|
|
|
* @param {Object} options.defaultSelected - The option that should be set
|
|
|
|
* as currently chosen.
|
2017-04-25 16:15:15 +00:00
|
|
|
* @param {boolean} options.isDisabled - If true, only the AKDropdownMenu
|
|
|
|
* trigger component will be returned to simulate a disabled dropdown.
|
2017-03-29 17:43:30 +00:00
|
|
|
* @param {Array} options.items - All the selectable options to display.
|
|
|
|
* @param {string} options.placeholder - The translation key to display when
|
|
|
|
* no selection has been made.
|
|
|
|
* @private
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
2017-04-17 21:02:36 +00:00
|
|
|
_createDropdown(options) {
|
|
|
|
const triggerText
|
|
|
|
= (options.defaultSelected && options.defaultSelected.content)
|
|
|
|
|| options.placeholder;
|
2017-04-25 16:15:15 +00:00
|
|
|
const trigger = this._createDropdownTrigger(triggerText);
|
|
|
|
|
|
|
|
if (options.isDisabled) {
|
|
|
|
return (
|
|
|
|
<div className = 'device-selector-trigger-disabled'>
|
|
|
|
{ trigger }
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2017-04-17 21:02:36 +00:00
|
|
|
|
2017-03-29 17:43:30 +00:00
|
|
|
return (
|
2017-04-17 21:02:36 +00:00
|
|
|
<AKDropdownMenu
|
2017-03-29 17:43:30 +00:00
|
|
|
items = { [ { items: options.items || [] } ] }
|
2017-04-21 02:24:55 +00:00
|
|
|
onItemActivated = { this._onSelect }
|
|
|
|
shouldFitContainer = { true }>
|
2017-04-25 16:15:15 +00:00
|
|
|
{ trigger }
|
2017-04-17 21:02:36 +00:00
|
|
|
</AKDropdownMenu>
|
2017-03-29 17:43:30 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invokes the passed in callback to notify of selection changes.
|
|
|
|
*
|
2017-04-17 21:02:36 +00:00
|
|
|
* @param {Object} selection - Event from choosing a AKDropdownMenu option.
|
2017-03-29 17:43:30 +00:00
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onSelect(selection) {
|
2017-04-17 21:02:36 +00:00
|
|
|
const newDeviceId = selection.item.value;
|
|
|
|
|
|
|
|
if (this.props.selectedDeviceId !== newDeviceId) {
|
|
|
|
this.props.onSelect(selection.item.value);
|
|
|
|
}
|
2017-03-29 17:43:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a Select Component that is disabled and has a placeholder
|
|
|
|
* indicating there are no devices to select.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
|
|
|
_renderNoDevices() {
|
2017-04-17 21:02:36 +00:00
|
|
|
return this._createDropdown({
|
2017-03-29 17:43:30 +00:00
|
|
|
isDisabled: true,
|
2017-04-17 21:02:36 +00:00
|
|
|
placeholder: this.props.t('settings.noDevice')
|
2017-03-29 17:43:30 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-04-17 21:02:36 +00:00
|
|
|
* Creates a AKDropdownMenu Component that is disabled and has a placeholder
|
|
|
|
* stating there is no permission to display the devices.
|
2017-03-29 17:43:30 +00:00
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
|
|
|
_renderNoPermission() {
|
2017-04-17 21:02:36 +00:00
|
|
|
return this._createDropdown({
|
2017-03-29 17:43:30 +00:00
|
|
|
isDisabled: true,
|
2017-04-25 16:15:15 +00:00
|
|
|
placeholder: this.props.t('deviceSelection.noPermission')
|
2017-03-29 17:43:30 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default translate(DeviceSelector);
|