summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/views/viewer/player/components.fullscreen/fullscreen.video.js
blob: 2c9f7d667eb48146040f2a62da34310e995023e1 (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
import React, { Component } from 'react'
import VimeoPlayer from 'app/utils/vendor/vimeo'

export class FullscreenVideo extends Component {
  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)
  }
  handlePlay() {

  }
  handlePause() {

  }
  handleEnd() {

  }
  handleTimeUpdate() {

  }
  render() {
    const { element, media, transitionDuration } = this.props
    const { color } = element
    const item = media.lookup[element.settings.media_id]
    const style = {
      backgroundColor: color.backgroundColor,
      color: color.textColor,
      transitionDuration,
    }
    console.log(item)
    return (
      <div
        className='fullscreen-element video'
        style={style}
      >
        <VimeoPlayer
          video={item.url}
          autoplay={true}
          muted={true}
          responsive={true}
          controls={false}
          byline={false}
          onPlay={this.handlePlay}
          onPause={this.handlePause}
          onTimeUpdate={this.handleTimeUpdate}
          onEnd={this.handleEnd}
        />
      </div>
    )
  }
}