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
|
import { action, computed, observable } from "mobx";
import { observer } from "mobx-react";
import { Document } from "../../../fields/Document";
import { ListField } from "../../../fields/ListField";
import { SelectionManager } from "../../util/SelectionManager";
import { ContextMenu } from "../ContextMenu";
import React = require("react");
import { KeyStore } from "../../../fields/KeyStore";
import { NumberField } from "../../../fields/NumberField";
import { CollectionFreeFormView } from "./collectionFreeForm/CollectionFreeFormView";
import { CollectionDockingView } from "./CollectionDockingView";
import { CollectionSchemaView } from "./CollectionSchemaView";
import { CollectionViewProps } from "./CollectionViewBase";
import { CollectionTreeView } from "./CollectionTreeView";
import { Field, FieldId, FieldWaiting } from "../../../fields/Field";
import { CurrentUserUtils } from "../../../server/authentication/models/current_user_utils";
export enum CollectionViewType {
Invalid,
Freeform,
Schema,
Docking,
Tree
}
export const COLLECTION_BORDER_WIDTH = 1;
@observer
export class CollectionView extends React.Component<CollectionViewProps> {
public static LayoutString(fieldKey: string = "DataKey") {
return `<${CollectionView.name} Document={Document}
ScreenToLocalTransform={ScreenToLocalTransform} fieldKey={${fieldKey}} panelWidth={PanelWidth} panelHeight={PanelHeight} isSelected={isSelected} select={select} bindings={bindings}
isTopMost={isTopMost} SelectOnLoad={selectOnLoad} BackgroundView={BackgroundView} focus={focus}/>`;
}
@observable
public SelectedDocs: FieldId[] = [];
public active: () => boolean = () => CollectionView.Active(this);
addDocument = (doc: Document, allowDuplicates: boolean): boolean => { return CollectionView.AddDocument(this.props, doc, allowDuplicates); }
removeDocument = (doc: Document): boolean => { return CollectionView.RemoveDocument(this.props, doc); }
get subView() { return CollectionView.SubView(this); }
public static Active(self: CollectionView): boolean {
var isSelected = self.props.isSelected();
var childSelected = SelectionManager.SelectedDocuments().some(view => view.props.ContainingCollectionView == self);
var topMost = self.props.isTopMost;
return isSelected || childSelected || topMost;
}
static createsCycle(documentToAdd: Document, containerDocument: Document): boolean {
let data = documentToAdd.GetList<Document>(KeyStore.Data, []);
for (let i = 0; i < data.length; i++) {
if (CollectionView.createsCycle(data[i], containerDocument))
return true;
}
let annots = documentToAdd.GetList<Document>(KeyStore.Annotations, []);
for (let i = 0; i < annots.length; i++) {
if (CollectionView.createsCycle(annots[i], containerDocument))
return true;
}
for (let containerProto: any = containerDocument; containerProto && containerProto != FieldWaiting; containerProto = containerProto.GetPrototype()) {
if (containerProto.Id == documentToAdd.Id)
return true;
}
return false;
}
@action
public static AddDocument(props: CollectionViewProps, doc: Document, allowDuplicates: boolean): boolean {
var curPage = props.Document.GetNumber(KeyStore.CurPage, -1);
doc.SetOnPrototype(KeyStore.Page, new NumberField(curPage));
if (curPage >= 0) {
doc.SetOnPrototype(KeyStore.AnnotationOn, props.Document);
}
if (props.Document.Get(props.fieldKey) instanceof Field) {
//TODO This won't create the field if it doesn't already exist
const value = props.Document.GetData(props.fieldKey, ListField, new Array<Document>())
if (!CollectionView.createsCycle(doc, props.Document)) {
if (!value.some(v => v.Id == doc.Id) || allowDuplicates)
value.push(doc);
}
else
return false;
} else {
let proto = props.Document.GetPrototype();
if (!proto || proto == FieldWaiting || !CollectionView.createsCycle(proto, doc)) {
props.Document.SetOnPrototype(props.fieldKey, new ListField([doc]));
}
else
return false;
}
return true;
}
@action
public static RemoveDocument(props: CollectionViewProps, doc: Document): boolean {
//TODO This won't create the field if it doesn't already exist
const value = props.Document.GetData(props.fieldKey, ListField, new Array<Document>())
let index = -1;
for (let i = 0; i < value.length; i++) {
if (value[i].Id == doc.Id) {
index = i;
break;
}
}
doc.GetTAsync(KeyStore.AnnotationOn, Document).then((annotationOn) => {
if (annotationOn == props.Document) {
doc.Set(KeyStore.AnnotationOn, undefined, true);
}
})
if (index !== -1) {
value.splice(index, 1)
//SelectionManager.DeselectAll()
ContextMenu.Instance.clearItems()
return true;
}
return false
}
get collectionViewType(): CollectionViewType {
let Document = this.props.Document;
let viewField = Document.GetT(KeyStore.ViewType, NumberField);
if (viewField === FieldWaiting) {
return CollectionViewType.Invalid;
} else if (viewField) {
return viewField.Data;
} else {
return CollectionViewType.Freeform;
}
}
specificContextMenu = (e: React.MouseEvent): void => {
if (!e.isPropagationStopped() && this.props.Document.Id != CurrentUserUtils.MainDocId) { // need to test this because GoldenLayout causes a parallel hierarchy in the React DOM for its children and the main document view7
ContextMenu.Instance.addItem({ description: "Freeform", event: () => this.props.Document.SetNumber(KeyStore.ViewType, CollectionViewType.Freeform) })
ContextMenu.Instance.addItem({ description: "Schema", event: () => this.props.Document.SetNumber(KeyStore.ViewType, CollectionViewType.Schema) })
ContextMenu.Instance.addItem({ description: "Treeview", event: () => this.props.Document.SetNumber(KeyStore.ViewType, CollectionViewType.Tree) })
}
}
public static SubView(self: CollectionView) {
let subProps = { ...self.props, addDocument: self.addDocument, removeDocument: self.removeDocument, active: self.active, CollectionView: self }
switch (self.collectionViewType) {
case CollectionViewType.Freeform: return (<CollectionFreeFormView {...subProps} />)
case CollectionViewType.Schema: return (<CollectionSchemaView {...subProps} />)
case CollectionViewType.Docking: return (<CollectionDockingView {...subProps} />)
case CollectionViewType.Tree: return (<CollectionTreeView {...subProps} />)
}
return (null);
}
render() {
return (<div className="collectionView-cont" onContextMenu={this.specificContextMenu}>
{this.subView}
</div>)
}
}
|