summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/views/media/components/media.formVideo.js
blob: a586bb871c610f0be2af74bc2d5a87ea10cb5cf5 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
import React, { Component } from 'react'
import { Link } from 'react-router-dom'
import VimeoPlayer from '@u-wave/react-vimeo'

import { capitalize } from 'app/utils'
import { TextInput, LabelDescription, Select, TextArea, Checkbox, SubmitButton, Loader } from 'app/common'

import { getVimeoMetadata } from 'app/views/media/media.actions'

export default class MediaVideoForm extends Component {
  state = {
  }

  constructor(props) {
    super(props)
    this.handleSelect = this.handleSelect.bind(this)
    this.handleChange = this.handleChange.bind(this)
    this.handleSettingsChange = this.handleSettingsChange.bind(this)
    this.handleUpload = this.handleUpload.bind(this)
  }

  handleChange(e) {
    let { name, value } = e.target
    return this.handleSelect(name, value)
  }

  handleSelect(name, value) {
    value = value.trim()
    if (name === 'url') {
      getVimeoMetadata(value)
      .then(data => {
        console.log('video metadata', data)
        this.props.onChange(name, value)
        setTimeout(() => {
          this.props.onSettingsChange('video', {
            thumbnail_url: data.thumbnail_url,
            duration: data.duration,
            video_id: data.video_id,
          })
        }, 20)
      })
    } else {
      this.props.onChange(name, value)
    }
  }

  handleSettingsChange(e) {
    let { name, value } = e.target
    this.props.onSettingsChange(name, value)
  }

  handleSettingsSelect(name, value) {
    this.props.onSettingsChange(name, value)
  }

  handleUpload(file) {
    console.log('uploading poster image')
    const uploadData = {
      image: file,
      tag: "poster",
      username: 'animism',
    }
    // uploadData['__image_filename'] = file.filename
    return actions.upload.upload(uploadData).then(data => {
      this.handleSettingsChange("poster", data.res)
    })
  }

  render() {
    const { data } = this.props
    return (
      <div className='videoForm'>
        <TextInput
          title="Video URL"
          name="url"
          required
          data={data}
          onChange={this.handleChange}
          autoComplete="off"
        />

        {data.url &&
          <div>
            <LabelDescription className='video'>
              <VimeoPlayer video={data.url} />
            </LabelDescription>

            {data.settings.video &&
              <LabelDescription className='thumbnail'>
                {data.settings.poster &&
                  <img src={data.settings.poster ? data.settings.poster.url : data.settings.video.thumbnail} />
                }
              </LabelDescription>
            }

            <FileInputField
              title="Poster image"
              mime="*/*"
              onChange={this.handleUpload}
            />

          </div>
        }
      </div>
    )
  }
}