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 (
) } }