Source: ui/mute_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.MuteButton');
  7. goog.require('shaka.ads.AdManager');
  8. goog.require('shaka.ui.Controls');
  9. goog.require('shaka.ui.Element');
  10. goog.require('shaka.ui.Enums');
  11. goog.require('shaka.ui.Locales');
  12. goog.require('shaka.ui.Localization');
  13. goog.require('shaka.util.Dom');
  14. /**
  15. * @extends {shaka.ui.Element}
  16. * @final
  17. * @export
  18. */
  19. shaka.ui.MuteButton = class extends shaka.ui.Element {
  20. /**
  21. * @param {!HTMLElement} parent
  22. * @param {!shaka.ui.Controls} controls
  23. */
  24. constructor(parent, controls) {
  25. super(parent, controls);
  26. /** @private {!HTMLButtonElement} */
  27. this.button_ = shaka.util.Dom.createButton();
  28. this.button_.classList.add('shaka-mute-button');
  29. this.button_.classList.add('material-icons-round');
  30. this.button_.classList.add('shaka-tooltip');
  31. this.parent.appendChild(this.button_);
  32. this.updateAriaLabel_();
  33. this.updateIcon_();
  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', () => {
  43. if (this.ad && this.ad.isLinear()) {
  44. this.ad.setMuted(!this.ad.isMuted());
  45. } else {
  46. this.video.muted = !this.video.muted;
  47. }
  48. });
  49. this.eventManager.listen(this.video, 'volumechange', () => {
  50. this.updateAriaLabel_();
  51. this.updateIcon_();
  52. });
  53. this.eventManager.listen(this.adManager,
  54. shaka.ads.AdManager.AD_VOLUME_CHANGED, () => {
  55. this.updateAriaLabel_();
  56. this.updateIcon_();
  57. });
  58. this.eventManager.listen(this.adManager,
  59. shaka.ads.AdManager.AD_MUTED, () => {
  60. this.updateAriaLabel_();
  61. this.updateIcon_();
  62. });
  63. this.eventManager.listen(this.adManager,
  64. shaka.ads.AdManager.AD_STOPPED, () => {
  65. // The base class also listens for this event and sets this.ad
  66. // to null. This is a safeguard in case of a race condition as
  67. // the label and icon code depends on this.ad being correctly
  68. // updated at the time it runs.
  69. this.ad = null;
  70. this.updateAriaLabel_();
  71. this.updateIcon_();
  72. });
  73. }
  74. /**
  75. * @private
  76. */
  77. updateAriaLabel_() {
  78. const LocIds = shaka.ui.Locales.Ids;
  79. let label;
  80. if (this.ad) {
  81. label = this.ad.isMuted() ? LocIds.UNMUTE : LocIds.MUTE;
  82. } else {
  83. label = this.video.muted ? LocIds.UNMUTE : LocIds.MUTE;
  84. }
  85. this.button_.ariaLabel = this.localization.resolve(label);
  86. }
  87. /**
  88. * @private
  89. */
  90. updateIcon_() {
  91. const Icons = shaka.ui.Enums.MaterialDesignIcons;
  92. let icon;
  93. if (this.ad) {
  94. icon = this.ad.isMuted() ? Icons.UNMUTE : Icons.MUTE;
  95. } else {
  96. icon = this.video.muted ? Icons.UNMUTE : Icons.MUTE;
  97. }
  98. this.button_.textContent = icon;
  99. }
  100. };
  101. /**
  102. * @implements {shaka.extern.IUIElement.Factory}
  103. * @final
  104. */
  105. shaka.ui.MuteButton.Factory = class {
  106. /** @override */
  107. create(rootElement, controls) {
  108. return new shaka.ui.MuteButton(rootElement, controls);
  109. }
  110. };
  111. shaka.ui.Controls.registerElement('mute', new shaka.ui.MuteButton.Factory());