aboutsummaryrefslogtreecommitdiff
path: root/src/mobile/ImageUpload.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2024-09-02 09:26:37 -0400
committerbobzel <zzzman@gmail.com>2024-09-02 09:26:37 -0400
commitcda69e48361fce8d71a4dc66edd9dd976a27f52d (patch)
tree82b9a1a5967ae88a9534f89f7eaed3aeb289652f /src/mobile/ImageUpload.tsx
parentc01828308714874589d1f60c33ca59df4c656c0c (diff)
parenta958577d4c27b276aa37484e3f895e196138b17c (diff)
Merge branch 'master' into alyssa-starter
Diffstat (limited to 'src/mobile/ImageUpload.tsx')
-rw-r--r--src/mobile/ImageUpload.tsx171
1 files changed, 0 insertions, 171 deletions
diff --git a/src/mobile/ImageUpload.tsx b/src/mobile/ImageUpload.tsx
deleted file mode 100644
index 7a1e35636..000000000
--- a/src/mobile/ImageUpload.tsx
+++ /dev/null
@@ -1,171 +0,0 @@
-/* eslint-disable jsx-a11y/no-static-element-interactions */
-/* eslint-disable jsx-a11y/click-events-have-key-events */
-import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
-import { action, observable } from 'mobx';
-import { observer } from 'mobx-react';
-import * as React from 'react';
-import * as rp from 'request-promise';
-import { ClientUtils } from '../ClientUtils';
-import { DocServer } from '../client/DocServer';
-import { Networking } from '../client/Network';
-import { Docs } from '../client/documents/Documents';
-import { MainViewModal } from '../client/views/MainViewModal';
-import { Doc, Opt } from '../fields/Doc';
-import { List } from '../fields/List';
-import { listSpec } from '../fields/Schema';
-import { Cast } from '../fields/Types';
-import './ImageUpload.scss';
-
-const { DFLT_IMAGE_NATIVE_DIM } = require('../client/views/global/globalCssVariables.module.scss'); // prettier-ignore
-
-export interface ImageUploadProps {
- Document: Doc; // Target document for upload (upload location)
-}
-
-const inputRef = React.createRef<HTMLInputElement>();
-const defaultNativeImageDim = Number(DFLT_IMAGE_NATIVE_DIM.replace('px', ''));
-
-@observer
-export class Uploader extends React.Component<ImageUploadProps> {
- @observable nm: string = 'Choose files'; // Text of 'Choose Files' button
- @observable process: string = ''; // Current status of upload
- @observable private dialogueBoxOpacity = 1;
-
- onClick = async () => {
- try {
- // eslint-disable-next-line react/destructuring-assignment
- const col = this.props.Document;
- await Docs.Prototypes.initialize();
- const imgPrev = document.getElementById('img_preview');
- this.setOpacity(1, '1'); // Slab 1
- if (imgPrev && inputRef.current) {
- const { files } = inputRef.current;
- this.setOpacity(2, '1'); // Slab 2
- if (files && files.length !== 0) {
- this.process = 'Uploading Files';
- for (let index = 0; index < files.length; ++index) {
- const file = files[index];
- // eslint-disable-next-line no-await-in-loop
- const res = await Networking.UploadFilesToServer({ file });
- this.setOpacity(3, '1'); // Slab 3
- // For each item that the user has selected
- res.map(async ({ result }) => {
- const { name } = file;
- if (result instanceof Error) {
- return;
- }
- const path = result.accessPaths.agnostic.client;
- let doc = null;
- // Case 1: File is a video
- if (file.type === 'video/mp4') {
- doc = Docs.Create.VideoDocument(path, { _nativeWidth: defaultNativeImageDim, _width: 400, title: name });
- // Case 2: File is a PDF document
- } else if (file.type === 'application/pdf') {
- doc = Docs.Create.PdfDocument(path, { _nativeWidth: defaultNativeImageDim, _width: 400, title: name });
- // Case 3: File is another document type (most likely Image)
- } else {
- doc = Docs.Create.ImageDocument(path, { _nativeWidth: defaultNativeImageDim, _width: 400, title: name });
- }
- this.setOpacity(4, '1'); // Slab 4
- const docidsRes = await rp.get(ClientUtils.prepend('/getUserDocumentIds'));
- if (!docidsRes) {
- throw new Error('No user id returned');
- }
- const field = await DocServer.GetRefField(JSON.parse(docidsRes).userDocumentId);
- let pending: Opt<Doc>;
- if (field instanceof Doc) {
- pending = col;
- }
- if (pending) {
- const data = Cast(pending.data, listSpec(Doc));
- if (data) data.push(doc);
- else pending.data = new List([doc]);
- this.setOpacity(5, '1'); // Slab 5
- this.process = 'File ' + (index + 1).toString() + ' Uploaded';
- this.setOpacity(6, '1'); // Slab 6
- }
- if (index + 1 === files.length) {
- this.process = 'Uploads Completed';
- this.setOpacity(7, '1'); // Slab 7
- }
- });
- }
- // Case in which the user pressed upload and no files were selected
- } else {
- this.process = 'No file selected';
- }
- // Three seconds after upload the menu will reset
- setTimeout(this.clearUpload, 3000);
- }
- } catch (error) {
- console.log(JSON.stringify(error));
- }
- };
-
- // Returns the upload interface for mobile
- private get uploadInterface() {
- return (
- <div className="imgupload_cont">
- <div className="closeUpload" onClick={() => this.closeUpload()}>
- <FontAwesomeIcon icon="window-close" size="lg" />
- </div>
- <FontAwesomeIcon icon="upload" size="lg" style={{ fontSize: '130' }} />
- <input type="file" accept="application/pdf, video/*,image/*" className={`inputFile ${this.nm !== 'Choose files' ? 'active' : ''}`} id="input_image_file" ref={inputRef} onChange={this.inputLabel} multiple />
- <label className="file" id="label" htmlFor="input_image_file">
- {this.nm}
- </label>
- <div className="upload_label" onClick={this.onClick}>
- Upload
- </div>
- <img id="img_preview" src="" alt="" />
- <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>
- <p className="status">{this.process}</p>
- </div>
- );
- }
-
- // Updates label after a files is selected (so user knows a file is uploaded)
- inputLabel = async () => {
- const files: FileList | null = await inputRef.current!.files;
- if (files && files.length === 1) {
- this.nm = files[0].name;
- } else if (files && files.length > 1) {
- this.nm = files.length.toString() + ' files selected';
- }
- }; // Loops through load icons, and resets buttons
- @action
- clearUpload = () => {
- for (let i = 1; i < 8; i++) {
- this.setOpacity(i, '0.2');
- }
- this.nm = 'Choose files';
-
- if (inputRef.current) {
- inputRef.current.value = '';
- }
- this.process = '';
- };
-
- // Clears the upload and closes the upload menu
- closeUpload = () => {
- this.clearUpload();
- };
-
- // Handles the setting of the loading bar
- setOpacity = (index: number, opacity: string) => {
- const slab = document.getElementById('slab' + index);
- if (slab) slab.style.opacity = opacity;
- };
-
- render() {
- return <MainViewModal contents={this.uploadInterface} isDisplayed interactive dialogueBoxDisplayedOpacity={this.dialogueBoxOpacity} closeOnExternalClick={this.closeUpload} />;
- }
-}