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
|
import { action, configure, reaction, computed } from 'mobx';
import "normalize.css";
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import { DocumentDecorations } from './DocumentDecorations';
import { Documents } from '../documents/Documents';
import { Document } from '../../fields/Document';
import { KeyStore } from '../../fields/KeyStore';
import "./Main.scss";
import { ContextMenu } from './ContextMenu';
import { DocumentView } from './nodes/DocumentView';
import { Server } from '../Server';
import { Utils } from '../../Utils';
import { ServerUtils } from '../../server/ServerUtil';
import { MessageStore, DocumentTransfer } from '../../server/Message';
import { Database } from '../../server/database';
import * as request from 'request'
import { Transform } from '../util/Transform';
import { CollectionDockingView } from './collections/CollectionDockingView';
import { FieldWaiting } from '../../fields/Field';
import { UndoManager } from '../util/UndoManager';
configure({
enforceActions: "observed"
});
window.addEventListener("drop", function (e) {
e.preventDefault();
}, false)
window.addEventListener("dragover", function (e) {
e.preventDefault();
}, false)
document.addEventListener("pointerdown", action(function (e: PointerEvent) {
if (!ContextMenu.Instance.intersects(e.pageX, e.pageY)) {
ContextMenu.Instance.clearItems()
}
}), true)
let mainDocId: string;
request.get(window.location.origin + "/getUserDocId", (error, response, body) => {
if (body) {
mainDocId = body;
} else {
mainDocId = Utils.GenerateGuid();
request.post(window.location.origin + "/setUserDocId", {
body: {
userDocumentId: mainDocId
},
json: true
})
}
init();
})
//runInAction(() =>
// let doc1 = Documents.TextDocument({ title: "hello" });
// let doc2 = doc1.MakeDelegate();
// doc2.Set(KS.X, new NumberField(150));
// doc2.Set(KS.Y, new NumberField(20));
// let doc3 = Documents.ImageDocument("https://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Cat03.jpg/1200px-Cat03.jpg", {
// x: 450, y: 100, title: "cat 1"
// });
// doc3.Set(KeyStore.Data, new ImageField);
// const schemaDocs = Array.from(Array(5).keys()).map(v => Documents.ImageDocument("https://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Cat03.jpg/1200px-Cat03.jpg", {
// x: 50 + 100 * v, y: 50, width: 100, height: 100, title: "cat" + v
// }));
// schemaDocs[0].SetData(KS.Author, "Tyler", TextField);
// schemaDocs[4].SetData(KS.Author, "Bob", TextField);
// schemaDocs.push(doc2);
// const doc7 = Documents.SchemaDocument(schemaDocs)
function init() {
Documents.initProtos(() => {
Utils.EmitCallback(Server.Socket, MessageStore.GetField, mainDocId, (res: any) => {
console.log("HELLO WORLD")
console.log("RESPONSE: " + res)
let mainContainer: Document;
let mainfreeform: Document;
if (res) {
mainContainer = ServerUtils.FromJson(res) as Document;
mainContainer.GetAsync(KeyStore.ActiveFrame, field => mainfreeform = field as Document);
}
else {
mainContainer = Documents.DockDocument(JSON.stringify({ content: [{ type: 'row', content: [] }] }), { title: "main container" }, mainDocId);
Utils.Emit(Server.Socket, MessageStore.AddDocument, new DocumentTransfer(mainContainer.ToJson()))
setTimeout(() => {
mainfreeform = Documents.FreeformDocument([], { x: 0, y: 400, title: "mini collection" });
Utils.Emit(Server.Socket, MessageStore.AddDocument, new DocumentTransfer(mainfreeform.ToJson()));
var docs = [mainfreeform].map(doc => CollectionDockingView.makeDocumentConfig(doc));
mainContainer.SetText(KeyStore.Data, JSON.stringify({ content: [{ type: 'row', content: docs }] }));
mainContainer.Set(KeyStore.ActiveFrame, mainfreeform);
}, 0);
}
let addImageNode = action(() => {
mainfreeform.GetList<Document>(KeyStore.Data, []).push(Documents.ImageDocument("https://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Cat03.jpg/1200px-Cat03.jpg", {
x: 0, y: 300, width: 200, height: 200, title: "added note"
}));
})
let addTextNode = action(() => {
mainfreeform.GetList<Document>(KeyStore.Data, []).push(Documents.TextDocument({
x: 0, y: 300, width: 200, height: 200, title: "added note"
}));
})
let addColNode = action(() => {
mainfreeform.GetList<Document>(KeyStore.Data, []).push(Documents.FreeformDocument([], {
x: 0, y: 300, width: 200, height: 200, title: "added note"
}));
})
let addSchemaNode = action(() => {
mainfreeform.GetList<Document>(KeyStore.Data, []).push(Documents.SchemaDocument([Documents.TextDocument()], {
x: 0, y: 300, width: 200, height: 200, title: "added note"
}));
})
let clearDatabase = action(() => {
Utils.Emit(Server.Socket, MessageStore.DeleteAll, {});
})
ReactDOM.render((
<div style={{ position: "absolute", width: "100%", height: "100%" }}>
<DocumentView Document={mainContainer}
AddDocument={undefined} RemoveDocument={undefined} ScreenToLocalTransform={() => Transform.Identity}
ContentScaling={() => 1}
PanelWidth={() => 0}
PanelHeight={() => 0}
isTopMost={true}
ContainingCollectionView={undefined} />
<DocumentDecorations />
<ContextMenu />
<button style={{
position: 'absolute',
bottom: '0px',
left: '0px',
width: '150px'
}} onClick={addImageNode}>Add Image</button>
<button style={{
position: 'absolute',
bottom: '25px',
left: '0px',
width: '150px'
}} onClick={addTextNode}>Add Text</button>
<button style={{
position: 'absolute',
bottom: '50px',
left: '0px',
width: '150px'
}} onClick={addColNode}>Add Collection</button>
<button style={{
position: 'absolute',
bottom: '100',
left: '0px',
width: '150px'
}} onClick={addSchemaNode}>Add Schema</button>
<button style={{
position: 'absolute',
bottom: '75px',
left: '0px',
width: '150px'
}} onClick={clearDatabase}>Clear Database</button>
<button style={{
position: 'absolute',
bottom: '25',
right: '0px',
width: '150px'
}} onClick={() => UndoManager.Undo()}>Undo</button>
<button style={{
position: 'absolute',
bottom: '0',
right: '0px',
width: '150px'
}} onClick={() => UndoManager.Redo()}>Redo</button>
</div>),
document.getElementById('root'));
})
});
}
// let doc5 = Documents.ImageDocument("https://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Cat03.jpg/1200px-Cat03.jpg", {
// x: 650, y: 500, width: 600, height: 600, title: "cat 2"
// });
// let docset2 = new Array<Document>(doc4);//, doc1, doc3);
// let doc6 = Documents.CollectionDocument(docset2, {
// x: 350, y: 100, width: 600, height: 600, title: "docking collection"
// });
// let mainNodes = mainContainer.GetOrCreate(KeyStore.Data, ListField);
// mainNodes.Data.push(doc6);
// mainNodes.Data.push(doc2);
// mainNodes.Data.push(doc4);
// mainNodes.Data.push(doc3);
// mainNodes.Data.push(doc5);
// mainNodes.Data.push(doc1);
//mainNodes.Data.push(doc2);
//mainNodes.Data.push(doc6);
// mainContainer.Set(KeyStore.Data, mainNodes);
//}
//);
|