aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/shared/timestamp-route-transformer.directive.ts
blob: 91fe5bf5d34c3e631e0aa23532b082795ac7eb1c (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                             

            
                                           



                                                         
                                      


                                                   










                                                             
                                        

                               
                                                                                                                   









                                                          

   
import { Directive, EventEmitter, HostListener, Output } from '@angular/core'

@Directive({
  selector: '[myTimestampRouteTransformer]'
})
export class TimestampRouteTransformerDirective {
  @Output() timestampClicked = new EventEmitter<number>()

  @HostListener('click', [ '$event' ])
  public onClick ($event: Event) {
    const target = $event.target as HTMLLinkElement

    if (target.hasAttribute('href') !== true) return

    const ngxLink = document.createElement('a')
    ngxLink.href = target.getAttribute('href')

    // we only care about reflective links
    if (ngxLink.host !== window.location.host) return

    const ngxLinkParams = new URLSearchParams(ngxLink.search)
    if (ngxLinkParams.has('start') !== true) return

    const separators = [ 'h', 'm', 's' ]
    const start = ngxLinkParams
      .get('start')
      .match(new RegExp('(\\d{1,9}[' + separators.join('') + '])', 'g')) // match digits before any given separator
      .map(t => {
        if (t.includes('h')) return parseInt(t, 10) * 3600
        if (t.includes('m')) return parseInt(t, 10) * 60
        return parseInt(t, 10)
      })
      .reduce((acc, t) => acc + t)

    this.timestampClicked.emit(start)

    $event.preventDefault()
  }
}