Source: ui/fullscreen_button.js

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