/**
 * @file mouse-time-display.js
 */
從 '../../component.js' 導入組件;
從 '../../utils/fn.js' 導入 * 作為 Fn;

導入'./time-tooltip';

/**
 * {@link MouseTimeDisplay} 組件跟踪鼠標在
 * {@link ProgressControl}。它顯示一個指示器和一個 {@link TimeTooltip}
 * 指示由給定點表示的時間
 * {@link ProgressControl}。
 *
 * @extends 組件
 */
類 MouseTimeDisplay 擴展組件 {

  /**
   * 創建此類的一個實例。
   *
   * @param {Player} 播放器
   * 此類應附加到的 {@link Player}。
   *
   * @param {對象} [選項]
   * 播放器選項的鍵/值存儲。
   */
  構造函數(播放器,選項){
    超級(播放器,選項);
    this.update = Fn.throttle(Fn.bind(this, this.update), Fn.UPDATE_REFRESH_INTERVAL);
  }

  /**
   * 為這個類創建 DOM 元素。
   *
   * @return {元素}
   * 創建的元素。
   */
  創建El() {
    返回 super.createEl('div', {
      className: 'vjs-mouse-display'
    });
  }

  /**
   * 排隊更新到它自己的 DOM 以及它的 DOM
   * {@link TimeTooltip} 孩子。
   *
   * @param {Object} seekBarRect
   * {@link SeekBar} 元素的 `ClientRect`。
   *
   * @param {number} seekBarPoint
   * 0到1之間的數字,代表水平參考點
   * 從 {@link SeekBar} 的左邊緣
   */
  更新(seekBarRect,seekBarPoint){
    const time = seekBarPoint * this.player_.duration();

    this.getChild('timeTooltip').updateTime(seekBarRect, seekBarPoint, time, () => {
      this.el_.style.left = `${seekBarRect.width * seekBarPoint}px`;
    });
  }
}

/**
 * `MouseTimeDisplay` 的默認選項
 *
 * @type {對象}
 * @私人的
 */
MouseTimeDisplay.prototype.options_ = {
  孩子們: [
    '時間工具提示'
  ]
};

Component.registerComponent('MouseTimeDisplay', MouseTimeDisplay);
導出默認 MouseTimeDisplay;