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
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
|
import React = require("react");
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { CursorProperty } from "csstype";
import { action, computed, IReactionDisposer, observable, reaction, runInAction } from "mobx";
import { observer } from "mobx-react";
import { DataSym, Doc, HeightSym, Opt, WidthSym } from "../../../fields/Doc";
import { Id } from "../../../fields/FieldSymbols";
import { List } from "../../../fields/List";
import { listSpec } from "../../../fields/Schema";
import { SchemaHeaderField } from "../../../fields/SchemaHeaderField";
import { BoolCast, Cast, NumCast, ScriptCast, StrCast } from "../../../fields/Types";
import { TraceMobx } from "../../../fields/util";
import { emptyFunction, returnEmptyDoclist, returnFalse, returnTrue, returnZero, setupMoveUpEvents, smoothScroll, Utils } from "../../../Utils";
import { Docs, DocUtils } from "../../documents/Documents";
import { DragManager, dropActionType } from "../../util/DragManager";
import { SnappingManager } from "../../util/SnappingManager";
import { Transform } from "../../util/Transform";
import { undoBatch } from "../../util/UndoManager";
import { ContextMenu } from "../ContextMenu";
import { ContextMenuProps } from "../ContextMenuItem";
import { EditableView } from "../EditableView";
import { LightboxView } from "../LightboxView";
import { CollectionFreeFormDocumentView } from "../nodes/CollectionFreeFormDocumentView";
import { DocFocusOptions, DocumentView, DocumentViewProps, ViewAdjustment } from "../nodes/DocumentView";
import { StyleProp } from "../StyleProvider";
import { CollectionMasonryViewFieldRow } from "./CollectionMasonryViewFieldRow";
import "./CollectionStackingView.scss";
import { CollectionSubView } from "./CollectionSubView";
import { CollectionViewType } from "./CollectionView";
import { CollectionNoteTakingViewFieldColumn } from "./CollectionNoteTakingViewFieldColumn";
const _global = (window /* browser */ || global /* node */) as any;
export type collectionNoteTakingViewProps = {
chromeHidden?: boolean;
// view type is stacking
viewType?: CollectionViewType;
NativeWidth?: () => number;
NativeHeight?: () => number;
};
@observer
export class CollectionNoteTakingView extends CollectionSubView<Partial<collectionNoteTakingViewProps>>() {
//-------------------------------------------- Delete? --------------------------------------------//
// Not sure what a pivot field is. Seems like we cause reaction in MobX get rid of it once we exit this view
_pivotFieldDisposer?: IReactionDisposer;
// Seems like we cause reaction in MobX get rid of our height once we exit this view
_autoHeightDisposer?: IReactionDisposer;
//------------------------------------------------------------------------------------------------//
_masonryGridRef: HTMLDivElement | null = null;
// used in a column dragger, likely due for the masonry grid view. We want to use this
_draggerRef = React.createRef<HTMLDivElement>();
// keeping track of documents. Updated on internal and external drops. What's the difference?
_docXfs: { height: () => number, width: () => number, stackedDocTransform: () => Transform }[] = [];
// Doesn't look like this field is being used anywhere. Obsolete?
_columnStart: number = 0;
// map of node headers to their heights. Used in Masonry
@observable _heightMap = new Map<string, number>();
// Assuming that this is the current css cursor style
@observable _cursor: CursorProperty = "grab";
// gets reset whenever we scroll. Not sure what it is
@observable _scroll = 0; // used to force the document decoration to update when scrolling
// does this mean whether the browser is hidden? Or is chrome something else entirely?
@computed get chromeHidden() { return this.props.chromeHidden || BoolCast(this.layoutDoc.chromeHidden); }
// it looks like this gets the column headers that Mehek was showing just now
@computed get columnHeaders() { return Cast(this.layoutDoc._columnHeaders, listSpec(SchemaHeaderField), null); }
// Still not sure what a pivot is, but it appears that we can actually filter docs somehow?
// @computed get pivotField() { return StrCast(this.layoutDoc._pivotField); }
@computed get pivotField() { return "Col" }
// filteredChildren is what you want to work with. It's the list of things that you're currently displaying
@computed get filteredChildren() { return this.childLayoutPairs.filter(pair => (pair.layout instanceof Doc) && !pair.layout.hidden).map(pair => pair.layout); }
// how much margin we give the header
@computed get headerMargin() { return this.props.styleProvider?.(this.layoutDoc, this.props, StyleProp.HeaderMargin); }
@computed get xMargin() { return NumCast(this.layoutDoc._xMargin, 2 * Math.min(this.gridGap, .05 * this.props.PanelWidth())); }
@computed get yMargin() { return this.props.yPadding || NumCast(this.layoutDoc._yMargin, 5); } // 2 * this.gridGap)); }
@computed get gridGap() { return NumCast(this.layoutDoc._gridGap, 10); }
// are we stacking or masonry?
@computed get isStackingView() { return (this.props.viewType ?? this.layoutDoc._viewType) === CollectionViewType.Stacking || (this.props.viewType ?? this.layoutDoc._viewType) === CollectionViewType.NoteTaking; }
// this is the number of StackingViewFieldColumns that we have
@computed get numGroupColumns() { return this.isStackingView ? Math.max(1, this.Sections.size + (this.showAddAGroup ? 1 : 0)) : 1; }
// reveals a button to add a group in masonry view
@computed get showAddAGroup() { return this.pivotField && !this.chromeHidden; }
// columnWidth handles the margin on the left and right side of the documents
@computed get columnWidth() {
return Math.min(this.props.PanelWidth() - 2 * this.xMargin,
this.isStackingView ? Number.MAX_VALUE : this.layoutDoc._columnWidth === -1 ? this.props.PanelWidth() - 2 * this.xMargin : NumCast(this.layoutDoc._columnWidth, 250));
}
@computed get NodeWidth() { return this.props.PanelWidth() - this.gridGap; }
constructor(props: any) {
super(props);
if (this.columnHeaders === undefined) {
// TODO: what is a layout doc? Is it literally how this document is supposed to be layed out?
// here we're making an empty list of column headers (again, what Mehek showed us)
this.layoutDoc._columnHeaders = new List<SchemaHeaderField>();
}
}
// TODO: plj - these are the children
children = (docs: Doc[]) => {
//TODO: can somebody explain me to what exactly TraceMobX is?
TraceMobx();
// appears that we are going to reset the _docXfs. TODO: what is Xfs?
this._docXfs.length = 0;
return docs.map((d, i) => {
const height = () => this.getDocHeight(d);
const width = () => this.getDocWidth(d);
// assuming we need to get rowSpan because we might be dealing with many columns. Grid gap makes sense if multiple columns
const rowSpan = Math.ceil((height() + this.gridGap) / this.gridGap);
// just getting the style
const style = this.isStackingView ? { width: width(), marginTop: i ? this.gridGap : 0, height: height() } : { gridRowEnd: `span ${rowSpan}` };
// So we're choosing whether we're going to render a column or a masonry doc
return <div className={`collectionStackingView-${this.isStackingView ? "columnDoc" : "masonryDoc"}`} key={d[Id]} style={style} >
{this.getDisplayDoc(d, width)}
</div>;
});
}
@action
setDocHeight = (key: string, sectionHeight: number) => {
this._heightMap.set(key, sectionHeight);
}
// is sections that all collections inherit? I think this is how we show the masonry/columns
//TODO: this seems important
get Sections() {
// appears that pivot field IS actually for sorting
if (!this.pivotField || this.columnHeaders instanceof Promise) return new Map<SchemaHeaderField, Doc[]>();
if (this.columnHeaders === undefined) {
setTimeout(() => this.layoutDoc._columnHeaders = new List<SchemaHeaderField>(), 0);
return new Map<SchemaHeaderField, Doc[]>();
}
const columnHeaders = Array.from(this.columnHeaders);
const fields = new Map<SchemaHeaderField, Doc[]>(columnHeaders.map(sh => [sh, []] as [SchemaHeaderField, []]));
let changed = false;
this.filteredChildren.map(d => {
if (!d[this.pivotField]) {
d[this.pivotField] = `0`
};
const sectionValue = (d[this.pivotField] ? d[this.pivotField] : `0`) as object;
// the next five lines ensures that floating point rounding errors don't create more than one section -syip
const parsed = parseInt(sectionValue.toString());
const castedSectionValue = !isNaN(parsed) ? parsed : sectionValue;
// look for if header exists already
const existingHeader = columnHeaders.find(sh => sh.heading === (castedSectionValue ? castedSectionValue.toString() : `0`));
if (existingHeader) {
fields.get(existingHeader)!.push(d);
}
else {
const newSchemaHeader = new SchemaHeaderField(castedSectionValue ? castedSectionValue.toString() : `0`);
fields.set(newSchemaHeader, [d]);
columnHeaders.push(newSchemaHeader);
changed = true;
}
});
// remove all empty columns if hideHeadings is set
// we will want to have something like this, so that we can hide columns and add them back in
if (this.layoutDoc._columnsHideIfEmpty) {
Array.from(fields.keys()).filter(key => !fields.get(key)!.length).map(header => {
fields.delete(header);
columnHeaders.splice(columnHeaders.indexOf(header), 1);
changed = true;
});
}
changed && setTimeout(action(() => this.columnHeaders?.splice(0, this.columnHeaders.length, ...columnHeaders)), 0);
return fields;
}
componentDidMount() {
super.componentDidMount?.();
// reset section headers when a new filter is inputted
this._pivotFieldDisposer = reaction(
() => this.pivotField,
() => this.layoutDoc._columnHeaders = new List()
);
//TODO: where the heck are we getting filters from?
this._autoHeightDisposer = reaction(() => this.layoutDoc._autoHeight,
autoHeight => autoHeight && this.props.setHeight(Math.min(NumCast(this.layoutDoc._maxHeight, Number.MAX_SAFE_INTEGER),
this.headerMargin + (this.isStackingView ?
Math.max(...this.refList.map(r => Number(getComputedStyle(r).height.replace("px", "")))) :
this.refList.reduce((p, r) => p + Number(getComputedStyle(r).height.replace("px", "")), 0)))));
}
componentWillUnmount() {
super.componentWillUnmount();
this._pivotFieldDisposer?.();
this._autoHeightDisposer?.();
}
@action
moveDocument = (doc: Doc, targetCollection: Doc | undefined, addDocument: (document: Doc) => boolean): boolean => {
return this.props.removeDocument?.(doc) && addDocument?.(doc) ? true : false;
}
createRef = (ele: HTMLDivElement | null) => {
this._masonryGridRef = ele;
this.createDashEventsTarget(ele!); //so the whole grid is the drop target?
}
@computed get onChildClickHandler() { return () => this.props.childClickScript || ScriptCast(this.Document.onChildClick); }
@computed get onChildDoubleClickHandler() { return () => this.props.childDoubleClickScript || ScriptCast(this.Document.onChildDoubleClick); }
addDocTab = (doc: Doc, where: string) => {
if (where === "inPlace" && this.layoutDoc.isInPlaceContainer) {
this.dataDoc[this.props.fieldKey] = new List<Doc>([doc]);
return true;
}
return this.props.addDocTab(doc, where);
}
scrollToBottom = () => {
smoothScroll(500, this._mainCont!, this._mainCont!.scrollHeight);
}
// let's dive in and get the actual document we want to drag/move around
focusDocument = (doc: Doc, options?: DocFocusOptions) => {
Doc.BrushDoc(doc);
let focusSpeed = 0;
const found = this._mainCont && Array.from(this._mainCont.getElementsByClassName("documentView-node")).find((node: any) => node.id === doc[Id]);
if (found) {
const top = found.getBoundingClientRect().top;
const localTop = this.props.ScreenToLocalTransform().transformPoint(0, top);
if (Math.floor(localTop[1]) !== 0) {
smoothScroll(focusSpeed = doc.presTransition || doc.presTransition === 0 ? NumCast(doc.presTransition) : 500, this._mainCont!, localTop[1] + this._mainCont!.scrollTop);
}
}
const endFocus = async (moved: boolean) => options?.afterFocus ? options?.afterFocus(moved) : ViewAdjustment.doNothing;
this.props.focus(this.rootDoc, {
willZoom: options?.willZoom, scale: options?.scale, afterFocus: (didFocus: boolean) =>
new Promise<ViewAdjustment>(res => setTimeout(async () => res(await endFocus(didFocus)), focusSpeed))
});
}
styleProvider = (doc: Doc | undefined, props: Opt<DocumentViewProps>, property: string) => {
if (property === StyleProp.Opacity && doc) {
if (this.props.childOpacity) {
return this.props.childOpacity();
}
if (this.Document._currentFrame !== undefined) {
return CollectionFreeFormDocumentView.getValues(doc, NumCast(this.Document._currentFrame))?.opacity;
}
}
return this.props.styleProvider?.(doc, props, property);
}
isContentActive = () => this.props.isSelected() || this.props.isContentActive();
// this is what renders the document that you see on the screen
// called in Children: this actually adds a document to our children list
getDisplayDoc(doc: Doc, width: () => number) {
const dataDoc = (!doc.isTemplateDoc && !doc.isTemplateForField && !doc.PARAMS) ? undefined : this.props.DataDoc;
const height = () => this.getDocHeight(doc);
let dref: Opt<DocumentView>;
const stackedDocTransform = () => this.getDocTransform(doc, dref);
this._docXfs.push({ stackedDocTransform, width, height });
//DocumentView is how the node will be rendered
return <DocumentView ref={r => dref = r || undefined}
Document={doc}
DataDoc={dataDoc || (!Doc.AreProtosEqual(doc[DataSym], doc) && doc[DataSym])}
renderDepth={this.props.renderDepth + 1}
PanelWidth={width}
PanelHeight={height}
styleProvider={this.styleProvider}
layerProvider={this.props.layerProvider}
docViewPath={this.props.docViewPath}
fitWidth={this.props.childFitWidth}
isContentActive={emptyFunction}
isDocumentActive={this.isContentActive}
LayoutTemplate={this.props.childLayoutTemplate}
LayoutTemplateString={this.props.childLayoutString}
freezeDimensions={this.props.childFreezeDimensions}
NativeWidth={this.props.childIgnoreNativeSize ? returnZero : this.props.childFitWidth?.(doc) || doc._fitWidth && !Doc.NativeWidth(doc) ? width : undefined} // explicitly ignore nativeWidth/height if childIgnoreNativeSize is set- used by PresBox
NativeHeight={this.props.childIgnoreNativeSize ? returnZero : this.props.childFitWidth?.(doc) || doc._fitWidth && !Doc.NativeHeight(doc) ? height : undefined}
dontCenter={this.props.childIgnoreNativeSize ? "xy" : undefined}
dontRegisterView={dataDoc ? true : BoolCast(this.layoutDoc.childDontRegisterViews, this.props.dontRegisterView)}
rootSelected={this.rootSelected}
showTitle={this.props.childShowTitle}
dropAction={StrCast(this.layoutDoc.childDropAction) as dropActionType}
onClick={this.onChildClickHandler}
onDoubleClick={this.onChildDoubleClickHandler}
ScreenToLocalTransform={stackedDocTransform}
focus={this.focusDocument}
docFilters={this.childDocFilters}
hideDecorationTitle={this.props.childHideDecorationTitle?.()}
hideResizeHandles={this.props.childHideResizeHandles?.()}
hideTitle={this.props.childHideTitle?.()}
docRangeFilters={this.childDocRangeFilters}
searchFilterDocs={this.searchFilterDocs}
ContainingCollectionDoc={this.props.CollectionView?.props.Document}
ContainingCollectionView={this.props.CollectionView}
addDocument={this.props.addDocument}
moveDocument={this.props.moveDocument}
removeDocument={this.props.removeDocument}
contentPointerEvents={StrCast(this.layoutDoc.contentPointerEvents)}
whenChildContentsActiveChanged={this.props.whenChildContentsActiveChanged}
addDocTab={this.addDocTab}
bringToFront={returnFalse}
scriptContext={this.props.scriptContext}
pinToPres={this.props.pinToPres}
/>;
}
getDocTransform(doc: Doc, dref?: DocumentView) {
const y = this._scroll; // required for document decorations to update when the text box container is scrolled
const { scale, translateX, translateY } = Utils.GetScreenTransform(dref?.ContentDiv || undefined);
// the document view may center its contents and if so, will prepend that onto the screenToLocalTansform. so we have to subtract that off
return new Transform(- translateX + (dref?.centeringX || 0), - translateY + (dref?.centeringY || 0), 1).scale(this.props.ScreenToLocalTransform().Scale);
}
getDocWidth(d?: Doc) {
if (!d) return 0;
const childLayoutDoc = Doc.Layout(d, this.props.childLayoutTemplate?.());
// TODO: pj - replace with a better way to calculate the margin
let margin = 25;
d.margin = 25;
if (this.columnWidth < 150){
margin = 0;
}
const maxWidth = (this.columnWidth / this.numGroupColumns) - (margin * 2);
if (!this.layoutDoc._columnsFill && !(childLayoutDoc._fitWidth || this.props.childFitWidth?.(d))) {
return Math.min(d[WidthSym](), maxWidth);
}
return maxWidth;
}
getDocHeight(d?: Doc) {
if (!d || d.hidden) return 0;
const childLayoutDoc = Doc.Layout(d, this.props.childLayoutTemplate?.());
const childDataDoc = (!d.isTemplateDoc && !d.isTemplateForField && !d.PARAMS) ? undefined : this.props.DataDoc;
const maxHeight = (lim => lim === 0 ? this.props.PanelWidth() : lim === -1 ? 10000 : lim)(NumCast(this.layoutDoc.childLimitHeight, -1));
const nw = Doc.NativeWidth(childLayoutDoc, childDataDoc) || (!(childLayoutDoc._fitWidth || this.props.childFitWidth?.(d)) ? d[WidthSym]() : 0);
const nh = Doc.NativeHeight(childLayoutDoc, childDataDoc) || (!(childLayoutDoc._fitWidth || this.props.childFitWidth?.(d)) ? d[HeightSym]() : 0);
if (nw && nh) {
const colWid = this.columnWidth / (this.isStackingView ? this.numGroupColumns : 1);
const docWid = this.layoutDoc._columnsFill ? colWid : Math.min(this.getDocWidth(d), colWid);
return Math.min(
maxHeight,
docWid * nh / nw);
}
const childHeight = NumCast(childLayoutDoc._height);
const panelHeight = (childLayoutDoc._fitWidth || this.props.childFitWidth?.(d)) ? Number.MAX_SAFE_INTEGER : this.props.PanelHeight() - 2 * this.yMargin;
return Math.min(childHeight, maxHeight, panelHeight);
}
// This following three functions must be from the view Mehek showed
columnDividerDown = (e: React.PointerEvent) => {
runInAction(() => this._cursor = "grabbing");
setupMoveUpEvents(this, e, this.onDividerMove, action(() => this._cursor = "grab"), emptyFunction);
}
@action
onDividerMove = (e: PointerEvent, down: number[], delta: number[]) => {
this.layoutDoc._columnWidth = Math.max(10, this.columnWidth + delta[0]);
return false;
}
@computed get columnDragger() {
return <div className="collectionStackingView-columnDragger" onPointerDown={this.columnDividerDown} ref={this._draggerRef}
style={{ cursor: this._cursor, left: `${this.columnWidth + this.xMargin}px`, top: `${Math.max(0, this.yMargin - 9)}px` }} >
<FontAwesomeIcon icon={"arrows-alt-h"} />
</div>;
}
// TODO: plj
@action
onPointerOver = (e: React.PointerEvent) => {
// console.log("hovering over something")
if (DragManager.docsBeingDragged.length) {
// essentially copying code from onInternalDrop for this:
const doc = DragManager.docsBeingDragged[0];
// console.log(doc[LayoutSym]())
console.log(doc[DataSym]);
console.log(Doc.IndexOf(doc, this.childDocs));
}
}
//used in onPointerOver to swap two nodes in the rendered filtered children list
swapNodes = (i: number, j: number) => {
}
//plj added this
@action
onPointerDown = (e: React.PointerEvent) => {
}
// TODO: plj - look at this. Start with making changes to db, and then transition to client side
@undoBatch
@action
onInternalDrop = (e: Event, de: DragManager.DropEvent) => {
// Fairly confident that this is where the swapping of nodes in the various arrays happens
console.log('drop')
const where = [de.x, de.y];
// start at -1 until we're sure we want to add it to the column
let dropInd = -1;
let dropAfter = 0;
if (de.complete.docDragData) {
// going to re-add the docs to the _docXFs based on position of where we just dropped
this._docXfs.map((cd, i) => {
const pos = cd.stackedDocTransform().inverse().transformPoint(-2 * this.gridGap, -2 * this.gridGap);
const pos1 = cd.stackedDocTransform().inverse().transformPoint(cd.width(), cd.height());
if (where[0] > pos[0] && where[0] < pos1[0] && where[1] > pos[1] && (i === this._docXfs.length - 1 || where[1] < pos1[1])) {
dropInd = i;
const axis = this.isStackingView ? 1 : 0;
dropAfter = where[axis] > (pos[axis] + pos1[axis]) / 2 ? 1 : 0;
}
});
const oldDocs = this.childDocs.length;
if (super.onInternalDrop(e, de)) {
// check to see if we actually need anything to the new column of nodes (if droppedDocs != empty)
const droppedDocs = this.childDocs.slice().filter((d: Doc, ind: number) => ind >= oldDocs); // if the drop operation adds something to the end of the list, then use that as the new document (may be different than what was dropped e.g., in the case of a button which is dropped but which creates say, a note).
const newDocs = droppedDocs.length ? droppedDocs : de.complete.docDragData.droppedDocuments; // if nothing was added to the end of the list, then presumably the dropped documents were already in the list, but possibly got reordered so we use them.
const docs = this.childDocList;
// reset drag manager docs, because we just dropped
DragManager.docsBeingDragged = [];
// still figuring out where to add the document
if (docs && newDocs.length) {
const insertInd = dropInd === -1 ? docs.length : dropInd + dropAfter;
const offset = newDocs.reduce((off, ndoc) => this.filteredChildren.find((fdoc, i) => ndoc === fdoc && i < insertInd) ? off + 1 : off, 0);
newDocs.filter(ndoc => docs.indexOf(ndoc) !== -1).forEach(ndoc => docs.splice(docs.indexOf(ndoc), 1));
docs.splice(insertInd - offset, 0, ...newDocs);
}
}
} // it seems like we're creating a link here. Weird. I didn't know that you could establish links by dragging
else if (de.complete.linkDragData?.dragDocument.context === this.props.Document && de.complete.linkDragData?.linkDragView?.props.CollectionFreeFormDocumentView?.()) {
const source = Docs.Create.TextDocument("", { _width: 200, _height: 75, _fitWidth: true, title: "dropped annotation" });
this.props.addDocument?.(source);
de.complete.linkDocument = DocUtils.MakeLink({ doc: source }, { doc: de.complete.linkDragData.linkSourceGetAnchor() }, "doc annotation", ""); // TODODO this is where in text links get passed
e.stopPropagation();
}
else if (de.complete.annoDragData?.dragDocument && super.onInternalDrop(e, de)) return this.internalAnchorAnnoDrop(e, de.complete.annoDragData);
return false;
}
@undoBatch
internalAnchorAnnoDrop(e: Event, annoDragData: DragManager.AnchorAnnoDragData) {
const dropCreator = annoDragData.dropDocCreator;
annoDragData.dropDocCreator = (annotationOn: Doc | undefined) => {
const dropDoc = dropCreator(annotationOn);
return dropDoc || this.rootDoc;
};
return true;
}
@undoBatch
@action
//What is the difference between internal and external drop?? Does internal mean we're dropping inside of a collection?
// I take it back: external drop means we took it out of column/collection that we were just in
onExternalDrop = async (e: React.DragEvent): Promise<void> => {
console.log('external drop')
const where = [e.clientX, e.clientY];
let targInd = -1;
this._docXfs.map((cd, i) => {
const pos = cd.stackedDocTransform().inverse().transformPoint(-2 * this.gridGap, -2 * this.gridGap);
const pos1 = cd.stackedDocTransform().inverse().transformPoint(cd.width(), cd.height());
if (where[0] > pos[0] && where[0] < pos1[0] && where[1] > pos[1] && where[1] < pos1[1]) {
targInd = i;
}
});
super.onExternalDrop(e, {}, () => {
if (targInd !== -1) {
const newDoc = this.childDocs[this.childDocs.length - 1];
const docs = this.childDocList;
if (docs) {
docs.splice(docs.length - 1, 1);
docs.splice(targInd, 0, newDoc);
}
}
});
}
// sections are important
headings = () => Array.from(this.Sections);
refList: any[] = [];
// what a section looks like if we're in stacking view
sectionStacking = (heading: SchemaHeaderField | undefined, docList: Doc[]) => {
const key = this.pivotField;
let type: "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function" | undefined = undefined;
if (this.pivotField) {
const types = docList.length ? docList.map(d => typeof d[key]) : this.filteredChildren.map(d => typeof d[key]);
if (types.map((i, idx) => types.indexOf(i) === idx).length === 1) {
type = types[0];
}
}
//TODO: I think that we only have one of these atm
return <CollectionNoteTakingViewFieldColumn
unobserveHeight={ref => this.refList.splice(this.refList.indexOf(ref), 1)}
observeHeight={ref => {
if (ref) {
this.refList.push(ref);
this.observer = new _global.ResizeObserver(action((entries: any) => {
if (this.layoutDoc._autoHeight && ref && this.refList.length && !SnappingManager.GetIsDragging()) {
const height = this.headerMargin +
Math.min(NumCast(this.layoutDoc._maxHeight, Number.MAX_SAFE_INTEGER),
Math.max(...this.refList.map(r => Number(getComputedStyle(r).height.replace("px", "")))));
if (!LightboxView.IsLightboxDocView(this.props.docViewPath())) {
this.props.setHeight(height);
}
}
}));
this.observer.observe(ref);
}
}}
addDocument={this.addDocument}
chromeHidden={this.chromeHidden}
columnHeaders={this.columnHeaders}
Document={this.props.Document}
DataDoc={this.props.DataDoc}
renderChildren={this.children}
columnWidth={this.columnWidth}
numGroupColumns={this.numGroupColumns}
gridGap={this.gridGap}
pivotField={this.pivotField}
key={heading?.heading ?? ""}
headings={this.headings}
heading={heading?.heading ?? ""}
headingObject={heading}
docList={docList}
yMargin={this.yMargin}
type={type}
createDropTarget={this.createDashEventsTarget}
screenToLocalTransform={this.props.ScreenToLocalTransform}
/>;
}
// what a section looks like if we're in masonry. Shouldn't actually need to use this.
sectionMasonry = (heading: SchemaHeaderField | undefined, docList: Doc[], first: boolean) => {
const key = this.pivotField;
let type: "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function" | undefined = undefined;
const types = docList.length ? docList.map(d => typeof d[key]) : this.filteredChildren.map(d => typeof d[key]);
if (types.map((i, idx) => types.indexOf(i) === idx).length === 1) {
type = types[0];
}
const rows = () => !this.isStackingView ? 1 : Math.max(1, Math.min(docList.length,
Math.floor((this.props.PanelWidth() - 2 * this.xMargin) / (this.columnWidth + this.gridGap))));
return <CollectionMasonryViewFieldRow
showHandle={first}
Document={this.props.Document}
chromeHidden={this.chromeHidden}
pivotField={this.pivotField}
unobserveHeight={(ref) => this.refList.splice(this.refList.indexOf(ref), 1)}
observeHeight={(ref) => {
if (ref) {
this.refList.push(ref);
this.observer = new _global.ResizeObserver(action((entries: any) => {
if (this.layoutDoc._autoHeight && ref && this.refList.length && !SnappingManager.GetIsDragging()) {
const height = this.refList.reduce((p, r) => p + Number(getComputedStyle(r).height.replace("px", "")), 0);
this.props.setHeight(this.headerMargin + height);
}
}));
this.observer.observe(ref);
}
}}
key={heading ? heading.heading : ""}
rows={rows}
headings={this.headings}
heading={heading ? heading.heading : ""}
headingObject={heading}
docList={docList}
parent={this}
type={type}
createDropTarget={this.createDashEventsTarget}
screenToLocalTransform={this.props.ScreenToLocalTransform}
setDocHeight={this.setDocHeight}
/>;
}
@action
// What are we adding a group to?
addGroup = (value: string) => {
if (value && this.columnHeaders) {
const schemaHdrField = new SchemaHeaderField(value);
this.columnHeaders.push(schemaHdrField);
DocUtils.addFieldEnumerations(undefined, this.pivotField, [{ title: value, _backgroundColor: "schemaHdrField.color" }]);
return true;
}
return false;
}
sortFunc = (a: [SchemaHeaderField, Doc[]], b: [SchemaHeaderField, Doc[]]): 1 | -1 => {
const descending = StrCast(this.layoutDoc._columnsSort) === "descending";
const firstEntry = descending ? b : a;
const secondEntry = descending ? a : b;
return firstEntry[0].heading > secondEntry[0].heading ? 1 : -1;
}
onContextMenu = (e: React.MouseEvent): void => {
// need to test if propagation has stopped because GoldenLayout forces a parallel react hierarchy to be created for its top-level layout
if (!e.isPropagationStopped()) {
const subItems: ContextMenuProps[] = [];
subItems.push({ description: `${this.layoutDoc._columnsFill ? "Variable Size" : "Autosize"} Column`, event: () => this.layoutDoc._columnsFill = !this.layoutDoc._columnsFill, icon: "plus" });
subItems.push({ description: `${this.layoutDoc._autoHeight ? "Variable Height" : "Auto Height"}`, event: () => this.layoutDoc._autoHeight = !this.layoutDoc._autoHeight, icon: "plus" });
subItems.push({ description: "Clear All", event: () => this.dataDoc.data = new List([]), icon: "times" });
ContextMenu.Instance.addItem({ description: "Options...", subitems: subItems, icon: "eye" });
}
}
//
@computed get renderedSections() {
TraceMobx();
let sections = [[undefined, this.filteredChildren] as [SchemaHeaderField | undefined, Doc[]]];
if (this.pivotField) {
const entries = Array.from(this.Sections.entries());
sections = this.layoutDoc._columnsSort ? entries.sort(this.sortFunc) : entries;
}
// a section will have a header and a list of docs. Ok cool.
return sections.map((section, i) => this.isStackingView ? this.sectionStacking(section[0], section[1]) : this.sectionMasonry(section[0], section[1], i === 0));
}
@computed get buttonMenu() {
const menuDoc: Doc = Cast(this.rootDoc.buttonMenuDoc, Doc, null);
// TODO:glr Allow support for multiple buttons
if (menuDoc) {
const width: number = NumCast(menuDoc._width, 30);
const height: number = NumCast(menuDoc._height, 30);
console.log(menuDoc.title, width, height);
return (<div className="buttonMenu-docBtn"
style={{ width: width, height: height }}>
<DocumentView
Document={menuDoc}
DataDoc={menuDoc}
isContentActive={this.props.isContentActive}
isDocumentActive={returnTrue}
addDocument={this.props.addDocument}
moveDocument={this.props.moveDocument}
addDocTab={this.props.addDocTab}
pinToPres={emptyFunction}
rootSelected={this.props.isSelected}
removeDocument={this.props.removeDocument}
ScreenToLocalTransform={Transform.Identity}
PanelWidth={() => 35}
PanelHeight={() => 35}
renderDepth={this.props.renderDepth}
focus={emptyFunction}
styleProvider={this.props.styleProvider}
layerProvider={this.props.layerProvider}
docViewPath={returnEmptyDoclist}
whenChildContentsActiveChanged={emptyFunction}
bringToFront={emptyFunction}
docFilters={this.props.docFilters}
docRangeFilters={this.props.docRangeFilters}
searchFilterDocs={this.props.searchFilterDocs}
ContainingCollectionView={undefined}
ContainingCollectionDoc={undefined}
/>
</div>
);
}
}
@computed get nativeWidth() { return this.props.NativeWidth?.() ?? Doc.NativeWidth(this.layoutDoc); }
@computed get nativeHeight() { return this.props.NativeHeight?.() ?? Doc.NativeHeight(this.layoutDoc); }
@computed get scaling() { return !this.nativeWidth ? 1 : this.props.PanelHeight() / this.nativeHeight; }
@computed get backgroundEvents() { return SnappingManager.GetIsDragging(); }
observer: any;
render() {
TraceMobx();
const editableViewProps = {
GetValue: () => "",
SetValue: this.addGroup,
// I don't recall ever seeing this add a group button
contents: "+ ADD A GROUP"
};
const buttonMenu = this.rootDoc.buttonMenu;
const noviceExplainer = this.rootDoc.explainer;
return (
<>
{buttonMenu || noviceExplainer ? <div className="documentButtonMenu">
{buttonMenu ? this.buttonMenu : null}
{Doc.UserDoc().noviceMode && noviceExplainer ?
<div className="documentExplanation">
{noviceExplainer}
</div>
: null
}
</div> : null}
<div className="collectionStackingMasonry-cont" >
<div className={this.isStackingView ? "collectionStackingView" : "collectionMasonryView"}
ref={this.createRef}
style={{
overflowY: this.props.isContentActive() ? "auto" : "hidden",
background: this.props.styleProvider?.(this.rootDoc, this.props, StyleProp.BackgroundColor),
pointerEvents: this.backgroundEvents ? "all" : undefined
}}
onScroll={action(e => this._scroll = e.currentTarget.scrollTop)}
onPointerOver={this.onPointerOver}
onPointerDown={this.onPointerDown}
onDrop={this.onExternalDrop.bind(this)}
onContextMenu={this.onContextMenu}
// Todo: what is wheel? Are we talking about a mouse wheel?
onWheel={e => this.props.isContentActive(true) && e.stopPropagation()} >
{/* so it appears that we are actually rendering the sections. Maybe this is what we're looking for? */}
{this.renderedSections}
{/* I think that showAddGroup must be passed in as false, which is why we can't find what Mehek showed
Or it's because we aren't passing a pivot field */}
{!this.showAddAGroup ? (null) :
<div key={`${this.props.Document[Id]}-addGroup`} className="collectionStackingView-addGroupButton"
style={{ width: !this.isStackingView ? "100%" : this.columnWidth / this.numGroupColumns - 10, marginTop: 10 }}>
<EditableView {...editableViewProps} />
</div>}
{/* {this.chromeHidden || !this.props.isSelected() ? (null) :
<Switch
onChange={this.onToggle}
onClick={this.onToggle}
defaultChecked={true}
checkedChildren="edit"
unCheckedChildren="view"
/>} */}
</div>
</div>
</>
);
}
}
// import React = require("react");
// import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
// import { CursorProperty } from "csstype";
// import { action, computed, IReactionDisposer, observable, reaction, runInAction } from "mobx";
// import { observer } from "mobx-react";
// import { DataSym, Doc, HeightSym, Opt, WidthSym } from "../../../fields/Doc";
// import { Id } from "../../../fields/FieldSymbols";
// import { List } from "../../../fields/List";
// import { listSpec } from "../../../fields/Schema";
// import { SchemaHeaderField } from "../../../fields/SchemaHeaderField";
// import { BoolCast, Cast, NumCast, ScriptCast, StrCast } from "../../../fields/Types";
// import { TraceMobx } from "../../../fields/util";
// import { emptyFunction, returnEmptyDoclist, returnFalse, returnTrue, returnZero, setupMoveUpEvents, smoothScroll, Utils } from "../../../Utils";
// import { Docs, DocUtils } from "../../documents/Documents";
// import { DragManager, dropActionType } from "../../util/DragManager";
// import { SnappingManager } from "../../util/SnappingManager";
// import { Transform } from "../../util/Transform";
// import { undoBatch } from "../../util/UndoManager";
// import { ContextMenu } from "../ContextMenu";
// import { ContextMenuProps } from "../ContextMenuItem";
// import { LightboxView } from "../LightboxView";
// import { CollectionFreeFormDocumentView } from "../nodes/CollectionFreeFormDocumentView";
// import { DocFocusOptions, DocumentView, DocumentViewProps, ViewAdjustment } from "../nodes/DocumentView";
// import { StyleProp } from "../StyleProvider";
// import { CollectionNoteTakingViewFieldColumn } from "./CollectionNoteTakingViewFieldColumn";
// import "./CollectionStackingView.scss";
// import { CollectionSubView } from "./CollectionSubView";
// import { CollectionViewType } from "./CollectionView";
// import internal = require("events");
// const _global = (window /* browser */ || global /* node */) as any;
// export type collectionNoteTakingViewProps = {
// chromeHidden?: boolean;
// viewType?: CollectionViewType;
// NativeWidth?: () => number;
// NativeHeight?: () => number;
// };
// //TODO: where am I going to add columns?
// @observer
// export class CollectionNoteTakingView extends CollectionSubView<Partial<collectionNoteTakingViewProps>>() {
// // used in a column dragger, likely due for the masonry grid view. We want to use this
// _draggerRef = React.createRef<HTMLDivElement>();
// // Seems like we cause reaction in MobX get rid of our height once we exit this view
// _autoHeightDisposer?: IReactionDisposer;
// // keeping track of documents. Updated on internal and external drops. What's the difference?
// _docXfs: { height: () => number, width: () => number, stackedDocTransform: () => Transform }[] = [];
// //--------------------------------------------------------------------------------------------------------------//
// // TODO: these are things that I added but not sure that they actually belong here
// // We may not need to actually keep track of the numColumns
// _noteTakingRef: HTMLDivElement | null = null;
// // this is the layout doc field that we're splitting on. Replaces pivot field
// _columnIndex: string = "columnIndex";
// @computed get columnIndex() { return this._columnIndex}
// _numColumns: number = 1;
// @computed get numColumns() { return this._numColumns}
// @computed get columnWidth() { return this.props.PanelWidth() - 2 * this.xMargin }
// //--------------------------------------------------------------------------------------------------------------//
// // Assuming that this is the current css cursor style
// @observable _cursor: CursorProperty = "grab";
// // gets reset whenever we scroll. Not sure what it is
// @observable _scroll = 0; // used to force the document decoration to update when scrolling
// // does this mean whether the browser is hidden? Or is chrome something else entirely?
// @computed get chromeHidden() { return this.props.chromeHidden || BoolCast(this.layoutDoc.chromeHidden); }
// // it looks like this gets the column headers that Mehek was showing just now
// @computed get columnHeaders() { return Cast(this.layoutDoc._columnHeaders, listSpec(SchemaHeaderField), null); }
// // filteredChildren is what you want to work with. It's the list of things that you're currently displaying
// @computed get filteredChildren() { return this.childLayoutPairs.filter(pair => (pair.layout instanceof Doc) && !pair.layout.hidden).map(pair => pair.layout); }
// // how much margin we give the header
// @computed get headerMargin() { return this.props.styleProvider?.(this.layoutDoc, this.props, StyleProp.HeaderMargin); }
// @computed get xMargin() { return NumCast(this.layoutDoc._xMargin, 2 * Math.min(this.gridGap, .05 * this.props.PanelWidth())); }
// @computed get yMargin() { return this.props.yPadding || NumCast(this.layoutDoc._yMargin, 5); } // 2 * this.gridGap)); }
// @computed get gridGap() { return NumCast(this.layoutDoc._gridGap, 10); }
// @computed get NodeWidth() { return this.props.PanelWidth() - this.gridGap; }
// constructor(props: any) {
// super(props);
// if (this.columnHeaders === undefined) {
// this.layoutDoc._columnHeaders = new List<SchemaHeaderField>([new SchemaHeaderField("0")]);
// }
// console.log(this.layoutDoc._columnHeaders)
// }
// children = (docs: Doc[]) => {
// TraceMobx();
// this._docXfs.length = 0;
// // Go through each of the documents that are contained
// return docs.map((d, i) => {
// if (d._columnIndex && parseInt(d._columnIndex.toString()) + 1 > this.numColumns) {
// this._numColumns = parseInt(d._columnIndex.toString()) + 1;
// } else if (d._columnIndex === undefined) {
// d._columnIndex = 0;
// }
// const height = () => this.getDocHeight(d);
// const width = () => this.getDocWidth(d);
// // just getting the style
// const style = { width: width(), marginTop: i ? this.gridGap : 0, height: height(), margin: this.xMargin };
// // So we're choosing whether we're going to render a column or a masonry doc
// return <div className={"collectionNoteTakingView-columnDoc"} key={d[Id]} style={style} >
// {this.getDisplayDoc(d, width)}
// </div>
// });
// }
// //TODO: this seems important
// get Sections() {
// // appears that pivot field IS actually for sorting
// if (!this.columnIndex || this.columnHeaders instanceof Promise) return new Map<SchemaHeaderField, Doc[]>();
// if (this.columnHeaders === undefined) {
// setTimeout(() => this.layoutDoc._columnHeaders = new List<SchemaHeaderField>(), 0);
// return new Map<SchemaHeaderField, Doc[]>();
// }
// const columnHeaders = Array.from(this.columnHeaders);
// const fields = new Map<SchemaHeaderField, Doc[]>(columnHeaders.map(sh => [sh, []] as [SchemaHeaderField, []]));
// let changed = false;
// this.filteredChildren.map(d => {
// const sectionValue = (d[this.columnIndex] ? d[this.columnIndex] : `NO ${this.columnIndex.toUpperCase()} VALUE`) as object;
// // the next five lines ensures that floating point rounding errors don't create more than one section -syip
// const parsed = parseInt(sectionValue.toString());
// const castedSectionValue = !isNaN(parsed) ? parsed : sectionValue;
// // look for if header exists already
// const existingHeader = columnHeaders.find(sh => sh.heading === (castedSectionValue ? castedSectionValue.toString() : `NO ${this.columnIndex.toUpperCase()} VALUE`));
// if (existingHeader) {
// fields.get(existingHeader)!.push(d);
// }
// else {
// const newSchemaHeader = new SchemaHeaderField(castedSectionValue ? castedSectionValue.toString() : `NO ${this.columnIndex.toUpperCase()} VALUE`);
// fields.set(newSchemaHeader, [d]);
// columnHeaders.push(newSchemaHeader);
// changed = true;
// }
// });
// // remove all empty columns if hideHeadings is set
// // we will want to have something like this, so that we can hide columns and add them back in
// if (this.layoutDoc._columnsHideIfEmpty) {
// Array.from(fields.keys()).filter(key => !fields.get(key)!.length).map(header => {
// fields.delete(header);
// columnHeaders.splice(columnHeaders.indexOf(header), 1);
// changed = true;
// });
// }
// changed && setTimeout(action(() => this.columnHeaders?.splice(0, this.columnHeaders.length, ...columnHeaders)), 0);
// return fields;
// }
// //TODO: this seems important
// // get Sections() {
// // // at the start, we likely will not have column headers
// // if (this.columnHeaders === undefined) {
// // console.log("columns weren't yet defined")
// // setTimeout(() => this.layoutDoc._columnHeaders = new List<SchemaHeaderField>([new SchemaHeaderField("0")]));
// // return new Map<SchemaHeaderField, Doc[]>();
// // }
// // // on later renders, we should have the column headers
// // const columnHeaders = Array.from(this.columnHeaders);
// // console.log(columnHeaders)
// // const fields = new Map<SchemaHeaderField, Doc[]>();
// // let changed = false;
// // this.filteredChildren.map(d => {
// // const sectionValue = (d._columnIndex ? d._columnIndex : `NO COLUMN VALUE`) as object;
// // // the next five lines ensures that floating point rounding errors don't create more than one section -syip
// // const parsed = parseInt(sectionValue.toString());
// // const castedSectionValue = !isNaN(parsed) ? parsed : sectionValue;
// // const newSchemaHeader = new SchemaHeaderField(castedSectionValue.toString());
// // const currentDocs = fields.get(newSchemaHeader)
// // if (currentDocs) {
// // currentDocs.push(d)
// // fields.set(newSchemaHeader, currentDocs);
// // }
// // const existingHeader = columnHeaders.find(sh => sh.heading === (castedSectionValue ? castedSectionValue.toString() : `NO COLUMN VALUE`));
// // if (existingHeader) {
// // columnHeaders.push(newSchemaHeader);
// // changed = true;
// // }
// // });
// // changed && setTimeout(action(() => this.columnHeaders?.splice(0, this.columnHeaders.length, ...columnHeaders)), 0);
// // return fields;
// // }
// componentDidMount() {
// super.componentDidMount?.();
// this._autoHeightDisposer = reaction(() => this.layoutDoc._autoHeight,
// autoHeight => autoHeight && this.props.setHeight(Math.min(NumCast(this.layoutDoc._maxHeight, Number.MAX_SAFE_INTEGER),
// this.headerMargin +
// Math.max(...this.refList.map(r => Number(getComputedStyle(r).height.replace("px", "")))))));
// }
// componentWillUnmount() {
// super.componentWillUnmount();
// this._autoHeightDisposer?.();
// }
// @action
// moveDocument = (doc: Doc, targetCollection: Doc | undefined, addDocument: (document: Doc) => boolean): boolean => {
// return this.props.removeDocument?.(doc) && addDocument?.(doc) ? true : false;
// }
// createRef = (ele: HTMLDivElement | null) => {
// this._noteTakingRef = ele;
// this.createDashEventsTarget(ele!); //so the whole grid is the drop target?
// }
// @computed get onChildClickHandler() { return () => this.props.childClickScript || ScriptCast(this.Document.onChildClick); }
// @computed get onChildDoubleClickHandler() { return () => this.props.childDoubleClickScript || ScriptCast(this.Document.onChildDoubleClick); }
// addDocTab = (doc: Doc, where: string) => {
// if (where === "inPlace" && this.layoutDoc.isInPlaceContainer) {
// this.dataDoc[this.props.fieldKey] = new List<Doc>([doc]);
// return true;
// }
// return this.props.addDocTab(doc, where);
// }
// scrollToBottom = () => {
// smoothScroll(500, this._mainCont!, this._mainCont!.scrollHeight);
// }
// // let's dive in and get the actual document we want to drag/move around
// focusDocument = (doc: Doc, options?: DocFocusOptions) => {
// Doc.BrushDoc(doc);
// let focusSpeed = 0;
// const found = this._mainCont && Array.from(this._mainCont.getElementsByClassName("documentView-node")).find((node: any) => node.id === doc[Id]);
// if (found) {
// const top = found.getBoundingClientRect().top;
// const localTop = this.props.ScreenToLocalTransform().transformPoint(0, top);
// if (Math.floor(localTop[1]) !== 0) {
// smoothScroll(focusSpeed = doc.presTransition || doc.presTransition === 0 ? NumCast(doc.presTransition) : 500, this._mainCont!, localTop[1] + this._mainCont!.scrollTop);
// }
// }
// const endFocus = async (moved: boolean) => options?.afterFocus ? options?.afterFocus(moved) : ViewAdjustment.doNothing;
// this.props.focus(this.rootDoc, {
// willZoom: options?.willZoom, scale: options?.scale, afterFocus: (didFocus: boolean) =>
// new Promise<ViewAdjustment>(res => setTimeout(async () => res(await endFocus(didFocus)), focusSpeed))
// });
// }
// styleProvider = (doc: Doc | undefined, props: Opt<DocumentViewProps>, property: string) => {
// if (property === StyleProp.Opacity && doc) {
// if (this.props.childOpacity) {
// return this.props.childOpacity();
// }
// if (this.Document._currentFrame !== undefined) {
// return CollectionFreeFormDocumentView.getValues(doc, NumCast(this.Document._currentFrame))?.opacity;
// }
// }
// return this.props.styleProvider?.(doc, props, property);
// }
// isContentActive = () => this.props.isSelected() || this.props.isContentActive();
// // this is what renders the document that you see on the screen
// // called in Children: this actually adds a document to our children list
// getDisplayDoc(doc: Doc, width: () => number) {
// const dataDoc = (!doc.isTemplateDoc && !doc.isTemplateForField && !doc.PARAMS) ? undefined : this.props.DataDoc;
// const height = () => this.getDocHeight(doc);
// let dref: Opt<DocumentView>;
// const stackedDocTransform = () => this.getDocTransform(doc, dref);
// this._docXfs.push({ stackedDocTransform, width, height });
// //DocumentView is how the node will be rendered
// return <DocumentView ref={r => dref = r || undefined}
// Document={doc}
// DataDoc={dataDoc || (!Doc.AreProtosEqual(doc[DataSym], doc) && doc[DataSym])}
// renderDepth={this.props.renderDepth + 1}
// PanelWidth={width}
// PanelHeight={height}
// styleProvider={this.styleProvider}
// layerProvider={this.props.layerProvider}
// docViewPath={this.props.docViewPath}
// fitWidth={this.props.childFitWidth}
// isContentActive={emptyFunction}
// isDocumentActive={this.isContentActive}
// LayoutTemplate={this.props.childLayoutTemplate}
// LayoutTemplateString={this.props.childLayoutString}
// freezeDimensions={this.props.childFreezeDimensions}
// NativeWidth={this.props.childIgnoreNativeSize ? returnZero : this.props.childFitWidth?.(doc) || doc._fitWidth && !Doc.NativeWidth(doc) ? width : undefined} // explicitly ignore nativeWidth/height if childIgnoreNativeSize is set- used by PresBox
// NativeHeight={this.props.childIgnoreNativeSize ? returnZero : this.props.childFitWidth?.(doc) || doc._fitWidth && !Doc.NativeHeight(doc) ? height : undefined}
// dontCenter={this.props.childIgnoreNativeSize ? "xy" : undefined}
// dontRegisterView={dataDoc ? true : BoolCast(this.layoutDoc.childDontRegisterViews, this.props.dontRegisterView)}
// rootSelected={this.rootSelected}
// showTitle={this.props.childShowTitle}
// dropAction={StrCast(this.layoutDoc.childDropAction) as dropActionType}
// onClick={this.onChildClickHandler}
// onDoubleClick={this.onChildDoubleClickHandler}
// ScreenToLocalTransform={stackedDocTransform}
// focus={this.focusDocument}
// docFilters={this.childDocFilters}
// hideDecorationTitle={this.props.childHideDecorationTitle?.()}
// hideResizeHandles={this.props.childHideResizeHandles?.()}
// hideTitle={this.props.childHideTitle?.()}
// docRangeFilters={this.childDocRangeFilters}
// searchFilterDocs={this.searchFilterDocs}
// ContainingCollectionDoc={this.props.CollectionView?.props.Document}
// ContainingCollectionView={this.props.CollectionView}
// addDocument={this.props.addDocument}
// moveDocument={this.props.moveDocument}
// removeDocument={this.props.removeDocument}
// contentPointerEvents={StrCast(this.layoutDoc.contentPointerEvents)}
// whenChildContentsActiveChanged={this.props.whenChildContentsActiveChanged}
// addDocTab={this.addDocTab}
// bringToFront={returnFalse}
// scriptContext={this.props.scriptContext}
// pinToPres={this.props.pinToPres}
// />;
// }
// getDocTransform(doc: Doc, dref?: DocumentView) {
// const y = this._scroll; // required for document decorations to update when the text box container is scrolled
// const { scale, translateX, translateY } = Utils.GetScreenTransform(dref?.ContentDiv || undefined);
// // the document view may center its contents and if so, will prepend that onto the screenToLocalTansform. so we have to subtract that off
// return new Transform(- translateX + (dref?.centeringX || 0), - translateY + (dref?.centeringY || 0), 1).scale(this.props.ScreenToLocalTransform().Scale);
// }
// getDocWidth(d?: Doc) {
// if (!d) return 0;
// const childLayoutDoc = Doc.Layout(d, this.props.childLayoutTemplate?.());
// // TODO: pj - replace with a better way to calculate the margin
// let margin = 25;
// d.margin = 25;
// if (this.columnWidth < 150){
// margin = 0;
// }
// const maxWidth = (this.columnWidth / this.numColumns) - (margin * 2);
// if (!this.layoutDoc._columnsFill && !(childLayoutDoc._fitWidth || this.props.childFitWidth?.(d))) {
// return Math.min(d[WidthSym](), maxWidth);
// }
// return maxWidth;
// }
// getDocHeight(d?: Doc) {
// if (!d || d.hidden) return 0;
// const childLayoutDoc = Doc.Layout(d, this.props.childLayoutTemplate?.());
// const childDataDoc = (!d.isTemplateDoc && !d.isTemplateForField && !d.PARAMS) ? undefined : this.props.DataDoc;
// const maxHeight = (lim => lim === 0 ? this.props.PanelWidth() : lim === -1 ? 10000 : lim)(NumCast(this.layoutDoc.childLimitHeight, -1));
// const nw = Doc.NativeWidth(childLayoutDoc, childDataDoc) || (!(childLayoutDoc._fitWidth || this.props.childFitWidth?.(d)) ? d[WidthSym]() : 0);
// const nh = Doc.NativeHeight(childLayoutDoc, childDataDoc) || (!(childLayoutDoc._fitWidth || this.props.childFitWidth?.(d)) ? d[HeightSym]() : 0);
// if (nw && nh) {
// const colWid = this.columnWidth / this.numColumns;
// const docWid = this.layoutDoc._columnsFill ? colWid : Math.min(this.getDocWidth(d), colWid);
// return Math.min(
// maxHeight,
// docWid * nh / nw);
// }
// const childHeight = NumCast(childLayoutDoc._height);
// const panelHeight = (childLayoutDoc._fitWidth || this.props.childFitWidth?.(d)) ? Number.MAX_SAFE_INTEGER : this.props.PanelHeight() - 2 * this.yMargin;
// return Math.min(childHeight, maxHeight, panelHeight);
// }
// // This following three functions must be from the view Mehek showed
// columnDividerDown = (e: React.PointerEvent) => {
// runInAction(() => this._cursor = "grabbing");
// setupMoveUpEvents(this, e, this.onDividerMove, action(() => this._cursor = "grab"), emptyFunction);
// }
// @action
// onDividerMove = (e: PointerEvent, down: number[], delta: number[]) => {
// this.layoutDoc._columnWidth = Math.max(10, this.columnWidth + delta[0]);
// return false;
// }
// @computed get columnDragger() {
// return <div className="collectionStackingView-columnDragger" onPointerDown={this.columnDividerDown} ref={this._draggerRef}
// style={{ cursor: this._cursor, left: `${this.columnWidth + this.xMargin}px`, top: `${Math.max(0, this.yMargin - 9)}px` }} >
// <FontAwesomeIcon icon={"arrows-alt-h"} />
// </div>;
// }
// @undoBatch
// @action
// onInternalDrop = (e: Event, de: DragManager.DropEvent) => {
// // Fairly confident that this is where the swapping of nodes in the various arrays happens
// console.log('drop')
// const where = [de.x, de.y];
// // start at -1 until we're sure we want to add it to the column
// let dropInd = -1;
// let dropAfter = 0;
// if (de.complete.docDragData) {
// // going to re-add the docs to the _docXFs based on position of where we just dropped
// this._docXfs.map((cd, i) => {
// const pos = cd.stackedDocTransform().inverse().transformPoint(-2 * this.gridGap, -2 * this.gridGap);
// const pos1 = cd.stackedDocTransform().inverse().transformPoint(cd.width(), cd.height());
// if (where[0] > pos[0] && where[0] < pos1[0] && where[1] > pos[1] && (i === this._docXfs.length - 1 || where[1] < pos1[1])) {
// dropInd = i;
// //TODO: not sure what the axis should actually be. Had a ternary previously with 0/1
// const axis = 1;
// dropAfter = where[axis] > (pos[axis] + pos1[axis]) / 2 ? 1 : 0;
// }
// });
// const oldDocs = this.childDocs.length;
// if (super.onInternalDrop(e, de)) {
// // check to see if we actually need anything to the new column of nodes (if droppedDocs != empty)
// const droppedDocs = this.childDocs.slice().filter((d: Doc, ind: number) => ind >= oldDocs); // if the drop operation adds something to the end of the list, then use that as the new document (may be different than what was dropped e.g., in the case of a button which is dropped but which creates say, a note).
// const newDocs = droppedDocs.length ? droppedDocs : de.complete.docDragData.droppedDocuments; // if nothing was added to the end of the list, then presumably the dropped documents were already in the list, but possibly got reordered so we use them.
// const docs = this.childDocList;
// // reset drag manager docs, because we just dropped
// DragManager.docsBeingDragged = [];
// // still figuring out where to add the document
// if (docs && newDocs.length) {
// const insertInd = dropInd === -1 ? docs.length : dropInd + dropAfter;
// const offset = newDocs.reduce((off, ndoc) => this.filteredChildren.find((fdoc, i) => ndoc === fdoc && i < insertInd) ? off + 1 : off, 0);
// newDocs.filter(ndoc => docs.indexOf(ndoc) !== -1).forEach(ndoc => docs.splice(docs.indexOf(ndoc), 1));
// docs.splice(insertInd - offset, 0, ...newDocs);
// }
// }
// } // it seems like we're creating a link here. Weird. I didn't know that you could establish links by dragging
// else if (de.complete.linkDragData?.dragDocument.context === this.props.Document && de.complete.linkDragData?.linkDragView?.props.CollectionFreeFormDocumentView?.()) {
// const source = Docs.Create.TextDocument("", { _width: 200, _height: 75, _fitWidth: true, title: "dropped annotation" });
// this.props.addDocument?.(source);
// de.complete.linkDocument = DocUtils.MakeLink({ doc: source }, { doc: de.complete.linkDragData.linkSourceGetAnchor() }, "doc annotation", ""); // TODODO this is where in text links get passed
// e.stopPropagation();
// }
// else if (de.complete.annoDragData?.dragDocument && super.onInternalDrop(e, de)) return this.internalAnchorAnnoDrop(e, de.complete.annoDragData);
// return false;
// }
// @undoBatch
// internalAnchorAnnoDrop(e: Event, annoDragData: DragManager.AnchorAnnoDragData) {
// const dropCreator = annoDragData.dropDocCreator;
// annoDragData.dropDocCreator = (annotationOn: Doc | undefined) => {
// const dropDoc = dropCreator(annotationOn);
// return dropDoc || this.rootDoc;
// };
// return true;
// }
// @undoBatch
// @action
// //What is the difference between internal and external drop?? Does internal mean we're dropping inside of a collection?
// // I take it back: external drop means we took it out of column/collection that we were just in
// onExternalDrop = async (e: React.DragEvent): Promise<void> => {
// console.log('external drop')
// const where = [e.clientX, e.clientY];
// let targInd = -1;
// this._docXfs.map((cd, i) => {
// const pos = cd.stackedDocTransform().inverse().transformPoint(-2 * this.gridGap, -2 * this.gridGap);
// const pos1 = cd.stackedDocTransform().inverse().transformPoint(cd.width(), cd.height());
// if (where[0] > pos[0] && where[0] < pos1[0] && where[1] > pos[1] && where[1] < pos1[1]) {
// targInd = i;
// }
// });
// super.onExternalDrop(e, {}, () => {
// if (targInd !== -1) {
// const newDoc = this.childDocs[this.childDocs.length - 1];
// const docs = this.childDocList;
// if (docs) {
// docs.splice(docs.length - 1, 1);
// docs.splice(targInd, 0, newDoc);
// }
// }
// });
// }
// // sections are important
// headings = () => Array.from(this.Sections);
// refList: any[] = [];
// // what a section looks like if we're in stacking view
// sectionStacking = (heading: SchemaHeaderField | undefined, docList: Doc[]) => {
// const key = "columnIndex";
// let type: "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function" | undefined = undefined;
// const types = docList.length ? docList.map(d => typeof d[key]) : this.filteredChildren.map(d => typeof d[key]);
// if (types.map((i, idx) => types.indexOf(i) === idx).length === 1) {
// type = types[0];
// }
// //TODO: I think that we only have one of these atm
// return <CollectionNoteTakingViewFieldColumn
// unobserveHeight={ref => this.refList.splice(this.refList.indexOf(ref), 1)}
// observeHeight={ref => {
// if (ref) {
// this.refList.push(ref);
// this.observer = new _global.ResizeObserver(action((entries: any) => {
// if (this.layoutDoc._autoHeight && ref && this.refList.length && !SnappingManager.GetIsDragging()) {
// const height = this.headerMargin +
// Math.min(NumCast(this.layoutDoc._maxHeight, Number.MAX_SAFE_INTEGER),
// Math.max(...this.refList.map(r => Number(getComputedStyle(r).height.replace("px", "")))));
// if (!LightboxView.IsLightboxDocView(this.props.docViewPath())) {
// this.props.setHeight(height);
// }
// }
// }));
// this.observer.observe(ref);
// }
// }}
// addDocument={this.addDocument}
// chromeHidden={this.chromeHidden}
// columnHeaders={this.columnHeaders}
// Document={this.props.Document}
// DataDoc={this.props.DataDoc}
// renderChildren={this.children}
// columnWidth={this.columnWidth}
// columnIndex={this._columnIndex}
// numColumns={this.numColumns}
// gridGap={this.gridGap}
// key={heading?.heading ?? ""}
// headings={this.headings}
// heading={heading?.heading ?? ""}
// headingObject={heading}
// docList={docList}
// yMargin={this.yMargin}
// type={type}
// createDropTarget={this.createDashEventsTarget}
// screenToLocalTransform={this.props.ScreenToLocalTransform}
// />;
// }
// @action
// // What are we adding a group to?
// addGroup = (value: string) => {
// if (value && this.columnHeaders) {
// const schemaHdrField = new SchemaHeaderField(value);
// this.columnHeaders.push(schemaHdrField);
// DocUtils.addFieldEnumerations(undefined, this._columnIndex, [{ title: value, _backgroundColor: "schemaHdrField.color" }]);
// return true;
// }
// return false;
// }
// sortFunc = (a: [SchemaHeaderField, Doc[]], b: [SchemaHeaderField, Doc[]]): 1 | -1 => {
// const descending = StrCast(this.layoutDoc._columnsSort) === "descending";
// const firstEntry = descending ? b : a;
// const secondEntry = descending ? a : b;
// return firstEntry[0].heading > secondEntry[0].heading ? 1 : -1;
// }
// onContextMenu = (e: React.MouseEvent): void => {
// // need to test if propagation has stopped because GoldenLayout forces a parallel react hierarchy to be created for its top-level layout
// if (!e.isPropagationStopped()) {
// const subItems: ContextMenuProps[] = [];
// subItems.push({ description: `${this.layoutDoc._columnsFill ? "Variable Size" : "Autosize"} Column`, event: () => this.layoutDoc._columnsFill = !this.layoutDoc._columnsFill, icon: "plus" });
// subItems.push({ description: `${this.layoutDoc._autoHeight ? "Variable Height" : "Auto Height"}`, event: () => this.layoutDoc._autoHeight = !this.layoutDoc._autoHeight, icon: "plus" });
// subItems.push({ description: "Clear All", event: () => this.dataDoc.data = new List([]), icon: "times" });
// ContextMenu.Instance.addItem({ description: "Options...", subitems: subItems, icon: "eye" });
// }
// }
// //
// @computed get renderedSections() {
// TraceMobx();
// let sections = [[undefined, this.filteredChildren] as [SchemaHeaderField | undefined, Doc[]]];
// const entries = Array.from(this.Sections.entries());
// sections = this.layoutDoc._columnsSort ? entries.sort(this.sortFunc) : entries;
// // a section will have a header and a list of docs. Ok cool.
// return sections.map((section, i) => this.sectionStacking(section[0], section[1]));
// }
// @computed get buttonMenu() {
// const menuDoc: Doc = Cast(this.rootDoc.buttonMenuDoc, Doc, null);
// // TODO:glr Allow support for multiple buttons
// if (menuDoc) {
// const width: number = NumCast(menuDoc._width, 30);
// const height: number = NumCast(menuDoc._height, 30);
// console.log(menuDoc.title, width, height);
// return (<div className="buttonMenu-docBtn"
// style={{ width: width, height: height }}>
// <DocumentView
// Document={menuDoc}
// DataDoc={menuDoc}
// isContentActive={this.props.isContentActive}
// isDocumentActive={returnTrue}
// addDocument={this.props.addDocument}
// moveDocument={this.props.moveDocument}
// addDocTab={this.props.addDocTab}
// pinToPres={emptyFunction}
// rootSelected={this.props.isSelected}
// removeDocument={this.props.removeDocument}
// ScreenToLocalTransform={Transform.Identity}
// PanelWidth={() => 35}
// PanelHeight={() => 35}
// renderDepth={this.props.renderDepth}
// focus={emptyFunction}
// styleProvider={this.props.styleProvider}
// layerProvider={this.props.layerProvider}
// docViewPath={returnEmptyDoclist}
// whenChildContentsActiveChanged={emptyFunction}
// bringToFront={emptyFunction}
// docFilters={this.props.docFilters}
// docRangeFilters={this.props.docRangeFilters}
// searchFilterDocs={this.props.searchFilterDocs}
// ContainingCollectionView={undefined}
// ContainingCollectionDoc={undefined}
// />
// </div>
// );
// }
// }
// @computed get nativeWidth() { return this.props.NativeWidth?.() ?? Doc.NativeWidth(this.layoutDoc); }
// @computed get nativeHeight() { return this.props.NativeHeight?.() ?? Doc.NativeHeight(this.layoutDoc); }
// @computed get scaling() { return !this.nativeWidth ? 1 : this.props.PanelHeight() / this.nativeHeight; }
// @computed get backgroundEvents() { return SnappingManager.GetIsDragging(); }
// observer: any;
// render() {
// TraceMobx();
// const editableViewProps = {
// GetValue: () => "",
// SetValue: this.addGroup,
// // I don't recall ever seeing this add a group button
// contents: "+ ADD A GROUP"
// };
// const buttonMenu = this.rootDoc.buttonMenu;
// const noviceExplainer = this.rootDoc.explainer;
// return (
// <>
// {buttonMenu || noviceExplainer ? <div className="documentButtonMenu">
// {buttonMenu ? this.buttonMenu : null}
// {Doc.UserDoc().noviceMode && noviceExplainer ?
// <div className="documentExplanation">
// {noviceExplainer}
// </div>
// : null
// }
// </div> : null}
// <div className="collectionStackingMasonry-cont" >
// <div className={"collectionNoteTakingView"}
// ref={this.createRef}
// style={{
// overflowY: this.props.isContentActive() ? "auto" : "hidden",
// background: this.props.styleProvider?.(this.rootDoc, this.props, StyleProp.BackgroundColor),
// pointerEvents: this.backgroundEvents ? "all" : undefined
// }}
// onScroll={action(e => this._scroll = e.currentTarget.scrollTop)}
// onDrop={this.onExternalDrop.bind(this)}
// onContextMenu={this.onContextMenu}
// onWheel={e => this.props.isContentActive(true) && e.stopPropagation()} >
// {this.renderedSections}
// </div>
// </div>
// </>
// );
// }
// }
|