Source: ui/hidden_seek_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.HiddenSeekButton');
  7. goog.require('shaka.ui.Element');
  8. goog.require('shaka.util.Timer');
  9. goog.require('shaka.util.Dom');
  10. goog.requireType('shaka.ui.Controls');
  11. /**
  12. * @extends {shaka.ui.Element}
  13. * @export
  14. */
  15. shaka.ui.HiddenSeekButton = class extends shaka.ui.Element {
  16. /**
  17. * @param {!HTMLElement} parent
  18. * @param {!shaka.ui.Controls} controls
  19. */
  20. constructor(parent, controls) {
  21. super(parent, controls);
  22. /** @private {?number} */
  23. this.lastTouchEventTimeSet_ = null;
  24. /** @private {?boolean} */
  25. this.triggeredTouchValid_ = false;
  26. /**
  27. * This timer will be used to hide seek button on video Container.
  28. * When the timer ticks it will force button to be invisible.
  29. *
  30. * @private {shaka.util.Timer}
  31. */
  32. this.hideSeekButtonContainerTimer_ = new shaka.util.Timer(() => {
  33. const position = parseInt(this.seekValue_.textContent, 10);
  34. this.hideSeekButtonContainer_();
  35. if (position == 0) {
  36. this.controls.playPausePresentation();
  37. }
  38. });
  39. /** @protected {!HTMLElement} */
  40. this.seekContainer = shaka.util.Dom.createHTMLElement('div');
  41. this.parent.appendChild(this.seekContainer);
  42. this.eventManager.listen(this.seekContainer, 'touchend', (event) => {
  43. // Do nothing if the controls are not visible
  44. if (!this.controls.isOpaque()) {
  45. return;
  46. }
  47. // In case any settings menu are open this assigns the first touch
  48. // to close the menu.
  49. if (this.controls.anySettingsMenusAreOpen()) {
  50. // prevent the default changes that browser triggers
  51. event.preventDefault();
  52. this.controls.hideSettingsMenus();
  53. } else if (this.controls.getConfig().tapSeekDistance > 0) {
  54. // prevent the default changes that browser triggers
  55. event.preventDefault();
  56. this.onSeekButtonClick_();
  57. }
  58. });
  59. /** @private {!HTMLElement} */
  60. this.seekValue_ = shaka.util.Dom.createHTMLElement('span');
  61. this.seekValue_.textContent = '0s';
  62. this.seekContainer.appendChild(this.seekValue_);
  63. /** @protected {!HTMLElement} */
  64. this.seekIcon = shaka.util.Dom.createHTMLElement('span');
  65. this.seekIcon.classList.add(
  66. 'shaka-forward-rewind-container-icon');
  67. this.seekContainer.appendChild(this.seekIcon);
  68. /** @protected {boolean} */
  69. this.isRewind = false;
  70. }
  71. /**
  72. * @private
  73. */
  74. onSeekButtonClick_() {
  75. const tapSeekDistance = this.controls.getConfig().tapSeekDistance;
  76. // This stores the time for first touch and makes touch valid for
  77. // next 1s so incase the touch event is triggered again within 1s
  78. // this if condition fails and the video seeking happens.
  79. if (!this.triggeredTouchValid_) {
  80. this.triggeredTouchValid_ = true;
  81. this.lastTouchEventTimeSet_ = Date.now();
  82. this.hideSeekButtonContainerTimer_.tickAfter(1);
  83. } else if (this.lastTouchEventTimeSet_+1000 > Date.now()) {
  84. // stops hidding of seek button incase the timmer is active
  85. // because of previous touch event.
  86. this.hideSeekButtonContainerTimer_.stop();
  87. this.lastTouchEventTimeSet_ = Date.now();
  88. let position = 0;
  89. if (this.isRewind) {
  90. position =
  91. parseInt(this.seekValue_.textContent, 10) - tapSeekDistance;
  92. } else {
  93. position =
  94. parseInt(this.seekValue_.textContent, 10) + tapSeekDistance;
  95. }
  96. this.seekValue_.textContent = position.toString() + 's';
  97. this.seekContainer.style.opacity = '1';
  98. this.hideSeekButtonContainerTimer_.tickAfter(1);
  99. }
  100. }
  101. /**
  102. * @private
  103. */
  104. hideSeekButtonContainer_() {
  105. // Prevent adding seek value if its a single tap.
  106. if (parseInt(this.seekValue_.textContent, 10) != 0) {
  107. this.video.currentTime = this.controls.getDisplayTime() + parseInt(
  108. this.seekValue_.textContent, 10);
  109. }
  110. this.seekContainer.style.opacity = '0';
  111. this.triggeredTouchValid_ = false;
  112. this.seekValue_.textContent = '0s';
  113. }
  114. };