summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/views/viewer/player/components.fullscreen/fullscreen.video.js
blob: 5bc48a443e059632356f91a1f98d71f90059f431 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import React, { Component } from 'react'
import { connect } from 'react-redux'
import VimeoPlayer from 'app/utils/vendor/vimeo'

import actions from 'app/actions'
import { VideoScrubber } from '../components.media'

class FullscreenVideo extends Component {
  state = {
    duration: 0.0,
    percent: 0.0,
    seconds: 0.0,
    seek: 0.0,
    scrubbing: false,
  }
  constructor(props) {
    super(props)
    this.handlePlay = this.handlePlay.bind(this)
    this.handlePause = this.handlePause.bind(this)
    this.handleTimeUpdate = this.handleTimeUpdate.bind(this)
    this.handleEnd = this.handleEnd.bind(this)
  }
  componentDidUpdate(prevProps) {
    if (Math.abs(this.props.play_ts - prevProps.play_ts) > 1.0) {
      // handle seek
      const seek = (this.props.play_ts - this.props.element.start_ts) % this.state.duration
      this.setState({ seek })
    }
  }
  handlePlay() {

  }
  handlePause() {

  }
  handleEnd() {

  }
  handleTimeUpdate(timing) {
    if (!this.state.scrubbing || ('scrubbing' in timing)) {
      this.setState(timing)
    }
  }

  render() {
    const { element, media, transitionDuration, playing } = this.props
    const { duration, percent, seconds } = this.state
    const { color } = element
    const item = media.lookup[element.settings.media_id]
    const style = {
      backgroundColor: color.backgroundColor,
      color: color.textColor,
      transitionDuration,
    }
    return (
      <div
        className='fullscreen-element video'
        style={style}
      >
        <div className='vimeoPlayer'>
          <VimeoPlayer
            video={item.url}
            paused={!playing}
            autoplay={true}
            muted={true}
            loop={!!element.settings.loop}
            seek={this.state.seek}
            responsive={true}
            controls={false}
            byline={false}
            onPlay={this.handlePlay}
            onPause={this.handlePause}
            onTimeUpdate={this.handleTimeUpdate}
            onEnd={this.handleEnd}
          />
        </div>
        <VideoScrubber
          start_ts={element.start_ts}
          playing={playing}
          timing={this.state}
          onScrub={this.handleTimeUpdate}
        />
      </div>
    )
  }
}

const mapStateToProps = state => ({
  viewer: state.viewer,
  play_ts: state.audio.play_ts,
  playing: state.audio.playing,
})

export default connect(mapStateToProps)(FullscreenVideo)