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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
|
import * as React from "react";
import { library } from '@fortawesome/fontawesome-svg-core';
import {
faTasks, faFolderOpen, faAngleDoubleLeft, faExternalLinkSquareAlt, faMobile, faThLarge, faWindowClose, faEdit, faTrashAlt, faPalette, faAngleRight, faBell, faTrash, faCamera, faExpand, faCaretDown, faCaretLeft, faCaretRight, faCaretSquareDown, faCaretSquareRight, faArrowsAltH, faPlus, faMinus,
faTerminal, faToggleOn, faFile as fileSolid, faExternalLinkAlt, faLocationArrow, faSearch, faFileDownload, faStop, faCalculator, faWindowMaximize, faAddressCard,
faQuestionCircle, faArrowLeft, faArrowRight, faArrowDown, faArrowUp, faBolt, faBullseye, faCaretUp, faCat, faCheck, faChevronRight, faClipboard, faClone, faCloudUploadAlt,
faCommentAlt, faCompressArrowsAlt, faCut, faEllipsisV, faEraser, faExclamation, faFileAlt, faFileAudio, faFilePdf, faFilm, faFilter, faFont, faGlobeAsia, faHighlighter,
faLongArrowAltRight, faMicrophone, faMousePointer, faMusic, faObjectGroup, faPause, faPen, faPenNib, faPhone, faPlay, faPortrait, faRedoAlt, faStamp, faStickyNote,
faThumbtack, faTree, faTv, faBook, faUndoAlt, faVideo, faAsterisk, faBrain, faImage, faPaintBrush, faTimes, faEye, faHome, faLongArrowAltLeft, faBars, faTh, faChevronLeft
} from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { action, computed, observable, reaction } from 'mobx';
import { observer } from 'mobx-react';
import { trace } from 'mobx';
import * as rp from 'request-promise';
import { Doc, DocListCast } from '../fields/Doc';
import { CurrentUserUtils } from '../client/util/CurrentUserUtils';
import { emptyFunction, emptyPath, returnEmptyString, returnFalse, returnOne, returnTrue, returnZero, returnEmptyFilter } from '../Utils';
import { DocServer } from '../client/DocServer';
import { Docs, DocumentOptions } from '../client/documents/Documents';
import { Scripting } from '../client/util/Scripting';
import { DocumentView } from '../client/views/nodes/DocumentView';
import { Transform } from '../client/util/Transform';
import "./MobileInterface.scss";
import "./MobileMenu.scss";
import "./MobileHome.scss";
import "./ImageUpload.scss";
import "./AudioUpload.scss";
import { DocumentManager } from '../client/util/DocumentManager';
import SettingsManager from '../client/util/SettingsManager';
import { Uploader } from "./ImageUpload";
import { DockedFrameRenderer } from '../client/views/collections/CollectionDockingView';
import { InkTool } from '../fields/InkField';
import { listSpec } from '../fields/Schema';
import { nullAudio } from '../fields/URLField';
import GestureOverlay from "../client/views/GestureOverlay";
import { ScriptField } from "../fields/ScriptField";
import InkOptionsMenu from "../client/views/collections/collectionFreeForm/InkOptionsMenu";
import { RadialMenu } from "../client/views/nodes/RadialMenu";
import { UndoManager, undoBatch } from "../client/util/UndoManager";
import { MainView } from "../client/views/MainView";
import { List } from "../fields/List";
import { AudioUpload } from "./AudioUpload";
import { Cast, FieldValue } from '../fields/Types';
import { CollectionView } from '../client/views/collections/CollectionView';
import { InkingStroke } from '../client/views/InkingStroke';
library.add(faTasks, faFolderOpen, faAngleDoubleLeft, faExternalLinkSquareAlt, faMobile, faThLarge, faWindowClose, faEdit, faTrashAlt, faPalette, faAngleRight, faBell, faTrash, faCamera, faExpand, faCaretDown, faCaretLeft, faCaretRight, faCaretSquareDown, faCaretSquareRight, faArrowsAltH, faPlus, faMinus,
faTerminal, faToggleOn, fileSolid, faExternalLinkAlt, faLocationArrow, faSearch, faFileDownload, faStop, faCalculator, faWindowMaximize, faAddressCard,
faQuestionCircle, faArrowLeft, faArrowRight, faArrowDown, faArrowUp, faBolt, faBullseye, faCaretUp, faCat, faCheck, faChevronRight, faClipboard, faClone, faCloudUploadAlt,
faCommentAlt, faCompressArrowsAlt, faCut, faEllipsisV, faEraser, faExclamation, faFileAlt, faFileAudio, faFilePdf, faFilm, faFilter, faFont, faGlobeAsia, faHighlighter,
faLongArrowAltRight, faMicrophone, faMousePointer, faMusic, faObjectGroup, faPause, faPen, faPenNib, faPhone, faPlay, faPortrait, faRedoAlt, faStamp, faStickyNote,
faThumbtack, faTree, faTv, faUndoAlt, faBook, faVideo, faAsterisk, faBrain, faImage, faPaintBrush, faTimes, faEye, faHome, faLongArrowAltLeft, faBars, faTh, faChevronLeft);
@observer
export class MobileInterface extends React.Component {
@observable static Instance: MobileInterface;
@computed private get userDoc() { return Doc.UserDoc(); }
@computed private get mainContainer() { return this.userDoc ? FieldValue(Cast(this.userDoc.activeMobile, Doc)) : CurrentUserUtils.GuestMobile; }
@observable private mainDoc: any = CurrentUserUtils.setupActiveMobileMenu(this.userDoc);
@observable private renderView?: () => JSX.Element;
@observable private sidebarActive: boolean = false; //to toggle sidebar display
@observable private imageUploadActive: boolean = false; //to toggle image upload
@observable private audioUploadActive: boolean = false;
@observable private menuListView: boolean = false; //to switch between menu view (list / icon)
@observable private _ink: boolean = false; //toggle whether ink is being dispalyed
public _activeDoc: Doc = this.mainDoc; // doc updated as the active mobile page is updated (initially home menu)
public _homeDoc: Doc = this.mainDoc; // home menu as a document
private _homeMenu: boolean = true; // to determine whether currently at home menu
private _child: Doc | null = null; // currently selected document
private _parents: Array<Doc> = []; // array of parent docs (for pathbar)
private _library: Doc = CurrentUserUtils.setupLibrary(this.userDoc); // to access documents in Dash Web
constructor(props: Readonly<{}>) {
super(props);
MobileInterface.Instance = this;
}
@action
componentDidMount = () => {
Doc.UserDoc().activeMobile = this._homeDoc;
this._homeDoc._viewType === "stacking" ? this.menuListView = true : this.menuListView = false;
Doc.SetSelectedTool(InkTool.None);
this.switchCurrentView((userDoc: Doc) => this._homeDoc);
document.removeEventListener("dblclick", this.onReactDoubleClick);
document.addEventListener("dblclick", this.onReactDoubleClick);
}
@action
componentWillUnmount = () => {
document.removeEventListener('dblclick', this.onReactDoubleClick);
}
// Prevent zooming in when double tapping the screen
onReactDoubleClick = (e: MouseEvent) => {
e.stopPropagation();
}
// Switch the mobile view to the given doc
@action
switchCurrentView = (doc: (userDoc: Doc) => Doc, renderView?: () => JSX.Element, onSwitch?: () => void) => {
if (!this.userDoc) return;
Doc.UserDoc().activeMobile = doc(this.userDoc);
onSwitch && onSwitch();
this.renderView = renderView;
}
// For toggling the hamburger menu
@action
toggleSidebar = () => this.sidebarActive = !this.sidebarActive
/**
* Method called when 'Library' button is pressed on the home screen
*/
switchToLibrary = async () => {
this._parents.push(this._activeDoc);
this.switchCurrentView((userDoc: Doc) => this._library);
this._activeDoc = this._library;
this._homeMenu = false;
this.toggleSidebar();
//setTimeout(this.toggleSidebar, 300);
}
openWorkspaces = () => {
this._parents.push(this._activeDoc);
this.switchCurrentView((userDoc: Doc) => this._library);
this._activeDoc = this._library;
this._homeMenu = false;
this.sidebarActive = true;
}
/**
* Back method for navigating through items
*/
back = () => {
const header = document.getElementById("header") as HTMLElement;
const doc = Cast(this._parents.pop(), Doc) as Doc;
if (doc === Cast(this._library, Doc) as Doc) {
this._child = null;
this.userDoc.activeMobile = this._library;
} else if (doc === Cast(this._homeDoc, Doc) as Doc) {
this._homeMenu = true;
this._parents = [];
this._activeDoc = this._homeDoc;
this._child = null;
this.switchCurrentView((userDoc: Doc) => this._homeDoc);
} else {
if (doc) {
this._child = doc;
this.switchCurrentView((userDoc: Doc) => doc);
this._homeMenu = false;
header.textContent = String(doc.title);
}
}
if (doc) {
this._activeDoc = doc;
}
this._ink = false;
}
/**
* Return 'Home", which implies returning to 'Home' buttons
*/
returnHome = () => {
if (!this._homeMenu || this.sidebarActive) {
this._homeMenu = true;
this._parents = [];
this._activeDoc = this._homeDoc;
this._child = null;
this.switchCurrentView((userDoc: Doc) => this._homeDoc);
}
if (this.sidebarActive) {
this.toggleSidebar();
}
}
/**
* Return to primary Workspace in library (Workspaces Doc)
*/
returnMain = () => {
this._parents = [this._homeDoc];
this._activeDoc = this._library;
this.switchCurrentView((userDoc: Doc) => this._library);
this._homeMenu = false;
this._child = null;
}
/**
* DocumentView for graphic display of all documents
*/
displayWorkspaces = () => {
if (this.mainContainer) {
const backgroundColor = () => "white";
return (
<div style={{ position: "relative", top: '198px', height: `calc(100% - 350px)`, width: "100%", left: "0%" }}>
<DocumentView
Document={this.mainContainer}
DataDoc={undefined}
LibraryPath={emptyPath}
addDocument={returnFalse}
addDocTab={returnFalse}
pinToPres={emptyFunction}
rootSelected={returnFalse}
removeDocument={undefined}
onClick={undefined}
ScreenToLocalTransform={Transform.Identity}
ContentScaling={returnOne}
PanelWidth={this.returnWidth}
PanelHeight={this.returnHeight}
NativeHeight={returnZero}
NativeWidth={returnZero}
renderDepth={0}
focus={emptyFunction}
backgroundColor={backgroundColor}
parentActive={returnTrue}
whenActiveChanged={emptyFunction}
bringToFront={emptyFunction}
docFilters={returnEmptyFilter}
ContainingCollectionView={undefined}
ContainingCollectionDoc={undefined}
/>
</div>
);
}
}
/**
* Note: window.innerWidth and window.screen.width compute different values.
* window.screen.width is the display size, however window.innerWidth is the
* display resolution which computes differently.
*/
returnWidth = () => window.innerWidth; //The windows width
returnHeight = () => (window.innerHeight - 300); //Calculating the windows height (-300 to account for topbar)
/**
* Handles the click functionality in the library panel.
* Navigates to the given doc and updates the sidebar.
* @param doc: doc for which the method is called
*/
@undoBatch
handleClick = async (doc: Doc) => {
const children = DocListCast(doc.data);
if (doc.type !== "collection" && this.sidebarActive) {
this._parents.push(this._activeDoc);
this._activeDoc = doc;
this.switchCurrentView((userDoc: Doc) => doc);
this._homeMenu = false;
this.toggleSidebar();
}
else if (doc.type === "collection" && children.length === 0) this.openFromSidebar(doc);
else {
this._parents.push(this._activeDoc);
this._activeDoc = doc;
this.switchCurrentView((userDoc: Doc) => doc);
this._homeMenu = false;
this._child = doc;
}
}
openFromSidebar = (doc: Doc) => {
this._parents.push(this._activeDoc);
this._activeDoc = doc;
this.switchCurrentView((userDoc: Doc) => doc);
this._homeMenu = false;
this._child = doc; //?
this.toggleSidebar();
}
/**
* Handles creation of array which is then rendered in renderPathbar()
*/
createPathname = () => {
const docArray = [];
this._parents.map((doc: Doc, index: any) => {
docArray.push(doc);
});
docArray.push(this._activeDoc);
return docArray;
}
// Renders the graphical pathbar
renderPathbar = () => {
const docArray = this.createPathname();
const items = docArray.map((doc: Doc, index: any) => {
if (index === 0) {
return (
<>
{this._homeMenu ?
<div className="pathbarItem">
<div className="pathbarText"
style={{ backgroundColor: "rgb(119, 37, 37)" }}
key={index}
onClick={() => this.handlePathClick(doc, index)}>{doc.title}
</div>
</div>
:
<div className="pathbarItem">
<div className="pathbarText"
key={index}
onClick={() => this.handlePathClick(doc, index)}>{doc.title}
</div>
</div>}
</>);
} else if (doc === this._activeDoc) {
return (
<div className="pathbarItem">
<FontAwesomeIcon className="pathIcon" icon="angle-right" size="lg" />
<div className="pathbarText"
style={{ backgroundColor: "rgb(119, 37, 37)" }}
key={index}
onClick={() => this.handlePathClick(doc, index)}>{doc.title}
</div>
</div>);
} else {
return (
<div className="pathbarItem">
<FontAwesomeIcon className="pathIcon" icon="angle-right" size="lg" />
<div className="pathbarText"
key={index}
onClick={() => this.handlePathClick(doc, index)}>{doc.title}
</div>
</div>);
}
});
if (this._parents.length !== 0) {
return (<div className="pathbar">
<div className="scrollmenu">
{items}
</div>
<div className="back" >
<FontAwesomeIcon onClick={this.back} icon={"chevron-left"} color="white" size={"2x"} />
</div>
<div className="hidePath" />
</div>);
} else {
return (<div className="pathbar">
<div className="scrollmenu">
{items}
</div>
<div className="hidePath" />
</div>);
}
}
// Handles when user clicks on a document in the pathbar
handlePathClick = (doc: Doc, index: number) => {
if (doc === this._library) {
this._activeDoc = doc;
this._child = null;
this.switchCurrentView((userDoc: Doc) => doc);
this._parents.length = index;
} else if (doc === this._homeDoc) {
this.returnHome();
} else {
this._activeDoc = doc;
this._child = doc;
this.switchCurrentView((userDoc: Doc) => doc);
this._parents.length = index;
}
}
// Renders the contents of the menu and sidebar
renderDefaultContent = () => {
if (this._homeMenu) {
return (
<div>
<div className="navbar">
<FontAwesomeIcon className="home" icon="home" onClick={this.returnHome} />
<div className="header" id="header">{this._homeDoc.title}</div>
<div className="cover" id="cover" onClick={(e) => this.stop(e)}></div>
<div className="toggle-btn" id="menuButton" onClick={this.toggleSidebar}>
<span></span>
<span></span>
<span></span>
</div>
</div>
{this.renderPathbar()}
</div>
);
}
let workspaces = Cast(this.userDoc.myWorkspaces, Doc) as Doc;
if (this._child) {
workspaces = this._child;
}
const buttons = DocListCast(workspaces.data).map((doc: Doc, index: any) => {
if (doc.type !== "ink") {
return (
<div
className="item"
key={index}
onClick={() => this.handleClick(doc)}>
<div className="item-title"> {doc.title} </div>
<div className="item-type">{doc.type}</div>
<FontAwesomeIcon className="right" icon="angle-right" size="lg" />
<FontAwesomeIcon className="open" onClick={() => this.openFromSidebar(doc)} icon="external-link-alt" size="lg" />
</div>);
}
});
return (
<div>
<div className="navbar">
<FontAwesomeIcon className="home" icon="home" onClick={this.returnHome} />
<div className="header" id="header">{this.sidebarActive ? "library" : this._activeDoc.title}</div>
<div className={`toggle-btn ${this.sidebarActive ? "active" : ""}`} onClick={this.toggleSidebar}>
<span></span>
<span></span>
<span></span>
</div>
<div className={`background ${this.sidebarActive ? "active" : ""}`} onClick={this.toggleSidebar}></div>
</div>
{this.renderPathbar()}
<div className={`sidebar ${this.sidebarActive ? "active" : ""}`}>
<div className="sidebarButtons">
{this._child ?
<>
{buttons}
<div
className="item" key="home"
onClick={this.returnMain}
style={{ opacity: 0.7 }}>
<FontAwesomeIcon className="right" icon="angle-double-left" size="lg" />
<div className="item-type">Return to workspaces</div>
</div>
</> :
<>
{buttons}
<div
className="item"
style={{ opacity: 0.7 }}
onClick={() => this.createNewWorkspace()}>
<FontAwesomeIcon className="right" icon="plus" size="lg" />
<div className="item-type">Create New Workspace</div>
</div>
</>
}
</div>
</div>
<div className={`blanket ${this.sidebarActive ? "active" : ""}`} onClick={this.toggleSidebar}>
</div>
</div>
);
}
/**
* Handles the Create New Workspace button in the menu
*/
@action
createNewWorkspace = async (id?: string) => {
const workspaces = Cast(this.userDoc.myWorkspaces, Doc) as Doc;
const workspaceCount = DocListCast(workspaces.data).length + 1;
const freeformOptions: DocumentOptions = {
x: 0,
y: 400,
title: "Collection " + workspaceCount,
_LODdisable: true
};
const freeformDoc = CurrentUserUtils.GuestTarget || Docs.Create.FreeformDocument([], freeformOptions);
const workspaceDoc = Docs.Create.StandardCollectionDockingDocument([{ doc: freeformDoc, initialWidth: 600, path: [Doc.UserDoc().myCatalog as Doc] }], { title: `Workspace ${workspaceCount}` }, id, "row");
const toggleTheme = ScriptField.MakeScript(`self.darkScheme = !self.darkScheme`);
const toggleComic = ScriptField.MakeScript(`toggleComicMode()`);
const cloneWorkspace = ScriptField.MakeScript(`cloneWorkspace()`);
workspaceDoc.contextMenuScripts = new List<ScriptField>([toggleTheme!, toggleComic!, cloneWorkspace!]);
workspaceDoc.contextMenuLabels = new List<string>(["Toggle Theme Colors", "Toggle Comic Mode", "New Workspace Layout"]);
Doc.AddDocToList(workspaces, "data", workspaceDoc);
// bcz: strangely, we need a timeout to prevent exceptions/issues initializing GoldenLayout (the rendering engine for Main Container)
}
stop = (e: React.MouseEvent) => {
e.stopPropagation();
}
// Button for uploading mobile audio
uploadAudioButton = () => {
if (this._activeDoc.type === "audio") {
return <div className="docButton"
title={Doc.isDocPinned(this._activeDoc) ? "Pen on" : "Pen off"}
style={{ backgroundColor: "black", color: "white" }}
// onClick={this.uploadAudio}
>
<FontAwesomeIcon className="documentdecorations-icon" size="sm" icon="upload"
/>
</div>;
}
}
// Button for switching between pen and ink mode
@action
onSwitchInking = () => {
const button = document.getElementById("inkButton") as HTMLElement;
button.style.backgroundColor = this._ink ? "white" : "black";
button.style.color = this._ink ? "black" : "white";
if (!this._ink) {
Doc.SetSelectedTool(InkTool.Pen);
this._ink = true;
} else {
Doc.SetSelectedTool(InkTool.None);
this._ink = false;
}
}
// The static ink menu that appears at the top
inkMenu = () => {
if (this._activeDoc._viewType === "docking") {
if (this._ink) {
console.log("here");
return <div className="colorSelector">
<InkOptionsMenu />
</div>;
}
}
}
undo = () => {
if (this._activeDoc.type === "collection" && this._activeDoc !== this._homeDoc && this._activeDoc.title !== "WORKSPACES") {
return (<>
<div className="docButton"
style={{ backgroundColor: "black", color: "white", fontSize: "60", opacity: UndoManager.CanUndo() ? "1" : "0.4", }}
id="undoButton"
title="undo"
onClick={(e: React.MouseEvent) => {
UndoManager.Undo();
e.stopPropagation();
}}>
<FontAwesomeIcon className="documentdecorations-icon" size="sm" icon="undo-alt" />
</div>
</>);
}
}
redo = () => {
if (this._activeDoc.type === "collection" && this._activeDoc !== this._homeDoc && this._activeDoc.title !== "WORKSPACES") {
return (<>
<div className="docButton"
style={{ backgroundColor: "black", color: "white", fontSize: "60", opacity: UndoManager.CanRedo() ? "1" : "0.4", }}
id="undoButton"
title="redo"
onClick={(e: React.MouseEvent) => {
UndoManager.Redo();
e.stopPropagation();
}}>
<FontAwesomeIcon className="documentdecorations-icon" size="sm" icon="redo-alt" />
</div>
</>);
}
}
// Button for switching into ink mode
drawInk = () => {
if (this._activeDoc._viewType === "docking") {
return (
<>
<div className="docButton"
id="inkButton"
title={Doc.isDocPinned(this._activeDoc) ? "Pen on" : "Pen off"}
onClick={this.onSwitchInking}>
<FontAwesomeIcon className="documentdecorations-icon" size="sm" icon="pen-nib"
/>
</div>
</>);
}
}
// Mobile doc button for uploading
upload = () => {
if (this._activeDoc.type === "collection" && this._activeDoc !== this._homeDoc) {
return (
<>
<div className="docButton"
id="uploadButton"
title={"uploadFile"}
onClick={this.toggleUpload}>
<FontAwesomeIcon className="documentdecorations-icon" size="sm" icon="upload"
/>
</div>
</>);
}
}
// Button to download images on the mobile
downloadDocument = () => {
if (this._activeDoc.type === "image" || this._activeDoc.type === "pdf" || this._activeDoc.type === "video") {
const url = this._activeDoc["data-path"]?.toString();
return <div className="docButton"
title={"Download Image"}
style={{ backgroundColor: "white", color: "black" }}
onClick={e => {
window.open(url);
console.log(url);
}}>
<FontAwesomeIcon className="documentdecorations-icon" size="sm" icon="download"
/>
</div>;
}
}
// Mobile audio doc
recordAudio = async () => {
// upload to server with known URL
if (this._activeDoc.title !== "mobile audio") {
this._parents.push(this._activeDoc);
}
const audioDoc = Cast(Docs.Create.AudioDocument(nullAudio, { _width: 200, _height: 100, title: "mobile audio" }), Doc) as Doc;
if (audioDoc) {
this._activeDoc = audioDoc;
this.switchCurrentView((userDoc: Doc) => audioDoc);
this._homeMenu = false;
}
}
// // Pushing the audio doc onto Dash Web through the right side bar
// uploadAudio = () => {
// const audioRightSidebar = Cast(Doc.UserDoc().rightSidebarCollection, Doc) as Doc;
// const audioDoc = this._activeDoc;
// const data = Cast(audioRightSidebar.data, listSpec(Doc));
// if (data) {
// data.push(audioDoc);
// }
// }
// Button for pinning images to presentation
pinToPresentation = () => {
// Only making button available if it is an image
if (!(this._activeDoc.type === "collection" || this._activeDoc.type === "presentation")) {
const isPinned = this._activeDoc && Doc.isDocPinned(this._activeDoc);
return <div className="docButton"
title={Doc.isDocPinned(this._activeDoc) ? "Unpin from presentation" : "Pin to presentation"}
style={{ backgroundColor: isPinned ? "black" : "white", color: isPinned ? "white" : "black" }}
onClick={e => {
if (isPinned) {
DockedFrameRenderer.UnpinDoc(this._activeDoc);
}
else {
DockedFrameRenderer.PinDoc(this._activeDoc);
}
}}>
<FontAwesomeIcon className="documentdecorations-icon" size="sm" icon="map-pin"
/>
</div>;
}
}
// Buttons for switching the menu between large and small icons
switchMenuView = () => {
if (this._activeDoc.title === this._homeDoc.title) {
return (
<div className="homeSwitch">
<div className={`list ${!this.menuListView ? "active" : ""}`} onClick={this.changeToIconView}>
<FontAwesomeIcon size="sm" icon="th-large" />
</div>
<div className={`list ${this.menuListView ? "active" : ""}`} onClick={this.changeToListView}>
<FontAwesomeIcon size="sm" icon="bars" />
</div>
</div>
);
}
}
// Logic for switching the menu into the icons
@action
changeToIconView = () => {
if (this._homeDoc._viewType = "stacking") {
this.menuListView = false;
this._homeDoc._viewType = "masonry";
this._homeDoc.columnWidth = 300;
const menuButtons = DocListCast(this._homeDoc.data);
console.log('hello');
menuButtons.map((doc: Doc, index: any) => {
console.log(index);
const buttonData = DocListCast(doc.data);
buttonData[1]._nativeWidth = 0.1;
buttonData[1]._width = 0.1;
buttonData[1]._dimMagnitude = 0;
buttonData[1]._opacity = 0;
console.log(buttonData);
console.log(doc._nativeWidth);
doc._nativeWidth = 400;
console.log(doc._nativeWidth);
});
}
}
// Logic for switching the menu into the stacking view
@action
changeToListView = () => {
if (this._homeDoc._viewType = "masonry") {
this._homeDoc._viewType = "stacking";
this.menuListView = true;
const menuButtons = DocListCast(this._homeDoc.data);
console.log('hello');
menuButtons.map((doc: Doc, index: any) => {
const buttonData = DocListCast(doc.data);
buttonData[1]._nativeWidth = 450;
buttonData[1]._dimMagnitude = 2;
buttonData[1]._opacity = 1;
console.log(doc._nativeWidth);
doc._nativeWidth = 900;
console.log(doc._nativeWidth);
});
}
}
// For setting up the presentation document for the home menu
setupDefaultPresentation = () => {
if (this._activeDoc.title !== "Presentation") {
this._parents.push(this._activeDoc);
}
const presentation = Cast(Doc.UserDoc().activePresentation, Doc) as Doc;
if (presentation) {
this._activeDoc = presentation;
this.switchCurrentView((userDoc: Doc) => presentation);
this._homeMenu = false;
}
}
// For toggling image upload pop up
@action
toggleUpload = () => this.imageUploadActive = !this.imageUploadActive
// For toggling image upload pop up
@action
toggleAudio = () => this.audioUploadActive = !this.audioUploadActive
@action
toggleUploadInCollection = () => {
const button = document.getElementById("imageButton") as HTMLElement;
button.style.backgroundColor = this.imageUploadActive ? "white" : "black";
button.style.color = this.imageUploadActive ? "black" : "white";
this.imageUploadActive = !this.imageUploadActive;
}
// For closing the image upload pop up
@action
closeUpload = () => {
this.imageUploadActive = false;
}
// Returns the image upload pop up
uploadImage = () => {
if (this.imageUploadActive) {
console.log("active");
} else if (!this.imageUploadActive) {
}
let doc;
let toggle;
if (this._homeMenu === false) {
doc = this._activeDoc;
toggle = this.toggleUploadInCollection;
} else {
doc = Cast(Doc.UserDoc().rightSidebarCollection, Doc) as Doc;
toggle = this.toggleUpload;
}
return (
<div>
<div className="closeUpload" onClick={toggle}>
<FontAwesomeIcon icon="window-close" size={"lg"} />
</div>
<Uploader Document={doc} />
</div>
);
}
displayRadialMenu = () => {
if (this._activeDoc.type === "collection" && this._activeDoc !== this._homeDoc) {
return <RadialMenu />;
}
}
onDragOver = (e: React.DragEvent) => {
e.preventDefault();
e.stopPropagation();
}
uploadImageButton = () => {
if (this._activeDoc.type === "collection" && this._activeDoc !== this._homeDoc && this._activeDoc._viewType !== "docking" && this._activeDoc.title !== "WORKSPACES") {
return <div className="docButton"
id="imageButton"
title={Doc.isDocPinned(this._activeDoc) ? "Pen on" : "Pen off"}
onClick={this.toggleUpload}>
<FontAwesomeIcon className="documentdecorations-icon" size="sm" icon="upload"
/>
</div>;
}
}
switchToMobileUploads = () => {
if (this._activeDoc.title !== "Presentation") {
this._parents.push(this._activeDoc);
}
const mobileUpload = Cast(Doc.UserDoc().rightSidebarCollection, Doc) as Doc;
console.log(mobileUpload.title);
this._activeDoc = mobileUpload;
this.switchCurrentView((userDoc: Doc) => mobileUpload);
this._homeMenu = false;
}
render() {
return (
<div className="mobileInterface-container" onDragOver={this.onDragOver}>
<SettingsManager />
<div className={`image-upload ${this.imageUploadActive ? "active" : ""}`}>
{this.uploadImage()}
</div>
<div className={`audio-upload ${this.audioUploadActive ? "active" : ""}`}>
<AudioUpload />
</div>
{this.switchMenuView()}
{this.inkMenu()}
<GestureOverlay>
<div className="docButtonContainer">
{this.pinToPresentation()}
{this.downloadDocument()}
{this.undo()}
{this.drawInk()}
{this.redo()}
{/* {this.upload()} */}
{this.uploadImageButton()}
{/* {this.uploadAudioButton()} */}
</div>
{this.displayWorkspaces()}
{this.renderDefaultContent()}
</GestureOverlay>
{this.displayRadialMenu()}
</div>
);
}
}
Scripting.addGlobal(function switchMobileView(doc: (userDoc: Doc) => Doc, renderView?: () => JSX.Element, onSwitch?: () => void) { return MobileInterface.Instance.switchCurrentView(doc, renderView, onSwitch); },
"changes the active document displayed on the mobile, (doc: any)");
Scripting.addGlobal(function openMobilePresentation() { return MobileInterface.Instance.setupDefaultPresentation(); },
"opens the presentation on mobile");
Scripting.addGlobal(function toggleMobileSidebar() { return MobileInterface.Instance.toggleSidebar(); });
Scripting.addGlobal(function openMobileAudio() { return MobileInterface.Instance.toggleAudio(); });
Scripting.addGlobal(function openMobileSettings() { return SettingsManager.Instance.open(); });
Scripting.addGlobal(function openWorkspaces() { return MobileInterface.Instance.openWorkspaces(); });
Scripting.addGlobal(function uploadImageMobile() { return MobileInterface.Instance.toggleUpload(); });
Scripting.addGlobal(function switchToMobileUploads() { return MobileInterface.Instance.switchToMobileUploads(); });
Scripting.addGlobal(function switchToLibrary() { return MobileInterface.Instance.switchToLibrary(); });
|