aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/VideoBox.tsx
blob: 22ff5c5adfbd370199d242c20b82a8452a6d0a51 (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
import React = require("react")
import { FieldViewProps, FieldView } from './FieldView';
import { FieldWaiting } from '../../../fields/Field';
import { observer } from "mobx-react"
import { VideoField } from '../../../fields/VideoField'; 
import "./VideoBox.scss"
import { ContextMenu } from "../../views/ContextMenu";
import { observable, action } from 'mobx';
import { KeyStore } from '../../../fields/KeyStore';

@observer
export class VideoBox extends React.Component<FieldViewProps> {

    public static LayoutString() { return FieldView.LayoutString(VideoBox) }

    constructor(props: FieldViewProps) {
        super(props);
    }

   

    componentDidMount() {
    }

    componentWillUnmount() {
    }

   
    render() {
        let field = this.props.doc.Get(this.props.fieldKey)
        let path = field == FieldWaiting ? "http://techslides.com/demos/sample-videos/small.mp4":
            field instanceof VideoField ? field.Data.href : "http://techslides.com/demos/sample-videos/small.mp4";
    
        return (
            <div>
                <video width = {200} height = {200} controls className = "videobox-cont">
                    <source src = {path} type = "video/mp4"/>
                    Not supported.
                </video>
            </div>
        )
    }
}