mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-14 15:56:38 +03:00
e39defb6f7
To eliminate `* @suppress {missingRequire}` it was necessary to create a
new class with the constants and deprecate the old ones. That's why this
change is feat.
143 lines
3.5 KiB
JavaScript
143 lines
3.5 KiB
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
|
|
goog.provide('shaka.ui.VolumeBar');
|
|
|
|
goog.require('goog.asserts');
|
|
goog.require('shaka.ads.Utils');
|
|
goog.require('shaka.ui.Controls');
|
|
goog.require('shaka.ui.Locales');
|
|
goog.require('shaka.ui.Localization');
|
|
goog.require('shaka.ui.RangeElement');
|
|
|
|
|
|
/**
|
|
* @extends {shaka.ui.RangeElement}
|
|
* @final
|
|
* @export
|
|
*/
|
|
shaka.ui.VolumeBar = class extends shaka.ui.RangeElement {
|
|
/**
|
|
* @param {!HTMLElement} parent
|
|
* @param {!shaka.ui.Controls} controls
|
|
*/
|
|
constructor(parent, controls) {
|
|
super(parent, controls,
|
|
['shaka-volume-bar-container'], ['shaka-volume-bar']);
|
|
|
|
/** @private {!shaka.extern.UIConfiguration} */
|
|
this.config_ = this.controls.getConfig();
|
|
|
|
// We use a range of 100 to avoid problems with Firefox.
|
|
// See https://github.com/shaka-project/shaka-player/issues/3987
|
|
this.setRange(0, 100);
|
|
|
|
this.eventManager.listen(this.video,
|
|
'volumechange',
|
|
() => this.onPresentationVolumeChange_());
|
|
|
|
this.eventManager.listen(this.adManager,
|
|
shaka.ads.Utils.AD_VOLUME_CHANGED,
|
|
() => this.onAdVolumeChange_());
|
|
|
|
this.eventManager.listen(this.adManager,
|
|
shaka.ads.Utils.AD_MUTED,
|
|
() => this.onAdVolumeChange_());
|
|
|
|
this.eventManager.listen(this.adManager,
|
|
shaka.ads.Utils.AD_STOPPED,
|
|
() => this.onPresentationVolumeChange_());
|
|
|
|
this.eventManager.listen(this.localization,
|
|
shaka.ui.Localization.LOCALE_UPDATED,
|
|
() => this.updateAriaLabel_());
|
|
|
|
this.eventManager.listen(this.localization,
|
|
shaka.ui.Localization.LOCALE_CHANGED,
|
|
() => this.updateAriaLabel_());
|
|
|
|
// Initialize volume display and label.
|
|
this.onPresentationVolumeChange_();
|
|
this.updateAriaLabel_();
|
|
|
|
if (this.ad) {
|
|
// There was already an ad.
|
|
this.onChange();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Update the video element's state to match the input element's state.
|
|
* Called by the base class when the input element changes.
|
|
*
|
|
* @override
|
|
*/
|
|
onChange() {
|
|
if (this.ad && this.ad.isLinear()) {
|
|
this.ad.setVolume(this.getValue() / 100);
|
|
} else {
|
|
this.video.volume = this.getValue() / 100;
|
|
if (this.video.volume == 0) {
|
|
this.video.muted = true;
|
|
} else {
|
|
this.video.muted = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
/** @private */
|
|
onPresentationVolumeChange_() {
|
|
if (this.video.muted) {
|
|
this.setValue(0);
|
|
} else {
|
|
this.setValue(this.video.volume * 100);
|
|
}
|
|
|
|
this.updateColors_();
|
|
}
|
|
|
|
/** @private */
|
|
onAdVolumeChange_() {
|
|
goog.asserts.assert(this.ad != null,
|
|
'This.ad should exist at this point!');
|
|
|
|
const volume = this.ad.getVolume();
|
|
this.setValue(volume * 100);
|
|
this.updateColors_();
|
|
}
|
|
|
|
/** @private */
|
|
updateColors_() {
|
|
const colors = this.config_.volumeBarColors;
|
|
const gradient = ['to right'];
|
|
gradient.push(colors.level + this.getValue() + '%');
|
|
gradient.push(colors.base + this.getValue() + '%');
|
|
gradient.push(colors.base + '100%');
|
|
|
|
this.container.style.background =
|
|
'linear-gradient(' + gradient.join(',') + ')';
|
|
}
|
|
|
|
/** @private */
|
|
updateAriaLabel_() {
|
|
this.bar.ariaLabel = this.localization.resolve(shaka.ui.Locales.Ids.VOLUME);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* @implements {shaka.extern.IUIElement.Factory}
|
|
* @final
|
|
*/
|
|
shaka.ui.VolumeBar.Factory = class {
|
|
/** @override */
|
|
create(rootElement, controls) {
|
|
return new shaka.ui.VolumeBar(rootElement, controls);
|
|
}
|
|
};
|
|
|
|
shaka.ui.Controls.registerElement('volume', new shaka.ui.VolumeBar.Factory());
|