Source: ui/context_menu.js

  1. /*! @license
  2. * Shaka Player
  3. * Copyright 2016 Google LLC
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. goog.provide('shaka.ui.ContextMenu');
  7. goog.require('goog.asserts');
  8. goog.require('shaka.log');
  9. goog.require('shaka.ui.Element');
  10. goog.require('shaka.ui.Utils');
  11. goog.require('shaka.util.Dom');
  12. goog.requireType('shaka.ui.Controls');
  13. /**
  14. * @extends {shaka.ui.Element}
  15. * @final
  16. * @export
  17. */
  18. shaka.ui.ContextMenu = 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 {!shaka.extern.UIConfiguration} */
  26. this.config_ = this.controls.getConfig();
  27. /** @private {HTMLElement} */
  28. this.controlsContainer_ = this.controls.getControlsContainer();
  29. /** @private {!Array.<shaka.extern.IUIElement>} */
  30. this.children_ = [];
  31. /** @private {!HTMLElement} */
  32. this.contextMenu_ = shaka.util.Dom.createHTMLElement('div');
  33. this.contextMenu_.classList.add('shaka-no-propagation');
  34. this.contextMenu_.classList.add('shaka-context-menu');
  35. this.contextMenu_.classList.add('shaka-hidden');
  36. this.controlsContainer_.appendChild(this.contextMenu_);
  37. this.eventManager.listen(this.controlsContainer_, 'contextmenu', (e) => {
  38. if (this.contextMenu_.classList.contains('shaka-hidden')) {
  39. e.preventDefault();
  40. const controlsLocation =
  41. this.controlsContainer_.getBoundingClientRect();
  42. this.contextMenu_.style.left = `${e.clientX - controlsLocation.left}px`;
  43. this.contextMenu_.style.top = `${e.clientY - controlsLocation.top}px`;
  44. shaka.ui.Utils.setDisplay(this.contextMenu_, true);
  45. } else {
  46. shaka.ui.Utils.setDisplay(this.contextMenu_, false);
  47. }
  48. });
  49. this.eventManager.listen(window, 'click', () => {
  50. shaka.ui.Utils.setDisplay(this.contextMenu_, false);
  51. });
  52. this.createChildren_();
  53. }
  54. /** @override */
  55. release() {
  56. this.controlsContainer_ = null;
  57. for (const element of this.children_) {
  58. element.release();
  59. }
  60. this.children_ = [];
  61. super.release();
  62. }
  63. /**
  64. * @param {string} name
  65. * @param {!shaka.extern.IUIElement.Factory} factory
  66. * @export
  67. */
  68. static registerElement(name, factory) {
  69. shaka.ui.ContextMenu.elementNamesToFactories_.set(name, factory);
  70. }
  71. /**
  72. * @private
  73. */
  74. createChildren_() {
  75. for (const name of this.config_.contextMenuElements) {
  76. const factory =
  77. shaka.ui.ContextMenu.elementNamesToFactories_.get(name);
  78. if (factory) {
  79. goog.asserts.assert(this.controls, 'Controls should not be null!');
  80. this.children_.push(factory.create(this.contextMenu_, this.controls));
  81. } else {
  82. shaka.log.alwaysWarn('Unrecognized context menu element:', name);
  83. }
  84. }
  85. }
  86. };
  87. /** @private {!Map.<string, !shaka.extern.IUIElement.Factory>} */
  88. shaka.ui.ContextMenu.elementNamesToFactories_ = new Map();