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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
|
import * as ReactDOM from 'react-dom';
import * as rp from 'request-promise';
import { Docs } from '../client/documents/Documents';
import "./ImageUpload.scss";
import React = require('react');
import { DocServer } from '../client/DocServer';
import { observer } from 'mobx-react';
import { observable, action } from 'mobx';
import { Utils } from '../Utils';
import { Networking } from '../client/Network';
import { Doc, Opt } from '../fields/Doc';
import { Cast } from '../fields/Types';
import { listSpec } from '../fields/Schema';
import { List } from '../fields/List';
import { Scripting } from '../client/util/Scripting';
import MainViewModal from '../client/views/MainViewModal';
export interface ImageUploadProps {
Document: Doc;
}
// const onPointerDown = (e: React.TouchEvent) => {
// let imgInput = document.getElementById("input_image_file");
// if (imgInput) {
// imgInput.click();
// }
// }
const inputRef = React.createRef<HTMLInputElement>();
@observer
export class Uploader extends React.Component {
@observable error: string = "";
@observable status: string = "";
@observable nm: string = "Choose an image";
onClick = async () => {
console.log("uploader click");
try {
this.status = "initializing protos";
const slab1 = document.getElementById("slab1");
if (slab1) {
slab1.style.opacity = "1";
}
await Docs.Prototypes.initialize();
const imgPrev = document.getElementById("img_preview");
if (imgPrev) {
const files: FileList | null = inputRef.current!.files;
if (files && files.length !== 0) {
console.log(files[0]);
const name = files[0].name;
const res = await Networking.UploadFilesToServer(files[0]);
this.status = "uploading image";
const slab2 = document.getElementById("slab2");
if (slab2) {
slab2.style.opacity = "1";
}
this.status = "upload image, getting json";
const slab3 = document.getElementById("slab3");
if (slab3) {
slab3.style.opacity = "1";
}
res.map(async ({ result }) => {
if (result instanceof Error) {
return;
}
const path = Utils.prepend(result.accessPaths.agnostic.client);
const doc = Docs.Create.ImageDocument(path, { _nativeWidth: 200, _width: 200, title: name });
this.status = "getting user document";
const slab4 = document.getElementById("slab4");
if (slab4) {
slab4.style.opacity = "1";
}
this.status = "upload image, getting json";
const slab5 = document.getElementById("slab5");
if (slab5) {
slab5.style.opacity = "1";
}
const res = await rp.get(Utils.prepend("/getUserDocumentId"));
if (!res) {
throw new Error("No user id returned");
}
const field = await DocServer.GetRefField(res);
let pending: Opt<Doc>;
if (field instanceof Doc) {
pending = await Cast(field.rightSidebarCollection, Doc);
}
if (pending) {
this.status = "has pending docs";
const slab6 = document.getElementById("slab6");
if (slab6) {
slab6.style.opacity = "1";
}
const data = await Cast(pending.data, listSpec(Doc));
if (data) {
data.push(doc);
} else {
pending.data = new List([doc]);
}
this.status = "finished";
console.log("hi");
const slab7 = document.getElementById("slab7");
if (slab7) {
slab7.style.opacity = "1";
}
setTimeout(this.clearUpload, 3000);
}
});
}
}
} catch (error) {
this.error = JSON.stringify(error);
}
}
// Updates label after a files is selected (so user knows a file is uploaded)
inputLabel = async () => {
const files: FileList | null = inputRef.current!.files;
await files;
var inputs = document.querySelectorAll('.inputFile');
const label = document.getElementById("label");
if (files && label && files.length !== 0) {
label.innerText = await files[0].name;
setTimeout(this.updateName, 1000);
}
}
@action
updateName = () => {
const label = document.getElementById("label");
if (label) {
this.nm = label.innerText;
}
console.log("lol");
}
@action
clearUpload = () => {
const slab1 = document.getElementById("slab1");
if (slab1) {
slab1.style.opacity = "0.4";
}
const slab2 = document.getElementById("slab2");
if (slab2) {
slab2.style.opacity = "0.4";
}
const slab3 = document.getElementById("slab3");
if (slab3) {
slab3.style.opacity = "0.4";
}
const slab4 = document.getElementById("slab4");
if (slab4) {
slab4.style.opacity = "0.4";
}
const slab5 = document.getElementById("slab5");
if (slab5) {
slab5.style.opacity = "0.4";
}
const slab6 = document.getElementById("slab6");
if (slab6) {
slab6.style.opacity = "0.4";
}
const slab7 = document.getElementById("slab7");
if (slab7) {
slab7.style.opacity = "0.4";
}
const label = document.getElementById("label");
if (label) {
label.innerText = "Choose an image"
this.nm = "Choose an image";
}
}
private get uploadInterface() {
return (
<div className="imgupload_cont">
<input type="file" accept="image/*" className="inputFile" id="input_image_file" onClick={this.inputLabel} ref={inputRef}></input>
<label id="label" htmlFor="input_image_file">{this.nm}</label>
<div className="upload_label" onClick={this.onClick}>Upload Image</div>
{/* <div onClick={this.onClick} className="upload_button">Upload</div> */}
<img id="img_preview" src=""></img>
{/* <p>{this.status}</p>
<p>{this.error}</p> */}
<div className="loadingImage">
<div className="loadingSlab" id="slab1" />
<div className="loadingSlab" id="slab2" />
<div className="loadingSlab" id="slab3" />
<div className="loadingSlab" id="slab4" />
<div className="loadingSlab" id="slab5" />
<div className="loadingSlab" id="slab6" />
<div className="loadingSlab" id="slab7" />
</div>
</div>
);
}
@observable private dialogueBoxOpacity = 1;
@observable private overlayOpacity = 0.4;
render() {
return (
<MainViewModal
contents={this.uploadInterface}
isDisplayed={true}
interactive={true}
dialogueBoxDisplayedOpacity={this.dialogueBoxOpacity}
overlayDisplayedOpacity={this.overlayOpacity}
/>
);
}
}
// DocServer.init(window.location.protocol, window.location.hostname, 4321, "image upload");
|