Source: ui/fullscreen_button.js

  1. /** @license
  2. * Copyright 2016 Google LLC
  3. * SPDX-License-Identifier: Apache-2.0
  4. */
  5. goog.provide('shaka.ui.FullscreenButton');
  6. goog.require('shaka.ui.Element');
  7. goog.require('shaka.ui.Enums');
  8. goog.require('shaka.ui.Locales');
  9. goog.require('shaka.ui.Localization');
  10. goog.require('shaka.util.Dom');
  11. /**
  12. * @extends {shaka.ui.Element}
  13. * @final
  14. * @export
  15. */
  16. shaka.ui.FullscreenButton = class extends shaka.ui.Element {
  17. /**
  18. * @param {!HTMLElement} parent
  19. * @param {!shaka.ui.Controls} controls
  20. */
  21. constructor(parent, controls) {
  22. super(parent, controls);
  23. /** @private {!HTMLButtonElement} */
  24. this.button_ = shaka.util.Dom.createButton();
  25. this.button_.classList.add('shaka-fullscreen-button');
  26. this.button_.classList.add('material-icons');
  27. // Don't show the button if fullscreen is not supported
  28. if (!document.fullscreenEnabled) {
  29. this.button_.classList.add('shaka-hidden');
  30. }
  31. this.button_.textContent = shaka.ui.Enums.MaterialDesignIcons.FULLSCREEN;
  32. this.parent.appendChild(this.button_);
  33. this.updateAriaLabel_();
  34. this.eventManager.listen(
  35. this.localization, shaka.ui.Localization.LOCALE_UPDATED, () => {
  36. this.updateAriaLabel_();
  37. });
  38. this.eventManager.listen(
  39. this.localization, shaka.ui.Localization.LOCALE_CHANGED, () => {
  40. this.updateAriaLabel_();
  41. });
  42. this.eventManager.listen(this.button_, 'click', async () => {
  43. await this.controls.toggleFullScreen();
  44. });
  45. this.eventManager.listen(document, 'fullscreenchange', () => {
  46. this.updateIcon_();
  47. this.updateAriaLabel_();
  48. });
  49. }
  50. /**
  51. * @private
  52. */
  53. updateAriaLabel_() {
  54. const LocIds = shaka.ui.Locales.Ids;
  55. const label = document.fullscreenElement ?
  56. LocIds.EXIT_FULL_SCREEN : LocIds.FULL_SCREEN;
  57. this.button_.setAttribute(shaka.ui.Constants.ARIA_LABEL,
  58. this.localization.resolve(label));
  59. }
  60. /**
  61. * @private
  62. */
  63. updateIcon_() {
  64. this.button_.textContent =
  65. document.fullscreenElement ?
  66. shaka.ui.Enums.MaterialDesignIcons.EXIT_FULLSCREEN :
  67. shaka.ui.Enums.MaterialDesignIcons.FULLSCREEN;
  68. }
  69. };
  70. /**
  71. * @implements {shaka.extern.IUIElement.Factory}
  72. * @final
  73. */
  74. shaka.ui.FullscreenButton.Factory = class {
  75. /** @override */
  76. create(rootElement, controls) {
  77. return new shaka.ui.FullscreenButton(rootElement, controls);
  78. }
  79. };
  80. shaka.ui.Controls.registerElement(
  81. 'fullscreen', new shaka.ui.FullscreenButton.Factory());