Files
shaka-player/ui/playback_rate_selection.js
T
Joey Parrish f539147d48 fix: Correct license headers in compiled output
This fixes all the license headers in the main library, which corrects
the appearance of the main license in the compiled output.

It seems that the `!` in the header forces the compiler to keep it in
the output.  I believe older compiler releases did this purely based
on `@license`.

Issue #2638

Change-Id: I7f0e918caad10c9af689c9d07672b7fe9be7b2f3
2020-06-09 16:05:09 -07:00

144 lines
4.5 KiB
JavaScript

/*! @license
* Shaka Player
* Copyright 2016 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
goog.provide('shaka.ui.PlaybackRateSelection');
goog.require('shaka.ui.Enums');
goog.require('shaka.ui.Locales');
goog.require('shaka.ui.Localization');
goog.require('shaka.ui.OverflowMenu');
goog.require('shaka.ui.SettingsMenu');
/**
* @extends {shaka.ui.SettingsMenu}
* @final
* @export
*/
shaka.ui.PlaybackRateSelection = class extends shaka.ui.SettingsMenu {
/**
* @param {!HTMLElement} parent
* @param {!shaka.ui.Controls} controls
*/
constructor(parent, controls) {
super(parent, controls, shaka.ui.Enums.MaterialDesignIcons.PLAYBACK_RATE);
this.button.classList.add('shaka-playbackrate-button');
this.menu.classList.add('shaka-playback-rates');
this.eventManager.listen(
this.localization, shaka.ui.Localization.LOCALE_UPDATED, () => {
this.updateLocalizedStrings_();
});
this.eventManager.listen(
this.localization, shaka.ui.Localization.LOCALE_CHANGED, () => {
this.updateLocalizedStrings_();
});
this.eventManager.listen(this.player, 'ratechange', () => {
this.updatePlaybackRateSelection_(this.player.getPlaybackRate());
});
/** @type {!Map.<string, number>} */
this.playbackRates_ = new Map([
['0.5x', 0.5],
['0.75x', 0.75],
['1x', 1],
['1.25x', 1.25],
['1.5x', 1.5],
['1.75x', 1.75],
['2x', 2],
]);
// Set up all the strings in the user's preferred language.
this.updateLocalizedStrings_();
this.addPlaybackRates_();
this.updatePlaybackRateSelection_(this.player.getPlaybackRate());
}
/**
* @private
*/
updateLocalizedStrings_() {
const LocIds = shaka.ui.Locales.Ids;
this.backButton.setAttribute(shaka.ui.Constants.ARIA_LABEL,
this.localization.resolve(LocIds.BACK));
this.button.setAttribute(shaka.ui.Constants.ARIA_LABEL,
this.localization.resolve(LocIds.PLAYBACK_RATE));
this.nameSpan.textContent = this.localization.resolve(LocIds.PLAYBACK_RATE);
this.backSpan.textContent = this.localization.resolve(LocIds.PLAYBACK_RATE);
}
/**
* Update checkmark icon and related class and attribute for the chosen rate
* button.
* @param {number} rate The video playback rate.
* @private
*/
updatePlaybackRateSelection_(rate) {
// Remove the old checkmark icon and related tags and classes if it exists.
const checkmarkIcon = shaka.ui.Utils.getDescendantIfExists(
this.menu, 'material-icons-round shaka-chosen-item');
if (checkmarkIcon) {
const previouslySelectedButton = checkmarkIcon.parentElement;
previouslySelectedButton.removeAttribute('aria-selected');
const previouslySelectedSpan =
previouslySelectedButton.getElementsByTagName('span')[0];
previouslySelectedSpan.classList.remove('shaka-chosen-item');
previouslySelectedButton.removeChild(checkmarkIcon);
}
// Find the button that represents the newly selected playback rate.
// Add the checkmark icon, related tags and classes to the newly selected
// button.
const span = Array.from(this.menu.querySelectorAll('span')).find((el) => {
return this.playbackRates_.get(el.textContent) == rate;
});
if (span) {
const button = span.parentElement;
button.appendChild(shaka.ui.Utils.checkmarkIcon());
button.setAttribute('aria-selected', 'true');
span.classList.add('shaka-chosen-item');
}
// Set the label to display the current playback rate in the overflow menu,
// in the format of '1x', '1.5x', etc.
this.currentSelection.textContent = rate + 'x';
}
/** @private */
addPlaybackRates_() {
for (const rateStr of this.playbackRates_.keys()) {
const button = shaka.util.Dom.createButton();
const span = shaka.util.Dom.createHTMLElement('span');
span.textContent = rateStr;
button.appendChild(span);
this.eventManager.listen(button, 'click', () => {
this.video.playbackRate = this.playbackRates_.get(rateStr);
});
this.menu.appendChild(button);
}
shaka.ui.Utils.focusOnTheChosenItem(this.menu);
}
};
/**
* @implements {shaka.extern.IUIElement.Factory}
* @final
*/
shaka.ui.PlaybackRateSelection.Factory = class {
/** @override */
create(rootElement, controls) {
return new shaka.ui.PlaybackRateSelection(rootElement, controls);
}
};
shaka.ui.OverflowMenu.registerElement(
'playback_rate', new shaka.ui.PlaybackRateSelection.Factory());