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
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
|
/* eslint-disable no-restricted-syntax */
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { IconButton, Popup, PopupTrigger, Size, Type } from 'browndash-components';
import { IReactionDisposer, ObservableMap, action, autorun, computed, makeObservable, observable, observe, override, reaction, runInAction } from 'mobx';
import { observer } from 'mobx-react';
import * as React from 'react';
import { ClientUtils, returnEmptyDoclist, returnEmptyString, returnFalse, returnIgnore, returnNever, returnTrue, setupMoveUpEvents, smoothScroll } from '../../../../ClientUtils';
import { emptyFunction } from '../../../../Utils';
import { Doc, DocListCast, Field, FieldType, IdToDoc, NumListCast, Opt, StrListCast } from '../../../../fields/Doc';
import { AclPrivate, DocData } from '../../../../fields/DocSymbols';
import { Id } from '../../../../fields/FieldSymbols';
import { List } from '../../../../fields/List';
import { ColumnType } from '../../../../fields/SchemaHeaderField';
import { BoolCast, Cast, NumCast, StrCast } from '../../../../fields/Types';
import { DocUtils } from '../../../documents/DocUtils';
import { Docs, DocumentOptions, FInfo } from '../../../documents/Documents';
import { DragManager } from '../../../util/DragManager';
import { dropActionType } from '../../../util/DropActionTypes';
import { SettingsManager } from '../../../util/SettingsManager';
import { undoBatch, undoable } from '../../../util/UndoManager';
import { ContextMenu } from '../../ContextMenu';
import { EditableView } from '../../EditableView';
import { ObservableReactComponent } from '../../ObservableReactComponent';
import { StyleProp } from '../../StyleProp';
import { DefaultStyleProvider } from '../../StyleProvider';
import { Colors } from '../../global/globalEnums';
import { DocumentView } from '../../nodes/DocumentView';
import { FieldViewProps } from '../../nodes/FieldView';
import { FocusViewOptions } from '../../nodes/FocusViewOptions';
import { CollectionSubView } from '../CollectionSubView';
import './CollectionSchemaView.scss';
import { SchemaColumnHeader } from './SchemaColumnHeader';
import { SchemaRowBox } from './SchemaRowBox';
import { ActionButton } from '@adobe/react-spectrum';
import { CollectionMasonryViewFieldRow } from '../CollectionMasonryViewFieldRow';
import { Func } from 'mocha';
import { CollectionView } from '../CollectionView';
import { listSpec } from '../../../../fields/Schema';
import { GetEffectiveAcl } from '../../../../fields/util';
import { ContextMenuProps } from '../../ContextMenuItem';
import { truncate } from 'lodash';
import { DocumentManager } from '../../../util/DocumentManager';
import { TbHemispherePlus } from 'react-icons/tb';
import { docs_v1 } from 'googleapis';
import { SchemaCellField } from './SchemaCellField';
import { threadId } from 'worker_threads';
import { FontIconBox } from '../../nodes/FontIconBox/FontIconBox';
const { SCHEMA_NEW_NODE_HEIGHT } = require('../../global/globalCssVariables.module.scss'); // prettier-ignore
export const FInfotoColType: { [key: string]: ColumnType } = {
string: ColumnType.String,
number: ColumnType.Number,
boolean: ColumnType.Boolean,
date: ColumnType.Date,
image: ColumnType.Image,
rtf: ColumnType.RTF,
enumeration: ColumnType.Enumeration,
};
const defaultColumnKeys: string[] = ['title', 'type', 'author', 'author_date', 'text'];
@observer
export class CollectionSchemaView extends CollectionSubView() {
private _keysDisposer: any;
private _disposers: { [name: string]: IReactionDisposer } = {};
private _previewRef: HTMLDivElement | null = null;
private _makeNewColumn: boolean = false;
private _documentOptions: DocumentOptions = new DocumentOptions();
private _tableContentRef: HTMLDivElement | null = null;
private _menuTarget = React.createRef<HTMLDivElement>();
private _headerRefs: SchemaColumnHeader[] = [];
private _eqHighlightColors: Array<[{r: number, g: number, b: number}, {r: number, g: number, b: number}]> = [];
constructor(props: any) {
super(props);
makeObservable(this);
const lightenedColor = (r: number, g: number, b:number) => { const lightened = ClientUtils.lightenRGB(r, g, b, 165); return {r: lightened[0], g: lightened[1], b: lightened[2]}} // prettier-ignore
const colors = (r: number, g: number, b: number): [any, any] => {return [{r: r, g: g, b: b}, lightenedColor(r, g, b)]} // prettier-ignore
this._eqHighlightColors.push(colors(70, 150, 50));
this._eqHighlightColors.push(colors(180, 70, 20));
this._eqHighlightColors.push(colors(70, 50, 150));
this._eqHighlightColors.push(colors(0, 140, 140));
this._eqHighlightColors.push(colors(140, 30, 110));
this._eqHighlightColors.push(colors(20, 50, 200));
this._eqHighlightColors.push(colors(210, 30, 40));
this._eqHighlightColors.push(colors(120, 130, 30));
this._eqHighlightColors.push(colors(50, 150, 70));
this._eqHighlightColors.push(colors(10, 90, 180));
}
static _rowHeight: number = 50;
static _rowSingleLineHeight: number = 32;
public static _minColWidth: number = 25;
public static _rowMenuWidth: number = 60;
public static _previewDividerWidth: number = 4;
public static _newNodeInputHeight: number = Number(SCHEMA_NEW_NODE_HEIGHT);
public fieldInfos = new ObservableMap<string, FInfo>();
@observable _menuKeys: string[] = [];
@observable _rowEles: ObservableMap = new ObservableMap<Doc, HTMLDivElement>();
@observable _colEles: HTMLDivElement[] = [];
@observable _displayColumnWidths: number[] | undefined = undefined;
@observable _columnMenuIndex: number | undefined = undefined;
@observable _newFieldWarning: string = '';
@observable _makeNewField: boolean = false;
@observable _newFieldDefault: any = 0;
@observable _newFieldType: ColumnType = ColumnType.Number;
@observable _menuValue: string = '';
@observable _filterColumnIndex: number | undefined = undefined;
@observable _filterSearchValue: string = '';
@observable _selectedCol: number = 0;
@observable _selectedCells: Array<Doc> = [];
@observable _mouseCoordinates = { x: 0, y: 0, prevX: 0, prevY: 0 };
@observable _lowestSelectedIndex: number = -1; //lowest index among selected rows; used to properly sync dragged docs with cursor position
@observable _relCursorIndex: number = -1; //cursor index relative to the current selected cells
@observable _draggedColIndex: number = 0;
@observable _colBeingDragged: boolean = false;
@observable _colKeysFiltered: boolean = false;
@observable _cellTags: ObservableMap = new ObservableMap<Doc, Array<string>>();
@observable _highlightedCellsInfo: Array<[doc: Doc, field: string]> = [];
@observable _cellHighlightColors: ObservableMap = new ObservableMap<string, string[]>();
@observable _docs: Doc[] = [];
@observable _referenceSelectMode: {enabled: boolean, currEditing: SchemaCellField | undefined} = {enabled: false, currEditing: undefined}
// target HTMLelement portal for showing a popup menu to edit cell values.
public get MenuTarget() {
return this._menuTarget.current;
}
@computed get _selectedDocs() {
// get all selected documents then filter out any whose parent is not this schema document
const selected = DocumentView.SelectedDocs().filter(doc => this.docs.includes(doc));
//&& this._selectedCells.includes(doc)
if (!selected.length) {
// if no schema doc is directly selected, test if a child of a schema doc is selected (such as in the preview window)
const childOfSchemaDoc = DocumentView.SelectedDocs().find(sel => DocumentView.getContextPath(sel, true).includes(this.Document));
if (childOfSchemaDoc) {
const contextPath = DocumentView.getContextPath(childOfSchemaDoc, true);
return [contextPath[contextPath.indexOf(childOfSchemaDoc) - 1]]; // the schema doc that is "selected" by virtue of one of its children being selected
}
}
return selected;
}
@computed get highlightedCells() {
return this._highlightedCellsInfo.map(info => this.getCellElement(info[0], info[1]));
}
@computed get documentKeys() {
return Array.from(this.fieldInfos.keys());
}
@computed get previewWidth() {
return NumCast(this.layoutDoc.schema_previewWidth);
}
@computed get tableWidth() {
return this._props.PanelWidth() - this.previewWidth - (this.previewWidth === 0 ? 0 : CollectionSchemaView._previewDividerWidth);
}
@computed get columnKeys() {
return StrListCast(this.layoutDoc.schema_columnKeys, defaultColumnKeys);
}
@computed get storedColumnWidths() {
const widths = NumListCast(
this.layoutDoc.schema_columnWidths,
this.columnKeys.map(() => (this.tableWidth - CollectionSchemaView._rowMenuWidth) / this.columnKeys.length)
);
const totalWidth = widths.reduce((sum, width) => sum + width, 0);
if (totalWidth !== this.tableWidth - CollectionSchemaView._rowMenuWidth) {
return widths.map(w => (w / totalWidth) * (this.tableWidth - CollectionSchemaView._rowMenuWidth));
}
return widths;
}
@computed get rowHeights() {
return this.docs.map(() => this.rowHeightFunc());
}
@computed get displayColumnWidths() {
return this._displayColumnWidths ?? this.storedColumnWidths;
}
@computed get sortField() {
return StrCast(this.layoutDoc.sortField);
}
@computed get sortDesc() {
return BoolCast(this.layoutDoc.sortDesc);
}
componentDidMount() {
this._props.setContentViewBox?.(this);
document.addEventListener('keydown', this.onKeyDown);
Object.entries(this._documentOptions).forEach((pair: [string, FInfo]) => this.fieldInfos.set(pair[0], pair[1]));
this._keysDisposer = observe(
this.dataDoc[this.fieldKey ?? 'data'] as List<Doc>,
(change: any) => {
switch (change.type) {
case 'splice':
// prettier-ignore
(change as any).added.forEach((doc: Doc) => // for each document added
Doc.GetAllPrototypes(doc.value as Doc).forEach(proto => // for all of its prototypes (and itself)
Object.keys(proto).forEach(action(key => // check if any of its keys are new, and add them
!this.fieldInfos.get(key) && this.fieldInfos.set(key, new FInfo("-no description-", key === 'author'))))));
break;
case 'update': // let oldValue = change.oldValue; // fill this in if the entire child list will ever be reassigned with a new list
break;
default:
}
},
true
);
this._disposers.docdata = reaction(
() => DocListCast(this.dataDoc[this.fieldKey]),
(docs) => this._docs = docs,
{fireImmediately: true}
)
this._disposers.sortHighlight = reaction(
() => [this.sortField, this._docs, this._selectedDocs, this._highlightedCellsInfo],
() => {this.sortField && setTimeout(() => this.highlightSortedColumn())},
{fireImmediately: true}
)
}
componentWillUnmount() {
this._keysDisposer?.();
Object.values(this._disposers).forEach(disposer => disposer?.());
document.removeEventListener('keydown', this.onKeyDown);
}
// ViewBoxInterface overrides
override isUnstyledView = returnTrue; // used by style provider : turns off opacity, animation effects, scaling
removeDoc = (doc: Doc) => {
this.removeDocument(doc);
this._docs = this._docs.filter(d => d !== doc)
}
rowIndex = (doc: Doc) => this.docsWithDrag.docs.indexOf(doc);
@action
onKeyDown = (e: KeyboardEvent) => {
if (this._selectedDocs.length > 0) {
switch (e.key) {
case 'ArrowDown':
{
const lastDoc = this._selectedDocs.lastElement();
const lastIndex = this.rowIndex(lastDoc);
const curDoc = this.docs[lastIndex];
if (lastIndex >= 0 && lastIndex < this.childDocs.length - 1) {
const newDoc = this.docs[lastIndex + 1];
if (this._selectedDocs.includes(newDoc)) {
DocumentView.DeselectView(DocumentView.getFirstDocumentView(curDoc));
this.deselectCell(curDoc);
} else {
this.selectCell(newDoc, this._selectedCol, e.shiftKey, e.ctrlKey);
this.scrollToDoc(newDoc, {});
}
}
e.stopPropagation();
e.preventDefault();
}
break;
case 'ArrowUp':
{
const firstDoc = this._selectedDocs.lastElement();
const firstIndex = this.rowIndex(firstDoc);
const curDoc = this.docs[firstIndex];
if (firstIndex > 0 && firstIndex < this.childDocs.length) {
const newDoc = this.docs[firstIndex - 1];
if (this._selectedDocs.includes(newDoc)) {
DocumentView.DeselectView(DocumentView.getFirstDocumentView(curDoc));
this.deselectCell(curDoc);
} else {
this.selectCell(newDoc, this._selectedCol, e.shiftKey, e.ctrlKey);
this.scrollToDoc(newDoc, {});
}
}
e.stopPropagation();
e.preventDefault();
}
break;
case 'ArrowRight':
if (this._selectedCells) {
this._selectedCol = Math.min(this._colEles.length - 1, this._selectedCol + 1);
} else if (this._selectedDocs.length > 0) {
this.selectCell(this._selectedDocs[0], 0, false, false);
}
break;
case 'ArrowLeft':
if (this._selectedCells) {
this._selectedCol = Math.max(0, this._selectedCol - 1);
} else if (this._selectedDocs.length > 0) {
this.selectCell(this._selectedDocs[0], 0, false, false);
}
break;
case 'Backspace': {
// this._docs.forEach(doc => {
// if (!this.childDocs.concat(this.displayedSubCollectionDocs(this.Document)))
// });
// console.log('backspace detected')
undoable(() => {this._selectedDocs.forEach(d => this._docs.includes(d) && this.removeDoc(d));}, 'delete schema row');
break;
}
case 'Escape': {
this.deselectAllCells();
break;
}
case 'P': {
break;
}
default:
}
}
};
@action
changeSelectedCellColumn = () => {};
addRow = (doc: Doc | Doc[]) => this.addDocument(doc);
@undoBatch
changeColumnKey = (index: number, newKey: string, defaultVal?: any) => {
if (!this.documentKeys.includes(newKey)) this.addNewKey(newKey, defaultVal);
const currKeys = this.columnKeys.slice(); // copy the column key array first, then change it.
currKeys[index] = newKey;
this.layoutDoc.schema_columnKeys = new List<string>(currKeys);
};
@undoBatch
addColumn = (index: number = 0, key?: string, defaultVal?: any) => {
if (key && !this.documentKeys.includes(key)) this.addNewKey(key, defaultVal);
const newColWidth = this.tableWidth / (this.storedColumnWidths.length + 1);
const currWidths = this.storedColumnWidths.slice();
currWidths.splice(index, 0, newColWidth);
const newDesiredTableWidth = currWidths.reduce((w, cw) => w + cw, 0);
this.layoutDoc.schema_columnWidths = new List<number>(currWidths.map(w => (w / newDesiredTableWidth) * (this.tableWidth - CollectionSchemaView._rowMenuWidth)));
const currKeys = this.columnKeys.slice();
if (!key) key = 'EmptyColumnKey' + Math.floor(Math.random() * 1000000000000000).toString();
currKeys.splice(index, 0, key);
this.changeColumnKey(index, 'EmptyColumnKey' + Math.floor(Math.random() * 1000000000000000).toString());
this.layoutDoc.schema_columnKeys = new List<string>(currKeys);
};
@action
addNewKey = (key: string, defaultVal: any) => {
this.childDocs.forEach(doc => {
doc[DocData][key] = defaultVal;
});
}
@undoBatch
removeColumn = (index: number) => {
if (this.columnKeys.length === 1) return;
if (this._columnMenuIndex === index) {
this._headerRefs[index].toggleEditing(false);
this.closeColumnMenu();
}
const currWidths = this.storedColumnWidths.slice();
currWidths.splice(index, 1);
const newDesiredTableWidth = currWidths.reduce((w, cw) => w + cw, 0);
this.layoutDoc.schema_columnWidths = new List<number>(currWidths.map(w => (w / newDesiredTableWidth) * (this.tableWidth - CollectionSchemaView._rowMenuWidth)));
const currKeys = this.columnKeys.slice();
currKeys.splice(index, 1);
this.layoutDoc.schema_columnKeys = new List<string>(currKeys);
this._colEles.splice(index, 1);
};
@action
startResize = (e: any, index: number, rightSide: boolean) => {
this._displayColumnWidths = this.storedColumnWidths;
setupMoveUpEvents(this, e, moveEv => this.resizeColumn(moveEv, index, rightSide), this.finishResize, emptyFunction);
};
@action
resizeColumn = (e: PointerEvent, index: number, rightSide: boolean) => {
if (this._displayColumnWidths) {
let shrinking;
let growing;
let change = e.movementX;
if (rightSide && (index !== this._displayColumnWidths.length - 1)) {
growing = change < 0 ? index + 1: index;
shrinking = change < 0 ? index : index + 1;
} else if (index !== 0) {
growing = change < 0 ? index : index - 1;
shrinking = change < 0 ? index - 1 : index;
}
if (shrinking === undefined || growing === undefined) return true;
change = Math.abs(change);
if (this._displayColumnWidths[shrinking] - change < CollectionSchemaView._minColWidth) {
change = this._displayColumnWidths[shrinking] - CollectionSchemaView._minColWidth;
}
this._displayColumnWidths[shrinking] -= change * this.ScreenToLocalBoxXf().Scale;
this._displayColumnWidths[growing] += change * this.ScreenToLocalBoxXf().Scale;
return false;
}
return true;
};
@action
finishResize = () => {
this.layoutDoc.schema_columnWidths = new List<number>(this._displayColumnWidths);
this._displayColumnWidths = undefined;
};
@undoBatch
moveColumn = (fromIndex: number, toIndex: number) => {
if (this._selectedCol === fromIndex) this._selectedCol = toIndex;
else if (toIndex === this._selectedCol) this._selectedCol = fromIndex; // keeps selected cell consistent
const currKeys = this.columnKeys.slice();
currKeys.splice(toIndex, 0, currKeys.splice(fromIndex, 1)[0]);
this.layoutDoc.schema_columnKeys = new List<string>(currKeys);
const currWidths = this.storedColumnWidths.slice();
currWidths.splice(toIndex, 0, currWidths.splice(fromIndex, 1)[0]);
this.layoutDoc.schema_columnWidths = new List<number>(currWidths);
};
@action
dragColumn = (e: PointerEvent, index: number) => {
this.closeColumnMenu();
this._headerRefs.forEach(ref => ref.toggleEditing(false));
this._draggedColIndex = index;
this.setColDrag(true);
const dragData = new DragManager.ColumnDragData(index);
const dragEles = [this._colEles[index]];
this.childDocs.forEach(doc => dragEles.push(this._rowEles.get(doc).children[1].children[index]));
DragManager.StartColumnDrag(dragEles, dragData, e.x, e.y);
return true;
};
findColDropIndex = (mouseX: number) => {
let xOffset: number = this._props.ScreenToLocalTransform().inverse().transformPoint(0,0)[0] + CollectionSchemaView._rowMenuWidth;
let index: number | undefined;
this.displayColumnWidths.reduce((total, curr, i) => {
if (total <= mouseX && total + curr >= mouseX) {
if (mouseX <= total + curr) index = i;
else index = i + 1;
}
return total + curr;
}, xOffset);
return index;
};
/**
* Calculates the relative index of the cursor in the group of selected rows, ie.
* if five rows are selected and the cursor is in the middle row, its relative index would be 2.
* Used to align actively dragged documents properly with the cursor.
* @param mouseY the initial Y position of the cursor on drag
*/
@action
setRelCursorIndex = (mouseY: number) => {
this._mouseCoordinates.y = mouseY; // updates this.rowDropIndex computed value to overwrite the old cached value
const rowHeight = CollectionSchemaView._rowHeight;
const adjInitMouseY = mouseY - rowHeight - 100; // rowHeight: height of the column menu cells | 100: height of the top menu
const yOffset = this._lowestSelectedIndex * rowHeight;
const heights = this._selectedDocs.map(() => this.rowHeightFunc());
let index: number = 0;
heights.reduce((total, curr, i) => {
if (total <= adjInitMouseY && total + curr >= adjInitMouseY) {
if (adjInitMouseY <= total + curr) index = i;
else index = i + 1;
}
return total + curr;
}, yOffset);
this._relCursorIndex = index;
};
findRowDropIndex = (mouseY: number) => {
const rowHeight = CollectionSchemaView._rowHeight;
let index: number = 0;
this.rowHeights.reduce((total, curr, i) => {
if (total <= mouseY && total + curr >= mouseY) {
if (mouseY <= total + curr) index = i;
else index = i + 1;
}
return total + curr;
}, rowHeight);
// fix index if selected rows are dragged out of bounds
let adjIndex = index - this._relCursorIndex;
const maxY = this.rowHeights.reduce((total, curr) => total + curr, 0) + rowHeight;
if (mouseY > maxY) adjIndex = this.childDocs.length - 1;
else if (adjIndex <= 0) adjIndex = 0;
return adjIndex;
};
highlightDraggedColumn = (index: number) =>
this._colEles.forEach((colRef, i) => {
const edgeStyle = i === index ? `solid 2px ${Colors.MEDIUM_BLUE}` : '';
const sorted = i === this.columnKeys.indexOf(this.sortField);
const cellEles = [
colRef,
...this.docsWithDrag.docs
.filter(doc => (i !== this._selectedCol || !this._selectedDocs.includes(doc)) && !sorted)
.map(doc => this._rowEles.get(doc).children[1].children[i]),
];
cellEles.forEach(ele => {
if (sorted || this.highlightedCells.includes(ele)) return;
ele.style.borderTop = ele === cellEles[0] ? edgeStyle : '';
ele.style.borderLeft = edgeStyle;
ele.style.borderRight = edgeStyle;
ele.style.borderBottom = ele === cellEles.slice(-1)[0] ? edgeStyle : '';
});
});
removeDragHighlight = () => {
this._colEles.forEach((colRef, i) => {
const sorted = i === this.columnKeys.indexOf(this.sortField);
if (sorted) return;
colRef.style.borderLeft = '';
colRef.style.borderRight = '';
colRef.style.borderTop = '';
this.childDocs.forEach(doc => {
const cell = this._rowEles.get(doc).children[1].children[i];
if (!(this._selectedDocs.includes(doc) && i === this._selectedCol) && !(this.highlightedCells.includes(cell)) && cell) {
cell.style.borderLeft = '';
cell.style.borderRight = '';
cell.style.borderBottom = '';
}
});
});
}
highlightSortedColumn = (field?: string, descending?: boolean) => {
let index = -1;
let highlightColors: string[] = [];
const rowCount: number = this._docs.length + 1;
if (field || this.sortField){
index = this.columnKeys.indexOf(field || this.sortField);
const increment: number = 110/rowCount;
for (let i = 1; i <= rowCount; ++i){
const adjColor = ClientUtils.lightenRGB(16, 66, 230, increment * i);
highlightColors.push(`solid 2px rgb(${adjColor[0]}, ${adjColor[1]}, ${adjColor[2]})`);
}
}
this._colEles.forEach((colRef, i) => {
const highlight: boolean = i === index;
const desc: boolean = descending || this.sortDesc;
const cellEles = [
colRef,
...this.docsWithDrag.docs
.filter(doc => (i !== this._selectedCol || !this._selectedDocs.includes(doc)))
.map(doc => this._rowEles.get(doc).children[1].children[i]),
];
const cellCount = cellEles.length;
for (let ele = 0; ele < cellCount; ++ele){
const currCell = cellEles[ele];
if (this.highlightedCells.includes(currCell)) continue;
const style = highlight ? desc ? `${highlightColors[cellCount - 1 - ele]}` : `${highlightColors[ele]}` : '';
currCell.style.borderLeft = style;
currCell.style.borderRight = style;
}
cellEles[0].style.borderTop = highlight ? desc ? `${highlightColors[cellCount - 1]}` : `${highlightColors[0]}` : '';
if (!(this._selectedDocs.includes(this.docsWithDrag.docs[this.docsWithDrag.docs.length - 1]) && this._selectedCol === index) && !this.highlightedCells.includes(cellEles[cellCount - 1])) cellEles[cellCount - 1].style.borderBottom = highlight ? desc ? `${highlightColors[0]}` : `${highlightColors[cellCount - 1]}` : '';
});
}
getCellElement = (doc: Doc, fieldKey: string) => {
const index = this.columnKeys.indexOf(fieldKey);
const cell = this._rowEles.get(doc).children[1].children[index];
return cell;
}
findCellRefs = (text: string) => {
const pattern = /(this|d(\d+))\.(\w+)/g;
interface Match { docRef: string; field: string; }
const matches: Match[] = [];
let match: RegExpExecArray | null;
while ((match = pattern.exec(text)) !== null) {
const docRef = match[1] === 'this' ? match[1] : match[2];
matches.push({ docRef, field: match[3] });
}
const cells: Array<any> = [];
matches.forEach((match: Match) => {
const {docRef, field} = match;
const docView = DocumentManager.Instance.DocumentViews[Number(docRef)];
const doc = docView?.Document ?? undefined;
if (this.columnKeys.includes(field) && this._docs.includes(doc)) {cells.push([doc, field])}
})
return cells;
}
selectionOverlap = (doc: Doc): [boolean, boolean] => {
const docs = this.docsWithDrag.docs;
const index = this.rowIndex(doc);
const selectedBelow: boolean = this._selectedDocs.includes(docs[index + 1]);
const selectedAbove: boolean = this._selectedDocs.includes(docs[index - 1]);
return [selectedAbove, selectedBelow];
}
@action
removeCellHighlights = () => {
this._highlightedCellsInfo.forEach(info => {
const doc = info[0];
const field = info[1];
const cell = this.getCellElement(doc, field);
if (this._selectedDocs.includes(doc) && this._selectedCol === this.columnKeys.indexOf(field)) {
cell.style.border = `solid 2px ${Colors.MEDIUM_BLUE}`;
if (this.selectionOverlap(doc)[0]) cell.style.borderTop = '';
if (this.selectionOverlap(doc)[1]) cell.style.borderBottom = '';
} else cell.style.border = '';
cell.style.backgroundColor = '';});
this._highlightedCellsInfo = [];
}
restoreCellHighlights = () => {
this._highlightedCellsInfo.forEach(info => {
const doc = info[0];
const field = info[1];
const key = `${doc[Id]}_${field}`;
const cell = this.getCellElement(doc, field);
const color = this._cellHighlightColors.get(key)[0];
cell.style.borderTop = color;
cell.style.borderLeft = color;
cell.style.borderRight = color;
cell.style.borderBottom = color;
});
}
highlightCells = (text: string) => {
this.removeCellHighlights();
const cellsToHighlight = this.findCellRefs(text);
this._highlightedCellsInfo = [...cellsToHighlight];
for (let i = 0; i < this._highlightedCellsInfo.length; ++i) {
const info = this._highlightedCellsInfo[i];
const color = this._eqHighlightColors[i % 10];
const colorStrings = [`solid 2px rgb(${color[0].r}, ${color[0].g}, ${color[0].b})`, `rgb(${color[1].r}, ${color[1].g}, ${color[1].b})`];
const doc = info[0];
const field = info[1];
const key = `${doc[Id]}_${field}`;
console.log(key + ' ' + i % 10 + ' color: ' + color[0].r + color[0].g + color[0].b);
const cell = this.getCellElement(doc, field);
this._cellHighlightColors.set(key, [colorStrings[0], colorStrings[1]]);
cell.style.border = colorStrings[0];
cell.style.backgroundColor = colorStrings[1];
}
}
@action
addRowRef = (doc: Doc, ref: HTMLDivElement) => this._rowEles.set(doc, ref);
@action
setColRef = (index: number, ref: HTMLDivElement) => {
if (this._colEles.length <= index) {
this._colEles.push(ref);
} else {
this._colEles[index] = ref;
}
};
@action
addDocToSelection = (doc: Doc, extendSelection: boolean) => {
const rowDocView = DocumentView.getDocumentView(doc);
if (rowDocView) DocumentView.SelectView(rowDocView, extendSelection);
};
@action
clearSelection = () => {
if (this._referenceSelectMode.enabled) return;
DocumentView.DeselectAll();
this.deselectAllCells();
};
selectRows = (doc: Doc, lastSelected: Doc) => {
const index = this.rowIndex(doc);
const lastSelectedRow = this.rowIndex(lastSelected);
const startRow = Math.min(lastSelectedRow, index);
const endRow = Math.max(lastSelectedRow, index);
for (let i = startRow; i <= endRow; i++) {
const currDoc = this.docsWithDrag.docs[i];
if (!this._selectedDocs.includes(currDoc)) {
this.selectCell(currDoc, this._selectedCol, false, true);
}
}
};
selectReference = (doc: Doc | undefined, col: number) => {
if (!doc) return;
const docIndex = DocumentView.getDocViewIndex(doc);
const field = this.columnKeys[col];
const refToAdd = `d${docIndex}.${field}`
const editedField = this._referenceSelectMode.currEditing ? this._referenceSelectMode.currEditing as SchemaCellField : null;
editedField?.appendText(refToAdd, true);
editedField?.setupRefSelect(false);
return;
}
@action
selectCell = (doc: Doc, col: number, shiftKey: boolean, ctrlKey: boolean) => {
this.closeColumnMenu();
if (!shiftKey && !ctrlKey) this.clearSelection();
!this._selectedCells && (this._selectedCells = []);
!shiftKey && this._selectedCells.push(doc);
const index = this.rowIndex(doc);
if (!this) return;
const lastSelected = Array.from(this._selectedDocs).lastElement();
if (shiftKey && lastSelected && !this._selectedDocs.includes(doc)) this.selectRows(doc, lastSelected);
else if (ctrlKey) {
if (lastSelected && this._selectedDocs.includes(doc)) {
DocumentView.DeselectView(DocumentView.getFirstDocumentView(doc));
this.deselectCell(doc);
} else this.addDocToSelection(doc, true);
} else this.addDocToSelection(doc, false);
this._selectedCol = col;
if (this._lowestSelectedIndex === -1 || index < this._lowestSelectedIndex) this._lowestSelectedIndex = index;
};
@action
deselectCell = (doc: Doc) => {
this._selectedCells && (this._selectedCells = this._selectedCells.filter(d => d !== doc));
if (this.rowIndex(doc) === this._lowestSelectedIndex) this._lowestSelectedIndex = Math.min(...this._selectedDocs.map(d => this.rowIndex(d)));
};
@action
deselectAllCells = () => {
this._selectedCells = [];
this._lowestSelectedIndex = -1;
};
@computed
get rowDropIndex() {
const mouseY = this.ScreenToLocalBoxXf().transformPoint(this._mouseCoordinates.x, this._mouseCoordinates.y)[1];
return this.findRowDropIndex(mouseY);
}
@action
onInternalDrop = (e: Event, de: DragManager.DropEvent) => {
if (de.complete.columnDragData) {
setTimeout(() => {this.setColDrag(false);});
e.stopPropagation();
return true;
}
const draggedDocs = de.complete.docDragData?.draggedDocuments;
if (draggedDocs && super.onInternalDrop(e, de) && !this.sortField) {
const docs = this.docsWithDrag.docs.slice();
this.dataDoc[this.fieldKey ?? 'data'] = new List<Doc>([...docs]);
this.clearSelection();
draggedDocs.forEach(doc => {
DocumentView.addViewRenderedCb(doc, dv => dv.select(true));
});
this._lowestSelectedIndex = Math.min(...(draggedDocs?.map(doc => this.rowIndex(doc)) ?? []));
return true;
}
return false;
};
onExternalDrop = (e: React.DragEvent) => super.onExternalDrop(e, {}, docs => docs.map(doc => this.addDocument(doc)));
onDividerDown = (e: React.PointerEvent) => setupMoveUpEvents(this, e, this.onDividerMove, emptyFunction, emptyFunction);
@action
onDividerMove = (e: PointerEvent) => {
const nativeWidth = this._previewRef!.getBoundingClientRect();
const minWidth = 40;
const maxWidth = 1000;
const movedWidth = this.ScreenToLocalBoxXf().transformDirection(nativeWidth.right - e.clientX, 0)[0];
const width = movedWidth < minWidth ? minWidth : movedWidth > maxWidth ? maxWidth : movedWidth;
this.layoutDoc.schema_previewWidth = width;
return false;
};
menuCallback = (x: number, y: number) => {
ContextMenu.Instance.clearItems();
DocUtils.addDocumentCreatorMenuItems(this.addRow, this.addRow, x, y, true);
ContextMenu.Instance.displayMenu(x, y, undefined, true);
};
focusDocument = (doc: Doc, options: FocusViewOptions) => {
Doc.BrushDoc(doc);
this.scrollToDoc(doc, options);
return undefined;
};
scrollToDoc = (doc: Doc, options: FocusViewOptions) => {
const found = this._tableContentRef && Array.from(this._tableContentRef.getElementsByClassName('documentView-node')).find((node: any) => node.id === doc[Id]);
if (found) {
const rect = found.getBoundingClientRect();
const localRect = this.ScreenToLocalBoxXf().transformBounds(rect.left, rect.top, rect.width, rect.height);
if (localRect.y < this.rowHeightFunc() || localRect.y + localRect.height > this._props.PanelHeight()) {
const focusSpeed = options.zoomTime ?? 50;
smoothScroll(focusSpeed, this._tableContentRef!, localRect.y + this._tableContentRef!.scrollTop - this.rowHeightFunc(), options.easeFunc);
return focusSpeed;
}
}
return undefined;
};
@computed get fieldDefaultInput() {
switch (this._newFieldType) {
case ColumnType.Number:
return (
<input
type="number"
name=""
id=""
value={this._newFieldDefault ?? 0}
onPointerDown={e => e.stopPropagation()}
onChange={action((e: any) => {
this._newFieldDefault = e.target.value;
})}
/>
);
case ColumnType.Boolean:
return (
<>
<input
type="checkbox"
name=""
id=""
value={this._newFieldDefault}
onPointerDown={e => e.stopPropagation()}
onChange={action((e: any) => {
this._newFieldDefault = e.target.checked;
})}
/>
{this._newFieldDefault ? 'true' : 'false'}
</>
);
case ColumnType.String:
return (
<input
type="text"
name=""
id=""
value={this._newFieldDefault ?? ''}
onPointerDown={e => e.stopPropagation()}
onChange={action((e: any) => {
this._newFieldDefault = e.target.value;
})}
/>
);
default:
return undefined;
}
}
onSearchKeyDown = (e: React.KeyboardEvent) => {
switch (e.key) {
case 'Enter':
this._menuKeys.length > 0 && this._menuValue.length > 0
? this.setKey(this._menuKeys[0])
: runInAction(() => {
this._makeNewField = true;
});
break;
case 'Escape':
this.closeColumnMenu();
break;
default:
}
};
@action
setKey = (key: string, defaultVal?: any, index?: number) => {
if (this.columnKeys.includes(key)) return;
if (this._makeNewColumn) {
this.addColumn(this.columnKeys.indexOf(key), key, defaultVal);
this._makeNewColumn = false;
} else this.changeColumnKey(this._columnMenuIndex! | index!, key, defaultVal);
this.closeColumnMenu();
};
setCellValues = (key: string, value: string) => {
if (this._selectedCells.length === 1) this.docs.forEach(doc => !doc._lockedSchemaEditing && Doc.SetField(doc, key, value));
else this._selectedCells.forEach(doc => !doc._lockedSchemaEditing && Doc.SetField(doc, key, value));
return true;
};
@action
toggleMenuKeyFilter = () => {
if (!this._colKeysFiltered){
this._colKeysFiltered = true;
this._menuKeys = this.documentKeys.filter(key => this.childDocsInclude(key));
} else {
this._colKeysFiltered = false;
this._menuKeys = this.documentKeys;
}
}
childDocsInclude = (key: string) => {
let keyExists: boolean = false;
this.childDocs.forEach(doc => {if (Object.keys(doc).includes(key)) keyExists = true;})
return keyExists
}
@action
openColumnMenu = (index: number, newCol: boolean) => {
this.closeFilterMenu();
this._makeNewColumn = false;
this._columnMenuIndex = index;
this._menuValue = '';
this._menuKeys = this.documentKeys;
this._newFieldWarning = '';
this._makeNewColumn = newCol;
};
@action
closeColumnMenu = () => {
this._columnMenuIndex = undefined;
};
@action
openFilterMenu = (index: number) => {
this._filterColumnIndex = index;
this._filterSearchValue = '';
};
@action
closeFilterMenu = () => {
this._filterColumnIndex = undefined;
};
@undoBatch
setColumnSort = (field: string | undefined, desc: boolean = false) => {
this.layoutDoc.sortField = field;
this.layoutDoc.sortDesc = desc;
};
openContextMenu = (x: number, y: number, index: number) => {
this.closeColumnMenu();
this.closeFilterMenu();
const cm = ContextMenu.Instance;
cm.clearItems();
const fieldSortedAsc = (this.sortField === this.columnKeys[index] && !this.sortDesc);
const fieldSortedDesc = (this.sortField === this.columnKeys[index] && this.sortDesc);
const revealOptions = cm.findByDescription('Sort column')
const sortOptions: ContextMenuProps[] = revealOptions && revealOptions && 'subitems' in revealOptions ? revealOptions.subitems : [];
sortOptions.push({
description: 'Sort A-Z',
event: () => {
this.setColumnSort(undefined);
const field = this.columnKeys[index];
this._docs = this.sortDocs(field, false);
setTimeout(() => {
this.highlightSortedColumn(field, false);
setTimeout(() => this.highlightSortedColumn(), 480);
}, 20);
},
icon: 'arrow-down-a-z',});
sortOptions.push({
description: 'Sort Z-A',
event: () => {
this.setColumnSort(undefined);
const field = this.columnKeys[index];
this._docs = this.sortDocs(field, true);
setTimeout(() => {
this.highlightSortedColumn(field, true);
setTimeout(() => this.highlightSortedColumn(), 480);
}, 20);
},
icon: 'arrow-up-z-a'});
sortOptions.push({
description: 'Persistent Sort A-Z',
event: () => {
if (fieldSortedAsc){
this.setColumnSort(undefined);
this.highlightSortedColumn();
} else {
this.sortDocs(this.columnKeys[index], false);
this.setColumnSort(this.columnKeys[index], false);
}
},
icon: fieldSortedAsc ? 'lock' : 'lock-open'}); // prettier-ignore
sortOptions.push({
description: 'Persistent Sort Z-A',
event: () => {
if (fieldSortedDesc){
this.setColumnSort(undefined);
this.highlightSortedColumn();
} else {
this.sortDocs(this.columnKeys[index], true);
this.setColumnSort(this.columnKeys[index], true);
}
},
icon: fieldSortedDesc ? 'lock' : 'lock-open'}); // prettier-ignore
cm.addItem({
description: `Change field`,
event: () => this.openColumnMenu(index, false),
icon: 'pencil-alt',
});
cm.addItem({
description: 'Filter field',
event: () => this.openFilterMenu(index),
icon: 'filter',
});
cm.addItem({
description: 'Sort column',
addDivider: false,
noexpand: true,
subitems: sortOptions,
icon: 'sort'
});
cm.addItem({
description: 'Add column to left',
event: () => this.addColumn(index),
icon: 'plus',
});
cm.addItem({
description: 'Add column to right',
event: () => this.addColumn(index + 1),
icon: 'plus',
});
cm.addItem({
description: 'Delete column',
event: () => this.removeColumn(index),
icon: 'trash',
});
cm.displayMenu(x, y, undefined, false);
};
@action
updateKeySearch = (val: string) => {
this._menuKeys = this.documentKeys.filter(value => value.toLowerCase().includes(val.toLowerCase()));
};
getFieldFilters = (field: string) => StrListCast(this.Document._childFilters).filter(filter => filter.split(Doc.FilterSep)[0] === field);
removeFieldFilters = (field: string) => {
this.getFieldFilters(field).forEach(filter => Doc.setDocFilter(this.Document, field, filter.split(Doc.FilterSep)[1], 'remove'));
};
onFilterKeyDown = (e: React.KeyboardEvent) => {
switch (e.key) {
case 'Enter':
case 'Escape':
this.closeFilterMenu();
break;
default:
}
};
@action
updateFilterSearch = (e: React.ChangeEvent<HTMLInputElement>) => {
this._filterSearchValue = e.target.value;
};
// @computed get newFieldMenu() {
// return (
// <div className="schema-new-key-options">
// <div className="schema-key-type-option">
// <input
// type="radio"
// name="newFieldType"
// checked={this._newFieldType === ColumnType.Number}
// onChange={action(() => {
// this._newFieldType = ColumnType.Number;
// this._newFieldDefault = 0;
// })}
// />
// number
// </div>
// <div className="schema-key-type-option">
// <input
// type="radio"
// name="newFieldType"
// checked={this._newFieldType === ColumnType.Boolean}
// onChange={action(() => {
// this._newFieldType = ColumnType.Boolean;
// this._newFieldDefault = false;
// })}
// />
// boolean
// </div>
// <div className="schema-key-type-option">
// <input
// type="radio"
// name="newFieldType"
// checked={this._newFieldType === ColumnType.String}
// onChange={action(() => {
// this._newFieldType = ColumnType.String;
// this._newFieldDefault = '';
// })}
// />
// string
// </div>
// <div className="schema-key-default-val">value: {this.fieldDefaultInput}</div>
// <div className="schema-key-warning">{this._newFieldWarning}</div>
// <div
// className="schema-column-menu-button"
// onPointerDown={action(() => {
// if (this.documentKeys.includes(this._menuValue)) {
// this._newFieldWarning = 'Field already exists';
// } else if (this._menuValue.length === 0) {
// this._newFieldWarning = 'Field cannot be an empty string';
// } else {
// this.setKey(this._menuValue, this._newFieldDefault);
// }
// this._columnMenuIndex = undefined;
// })}>
// done
// </div>
// </div>
// );
// }
onKeysPassiveWheel = (e: WheelEvent) => {
// if scrollTop is 0, then don't let wheel trigger scroll on any container (which it would since onScroll won't be triggered on this)
if (!this._oldKeysWheel.scrollTop && e.deltaY <= 0) e.preventDefault();
e.stopPropagation();
};
_oldKeysWheel: any;
@computed get keysDropdown() {
return (
<div className="schema-key-search">
<div
className="schema-key-list"
ref={r => {
this._oldKeysWheel?.removeEventListener('wheel', this.onKeysPassiveWheel);
this._oldKeysWheel = r;
r?.addEventListener('wheel', this.onKeysPassiveWheel, { passive: false });
}}>
{this._menuKeys.map(key => (
<div
className="schema-search-result"
onPointerDown={e => {
e.stopPropagation();
this.setKey(key);
}}>
<p>
<span className="schema-search-result-key">
<b>{key}</b>
</span>
<span>: </span>
<span className="schema-search-result-desc"> {this.fieldInfos.get(key)!.description}</span>
</p>
</div>
))}
</div>
</div>
);
}
@computed get renderColumnMenu() {
const x = this._columnMenuIndex! === -1 ? 0 : this.displayColumnWidths.reduce((total, curr, index) => total + (index < this._columnMenuIndex! ? curr : 0), CollectionSchemaView._rowMenuWidth);
return (
<div className="schema-column-menu" style={{ left: x, maxWidth: `${Math.max(this._colEles[this._columnMenuIndex ?? 0].offsetWidth, 150)}px` }}>
{this.keysDropdown}
</div>
);
}
@computed get renderFilterOptions() {
const keyOptions: string[] = [];
const columnKey = this.columnKeys[this._filterColumnIndex!];
const allDocs = DocListCast(this.dataDoc[this._props.fieldKey]);
allDocs.forEach(doc => {
const value = StrCast(doc[columnKey]);
if (!keyOptions.includes(value) && value !== '' && (this._filterSearchValue === '' || value.includes(this._filterSearchValue))) {
keyOptions.push(value);
}
});
const filters = StrListCast(this.Document._childFilters);
return keyOptions.map(key => {
let bool = false;
if (filters !== undefined) {
const ind = filters.findIndex(filter => filter.split(Doc.FilterSep)[1] === key);
const fields = ind === -1 ? undefined : filters[ind].split(Doc.FilterSep);
bool = fields ? fields[2] === 'check' : false;
}
return (
<div key={key} className="schema-filter-option">
<input
type="checkbox"
onPointerDown={e => e.stopPropagation()}
onClick={e => e.stopPropagation()}
onChange={e => Doc.setDocFilter(this.Document, columnKey, key, e.target.checked ? 'check' : 'remove')}
checked={bool}
/>
<span style={{ paddingLeft: 4 }}>{key}</span>
</div>
);
});
}
@computed get renderFilterMenu() {
const x = this.displayColumnWidths.reduce((total, curr, index) => total + (index < this._filterColumnIndex! ? curr : 0), CollectionSchemaView._rowMenuWidth);
return (
<div className="schema-filter-menu" style={{ left: x, maxWidth: `${Math.max(this._colEles[this._columnMenuIndex ?? 0].offsetWidth, 150)}px`}}>
<input className="schema-filter-input" type="text" value={this._filterSearchValue} onKeyDown={this.onFilterKeyDown} onChange={this.updateFilterSearch} onPointerDown={e => e.stopPropagation()} />
{this.renderFilterOptions}
<div
className="schema-column-menu-button"
onPointerDown={action((e: any) => {
e.stopPropagation();
this.closeFilterMenu();
})}>
done
</div>
</div>
);
}
@action setColDrag = (beingDragged: boolean) => {
this._colBeingDragged = beingDragged;
!beingDragged && this.removeDragHighlight();
}
@action updateMouseCoordinates = (e: React.PointerEvent<HTMLDivElement>) => {
const prevX = this._mouseCoordinates.x;
const prevY = this._mouseCoordinates.y;
this._mouseCoordinates = { x: e.clientX, y: e.clientY, prevX: prevX, prevY: prevY };
}
@action
onPointerMove = (e: React.PointerEvent<HTMLDivElement>) => {
if (DragManager.docsBeingDragged.length) {
this.updateMouseCoordinates(e);
}
if (this._colBeingDragged) {
this.updateMouseCoordinates(e);
const newIndex = this.findColDropIndex(e.clientX);
const direction: number = this._mouseCoordinates.x > this._mouseCoordinates.prevX ? 1 : 0;
if (newIndex !== undefined && ((newIndex > this._draggedColIndex && direction === 1) || (newIndex < this._draggedColIndex && direction === 0))) {
this.moveColumn(this._draggedColIndex, newIndex ?? this._draggedColIndex);
this._draggedColIndex = newIndex !== undefined ? newIndex : this._draggedColIndex;
}
this.highlightSortedColumn(); //TODO: Make this more efficient
this.restoreCellHighlights();
!(this.sortField && this._draggedColIndex === this.columnKeys.indexOf(this.sortField)) && this.highlightDraggedColumn(this._draggedColIndex);
}
};
subCollectionDocs = (doc: Doc, displayed: boolean) => {
const childDocs = DocListCast(doc[Doc.LayoutFieldKey(doc)]);
let collections: Array<Doc> = [];
if (displayed) collections = childDocs.filter(d => d.type === 'collection' && d._childrenSharedWithSchema);
else collections = childDocs.filter(d => d.type === 'collection' && !d._childrenSharedWithSchema);
let toReturn: Doc[] = [...childDocs];
collections.forEach(d => toReturn = toReturn.concat(this.subCollectionDocs(d, displayed)));
return toReturn;
}
@computed get docs() {
let docsFromChildren: Doc[] = [];
const displayedCollections = this.childDocs.filter(d => d.type === 'collection' && d._childrenSharedWithSchema);
displayedCollections.forEach(d => {
let docsNotAlreadyDisplayed = this.subCollectionDocs(d, true).filter(dc => !this._docs.includes(dc));
docsFromChildren = docsFromChildren.concat(docsNotAlreadyDisplayed);
});
let docs = this._docs.concat(docsFromChildren);
return docs;
}
sortDocs = (field: string, desc: boolean, persistent?: boolean) => {
const numbers: Doc[] = [];
const strings: Doc[] = [];
this._docs.forEach(doc => {
if (!isNaN(Number(Field.toString(doc[field] as FieldType)))) numbers.push(doc);
else strings.push(doc);
});
const sortedNums = numbers.sort((numOne, numTwo) => {
const numA = Number(Field.toString(numOne[field] as FieldType));
const numB = Number(Field.toString(numTwo[field] as FieldType));
return desc? numA - numB : numB - numA;
});
const collator = new Intl.Collator(undefined, {sensitivity: 'base'});
let sortedStrings;
if (!desc) {sortedStrings = strings.slice().sort((docA, docB) => collator.compare(Field.toString(docA[field] as FieldType), Field.toString(docB[field] as FieldType)));
} else sortedStrings = strings.slice().sort((docB, docA) => collator.compare(Field.toString(docA[field] as FieldType), Field.toString(docB[field] as FieldType)));
const sortedDocs = desc ? sortedNums.concat(sortedStrings) : sortedStrings.concat(sortedNums);
if (!persistent) this._docs = sortedDocs;
return sortedDocs;
}
@computed get docsWithDrag() {
let docs = this.docs.slice();
if (this.sortField){
const field = StrCast(this.layoutDoc.sortField);
const desc = BoolCast(this.layoutDoc.sortDesc); // is this an ascending or descending sort
docs = this.sortDocs(field, desc, true);
} else {
const draggedDocs = this.isContentActive() ? DragManager.docsBeingDragged.filter(doc => !(doc.type === 'fonticonbox')) : [];
docs = docs.filter(d => !draggedDocs.includes(d));
docs.splice(this.rowDropIndex, 0, ...draggedDocs);
}
return { docs };
}
rowHeightFunc = () => (BoolCast(this.layoutDoc._schema_singleLine) ? CollectionSchemaView._rowSingleLineHeight : CollectionSchemaView._rowHeight);
isContentActive = () => this._props.isSelected() || this._props.isContentActive();
screenToLocal = () => this.ScreenToLocalBoxXf().translate(-this.tableWidth, 0);
previewWidthFunc = () => this.previewWidth;
onPassiveWheel = (e: WheelEvent) => e.stopPropagation();
displayedDocsFunc = () => this.docsWithDrag.docs;
_oldWheel: any;
render() {
return (
<div className="collectionSchemaView" ref={(ele: HTMLDivElement | null) => this.createDashEventsTarget(ele)}
onDrop={this.onExternalDrop.bind(this)}
onPointerMove={e => this.onPointerMove(e)}
onPointerDown={() => {this.closeColumnMenu(); this.setColDrag(false)}}>
<div ref={this._menuTarget} style={{ background: 'red', top: 0, left: 0, position: 'absolute', zIndex: 10000 }} />
<div
className="schema-table"
style={{ width: `calc(100% - ${this.previewWidth}px)` }}
onWheel={e => this._props.isContentActive() && e.stopPropagation()}
ref={ele => {
// prevent wheel events from passively propagating up through containers and prevents containers from preventDefault which would block scrolling
this._oldWheel?.removeEventListener('wheel', this.onPassiveWheel);
(this._oldWheel = ele)?.addEventListener('wheel', this.onPassiveWheel, { passive: false });
}}>
<div className="schema-header-row" style={{ height: this.rowHeightFunc() }}>
<div className="row-menu" style={{ width: CollectionSchemaView._rowMenuWidth }}>
<IconButton
tooltip="Add a new key"
icon={ <FontAwesomeIcon icon="plus" size='lg'/>}
size={Size.XSMALL}
color={'black'}
onPointerDown={e =>
setupMoveUpEvents(
this,
e,
returnFalse,
emptyFunction,
undoable(clickEv => {
clickEv.stopPropagation();
this.addColumn()
}, 'add key to schema')
)
}
/>
</div>
{this.columnKeys.map((key, index) => (
<SchemaColumnHeader
// eslint-disable-next-line react/no-array-index-key
//cleanupField={this.cleanupComputedField}
ref={r => r && this._headerRefs.push(r)}
keysDropdown={(this.keysDropdown)}
schemaView={this}
columnWidth={() => CollectionSchemaView._minColWidth} //TODO: update
Document={this.Document}
key={index}
columnIndex={index}
columnKeys={this.columnKeys}
columnWidths={this.displayColumnWidths}
setSort={this.setColumnSort}
rowHeight={this.rowHeightFunc}
removeColumn={this.removeColumn}
resizeColumn={this.startResize}
openContextMenu={this.openContextMenu}
dragColumn={this.dragColumn}
setColRef={this.setColRef}
isContentActive={this._props.isContentActive}
/>
))}
</div>
{this._columnMenuIndex !== undefined && this._columnMenuIndex !== -1 && this.renderColumnMenu}
{this._filterColumnIndex !== undefined && this.renderFilterMenu}
{
// eslint-disable-next-line no-use-before-define
<CollectionSchemaViewDocs
schema={this}
childDocs={this.displayedDocsFunc}
rowHeight={this.rowHeightFunc}
setRef={(ref: HTMLDivElement | null) => {
this._tableContentRef = ref;
}}
/>
}
{this.layoutDoc.chromeHidden ? null : (
<div className="schema-add">
<EditableView
GetValue={returnEmptyString}
SetValue={undoable(value => (value ? this.addRow(Docs.Create.TextDocument(value, { title: value, _layout_autoHeight: true })) : false), 'add text doc')}
placeholder={"Type text to create note or ':' to create specific type"}
contents="+ New Node"
menuCallback={this.menuCallback}
height={CollectionSchemaView._newNodeInputHeight}
/>
</div>
)}
</div>
{this.previewWidth > 0 && <div className="schema-preview-divider" style={{ width: CollectionSchemaView._previewDividerWidth }} onPointerDown={this.onDividerDown} />}
{this.previewWidth > 0 && (
<div
style={{ width: `${this.previewWidth}px` }}
ref={ref => {
this._previewRef = ref;
}}>
{Array.from(this._selectedDocs).lastElement() && (
<DocumentView
Document={Array.from(this._selectedDocs).lastElement()}
fitContentsToBox={returnTrue}
dontCenter="y"
onClickScriptDisable="always"
focus={emptyFunction}
defaultDoubleClick={returnIgnore}
renderDepth={this._props.renderDepth + 1}
rootSelected={this.rootSelected}
PanelWidth={this.previewWidthFunc}
PanelHeight={this._props.PanelHeight}
isContentActive={returnTrue}
isDocumentActive={returnFalse}
ScreenToLocalTransform={this.screenToLocal}
childFilters={this.childDocFilters}
childFiltersByRanges={this.childDocRangeFilters}
searchFilterDocs={this.searchFilterDocs}
styleProvider={DefaultStyleProvider}
containerViewPath={returnEmptyDoclist}
moveDocument={this._props.moveDocument}
addDocument={this.addRow}
removeDocument={this._props.removeDocument}
whenChildContentsActiveChanged={returnFalse}
addDocTab={this._props.addDocTab}
pinToPres={this._props.pinToPres}
/>
)}
</div>
)}
</div>
);
}
}
interface CollectionSchemaViewDocProps {
schema: CollectionSchemaView;
index: number;
doc: Doc;
rowHeight: () => number;
}
@observer
class CollectionSchemaViewDoc extends ObservableReactComponent<CollectionSchemaViewDocProps> {
constructor(props: any) {
super(props);
makeObservable(this);
}
tableWidthFunc = () => this._props.schema.tableWidth;
screenToLocalXf = () => this._props.schema.ScreenToLocalBoxXf().translate(0, -this._props.rowHeight() - this._props.index * this._props.rowHeight());
noOpacityStyleProvider = (doc: Opt<Doc>, props: Opt<FieldViewProps>, property: string) => {
if (property === StyleProp.Opacity) return 1;
return DefaultStyleProvider(doc, props, property);
};
isRowContentActive = () => this._props.schema.isContentActive() || this._props.schema._props.isSelected() || this._props.schema._props.isAnyChildContentActive();
render() {
return (
<DocumentView
key={this._props.doc[Id]}
// eslint-disable-next-line react/jsx-props-no-spreading
{...this._props.schema._props}
containerViewPath={this._props.schema.childContainerViewPath}
LayoutTemplate={this._props.schema._props.childLayoutTemplate}
LayoutTemplateString={SchemaRowBox.LayoutString(this._props.schema._props.fieldKey, this._props.index)}
Document={this._props.doc}
renderDepth={this._props.schema._props.renderDepth + 1}
PanelWidth={this.tableWidthFunc}
PanelHeight={this._props.rowHeight}
styleProvider={this.noOpacityStyleProvider}
waitForDoubleClickToClick={returnNever}
defaultDoubleClick={returnIgnore}
dragAction={dropActionType.move}
onClickScriptDisable="always"
focus={this._props.schema.focusDocument}
childFilters={this._props.schema.childDocFilters}
childFiltersByRanges={this._props.schema.childDocRangeFilters}
searchFilterDocs={this._props.schema.searchFilterDocs}
rootSelected={this._props.schema.rootSelected}
ScreenToLocalTransform={this.screenToLocalXf}
dragWhenActive
isDocumentActive={this._props.schema._props.childDocumentsActive?.() ? this._props.schema._props.isDocumentActive : this._props.schema.isContentActive}
isContentActive={this.isRowContentActive}
whenChildContentsActiveChanged={this._props.schema._props.whenChildContentsActiveChanged}
hideDecorations
hideTitle
hideDocumentButtonBar
hideLinkAnchors
fitWidth={returnTrue}
/>
);
}
}
interface CollectionSchemaViewDocsProps {
schema: CollectionSchemaView;
setRef: (ref: HTMLDivElement | null) => void;
childDocs: () => Doc[];
rowHeight: () => number;
}
@observer
class CollectionSchemaViewDocs extends React.Component<CollectionSchemaViewDocsProps> {
render() {
return (
<div className="schema-table-content" ref={this.props.setRef} style={{ height: `calc(100% - ${CollectionSchemaView._newNodeInputHeight + this.props.rowHeight()}px)` }}>
{this.props.childDocs().map((doc: Doc, index: number) => (
<div key={doc[Id]} className="schema-row-wrapper" style={{ height: this.props.rowHeight() }}>
<CollectionSchemaViewDoc doc={doc} schema={this.props.schema} index={index} rowHeight={this.props.rowHeight} />
</div>
))}
</div>
);
}
}
|