blob: 4486c6dd5a3dcc17aec1e93817a29210ef64daa3 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @fileoverview
* 'media-picker' handles showing the dropdown allowing users to select the
* default camera/microphone.
*/
import 'chrome://resources/cr_elements/md_select_css.m.js';
import '../settings_shared_css.js';
import '../settings_vars_css.js';
import {WebUIListenerMixin} from 'chrome://resources/js/web_ui_listener_mixin.js';
import {html, microTask, PolymerElement} from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js';
import {getTemplate} from './media_picker.html.js';
import {SiteSettingsMixin} from './site_settings_mixin.js';
import {MediaPickerEntry} from './site_settings_prefs_browser_proxy.js';
interface MediaPickerElement {
$: {
mediaPicker: HTMLSelectElement,
picker: HTMLElement,
};
}
const MediaPickerElementBase =
SiteSettingsMixin(WebUIListenerMixin(PolymerElement));
class MediaPickerElement extends MediaPickerElementBase {
static get is() {
return 'media-picker';
}
static get template() {
return getTemplate();
}
static get properties() {
return {
/**
* The type of media picker, either 'camera' or 'mic'.
*/
type: String,
/** Label for a11y purposes. */
label: String,
/**
* The devices available to pick from.
*/
devices: Array,
};
}
type: string;
label: string;
devices: Array<MediaPickerEntry>;
ready() {
super.ready();
this.addWebUIListener(
'updateDevicesMenu',
(type: string, devices: Array<MediaPickerEntry>,
defaultDevice: string) =>
this.updateDevicesMenu_(type, devices, defaultDevice));
this.browserProxy.getDefaultCaptureDevices(this.type);
}
/**
* Updates the microphone/camera devices menu with the given entries.
* @param type The device type.
* @param devices List of available devices.
* @param defaultDevice The unique id of the current default device.
*/
private updateDevicesMenu_(
type: string, devices: Array<MediaPickerEntry>, defaultDevice: string) {
if (type !== this.type) {
return;
}
this.$.picker.hidden = devices.length === 0;
if (devices.length > 0) {
this.devices = devices;
// Wait for <select> to be populated.
microTask.run(() => {
this.$.mediaPicker.value = defaultDevice;
});
}
}
/**
* A handler for when an item is selected in the media picker.
*/
private onChange_() {
this.browserProxy.setDefaultCaptureDevice(
this.type, this.$.mediaPicker.value);
}
}
customElements.define(MediaPickerElement.is, MediaPickerElement);