aboutsummaryrefslogtreecommitdiff
path: root/src/mobile/ImageUpload.tsx
blob: 16808a598040ea0cbcd312fb8e2a0e84c292d5b0 (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
import * as ReactDOM from 'react-dom';
import React = require('react');
import "./ImageUpload.scss"
import { Document } from '../fields/Document';
import { KeyStore } from '../fields/KeyStore';
import { Server } from '../client/Server';
import { Documents } from '../client/documents/Documents';
import { ListField } from '../fields/ListField';
import { ImageField } from '../fields/ImageField';
import request = require('request');
import { ServerUtils } from '../server/ServerUtil';
import { RouteStore } from '../server/RouteStore';




// const onPointerDown = (e: React.TouchEvent) => {
//     let imgInput = document.getElementById("input_image_file");
//     if (imgInput) {
//         imgInput.click();
//     }
// }

const onFileLoad = (file: any) => {
    let imgPrev = document.getElementById("img_preview")
    if (imgPrev) {
        let files: File[] = file.target.files;
        if (files.length != 0) {
            console.log(files[0]);
            let formData = new FormData();
            formData.append("file", files[0]);

            const upload = window.location.origin + "/upload"
            fetch(upload, {
                method: 'POST',
                body: formData
            }).then((res: Response) => {
                return res.json()
            }).then(json => {
                json.map((file: any) => {
                    let path = window.location.origin + file
                    var doc: Document = Documents.ImageDocument(path, { nativeWidth: 200, width: 200 })
                    doc.GetTAsync(KeyStore.Data, ImageField, (i) => {
                        if (i) {
                            document.getElementById("message")!.innerText = i.Data.href;
                        }
                    })
                    request.get(ServerUtils.prepend(RouteStore.getActiveWorkspace), (error, response, body) => {
                        if (body) {
                            Server.GetField(body, field => {
                                if (field instanceof Document) {
                                    field.GetTAsync(KeyStore.OptionalRightCollection, Document,
                                        pending => {
                                            if (pending) {
                                                pending.GetOrCreateAsync(KeyStore.Data, ListField, list => {
                                                    list.Data.push(doc);
                                                })
                                            }
                                        })
                                }
                            }
                            );
                        }
                    })
                    // console.log(window.location.origin + file[0])

                    //imgPrev.setAttribute("src", window.location.origin + files[0].name)
                })
            })
        }
    }
}

ReactDOM.render((
    <div className="imgupload_cont">
        {/* <button className = "button_file"  = {onPointerDown}> Open Image </button> */}
        <input type="file" accept="image/*" onChange={onFileLoad} className="input_file" id="input_image_file"></input>
        <img id="img_preview" src=""></img>
        <div id="message" />
    </div>),
    document.getElementById('root')
);