aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryipstanley <stanley_yip@brown.edu>2019-03-17 21:16:17 -0400
committeryipstanley <stanley_yip@brown.edu>2019-03-17 21:16:17 -0400
commit1328b125d2b414380d037206ab6f39b9d12f1ff1 (patch)
treeafd95a67da8a07cb4261ae585473bf9c5f96024c
parent345c445474292fe0bf56ff1a36f5a9a4b8411e95 (diff)
nacho fries
-rw-r--r--.gitignore1
-rw-r--r--src/client/views/Main.tsx2
-rw-r--r--src/mobile/ImageUpload.scss7
-rw-r--r--src/mobile/ImageUpload.tsx55
-rw-r--r--src/server/index.ts2
5 files changed, 46 insertions, 21 deletions
diff --git a/.gitignore b/.gitignore
index 7b9483f69..2f9680a59 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,3 @@
node_modules
dist/
.DS_Store
-src/server/public/files/*
diff --git a/src/client/views/Main.tsx b/src/client/views/Main.tsx
index 89ef16cc9..437d025ef 100644
--- a/src/client/views/Main.tsx
+++ b/src/client/views/Main.tsx
@@ -98,7 +98,7 @@ Documents.initProtos(mainDocId, (res?: Document) => {
})
}
})
- }, 50)
+ }, 100)
let imgurl = "https://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Cat03.jpg/1200px-Cat03.jpg";
let pdfurl = "http://www.adobe.com/support/products/enterprise/knowledgecenter/media/c4611_sample_explain.pdf"
diff --git a/src/mobile/ImageUpload.scss b/src/mobile/ImageUpload.scss
index 2d8966be1..d0b7d4e41 100644
--- a/src/mobile/ImageUpload.scss
+++ b/src/mobile/ImageUpload.scss
@@ -1,6 +1,6 @@
.imgupload_cont {
- height: 100%;
- width: 100%;
+ height: 100vh;
+ width: 100vw;
align-content: center;
.button_file {
text-align: center;
@@ -10,7 +10,4 @@
color: grey;
font-size: 3em;
}
- .input_file {
- background-color: transparent; // display: none;
- }
} \ No newline at end of file
diff --git a/src/mobile/ImageUpload.tsx b/src/mobile/ImageUpload.tsx
index 8ad781990..935f5b5c1 100644
--- a/src/mobile/ImageUpload.tsx
+++ b/src/mobile/ImageUpload.tsx
@@ -2,29 +2,58 @@ import * as ReactDOM from 'react-dom';
import React = require('react');
import "./ImageUpload.scss"
import { action, runInAction } from "mobx";
+import { type } from 'os';
+import { Documents } from '../client/documents/Documents';
+import { Document } from '../fields/Document';
+import { Server } from '../client/Server';
+import { Opt, Field } from '../fields/Field';
+import { ListField } from '../fields/ListField';
+import { KeyStore } from '../fields/KeyStore';
-const onPointerDown = (e: React.TouchEvent) => {
- let imgInput = document.getElementById("input_image_file");
- if (imgInput) {
- imgInput.click();
- }
-}
+// const onPointerDown = (e: React.TouchEvent) => {
+// let imgInput = document.getElementById("input_image_file");
+// if (imgInput) {
+// imgInput.click();
+// }
+// }
+const pendingDocId = "pending-doc"
const onFileLoad = (file: any) => {
- let img = new Image();
let imgPrev = document.getElementById("img_preview")
if (imgPrev) {
- let files = file.target.files;
+ let files: File[] = file.target.files;
if (files.length != 0) {
console.log(files[0]);
- console.log(window.location.origin)
- const upload = window.location.origin + "/upload";
let formData = new FormData();
formData.append("file", files[0]);
- console.log(window.location.origin + file[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
+ runInAction(() => {
+ var doc: Document = Documents.ImageDocument(path, { nativeWidth: 200, width: 200 })
+ Server.GetField(pendingDocId, (res: Opt<Field>) => {
+ if (res) {
+ if (res instanceof Document) {
+ res.GetOrCreateAsync(KeyStore.Data, ListField, (f: ListField<Document>) => {
+ f.Data.push(doc)
+ })
+ }
+ }
+ })
+ })
+ })
+ })
+ // console.log(window.location.origin + file[0])
//imgPrev.setAttribute("src", window.location.origin + files[0].name)
}
@@ -35,8 +64,8 @@ const onFileLoad = (file: any) => {
ReactDOM.render((
<div className="imgupload_cont">
- {/* <button className="button_file" onTouchStart={onPointerDown}> Open Image </button> */}
- <input type="file" accept="image/*" onChange={onFileLoad} className="input_file" id="input_image_file"></input>
+ {/* <button className = "button_file" = {onPointerDown}> Open Image </button> */}
+ <input type="file" accept="image/*" capture="camera" onChange={onFileLoad} className="input_file" id="input_image_file"></input>
<img id="img_preview" src=""></img>
</div>),
document.getElementById('root')
diff --git a/src/server/index.ts b/src/server/index.ts
index 0a89c61bd..4be35b7b7 100644
--- a/src/server/index.ts
+++ b/src/server/index.ts
@@ -106,7 +106,7 @@ app.get("/", (req: express.Request, res: express.Response) => {
if (detector.mobile() != null) {
res.sendFile(path.join(__dirname, '../../deploy/mobile/image.html'));
} else {
- res.sendFile(path.join(__dirname, '../../deploy/index.html'));
+ res.redirect("/doc/mainDoc");
}
});