-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcustomcells.ts
286 lines (246 loc) · 7.46 KB
/
customcells.ts
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
import {
DataEditorProps,
GridCell,
GridCellKind,
GridSelection,
ProvideEditorCallback,
} from "@glideapps/glide-data-grid";
import { useCallback, useMemo, useRef } from "react";
import { Resolver } from "../../parsers/dsl/resolution";
import { RelationshipsService } from "../../services/relationshipsservice";
import { COLUMNS, Column, DataKind } from "./columns";
import { CommentCell, CommentCellRenderer } from "./commentcell";
import { AnnotatedData } from "./data";
import {
CaveatContextCell,
CaveatContextCellRenderer,
CaveatNameCell,
CaveatNameCellRenderer,
ExpirationCell,
ExpirationCellRenderer,
ObjectIdCell,
ObjectIdCellRenderer,
RelationCell,
RelationCellRenderer,
TypeCell,
TypeCellRenderer,
} from "./fieldcell";
/**
* RelEditorCustomCell defines the custom cell types supported by the editor.
*/
export type RelEditorCustomCell =
| CommentCell
| TypeCell
| ObjectIdCell
| RelationCell
| CaveatNameCell
| CaveatContextCell
| ExpirationCell;
// Copied from: https://github.com/glideapps/glide-data-grid/blob/6b0a04f9d6550378890580b4db1e1168e4268c54/packages/cells/src/index.ts#L12
export type DrawCallback = NonNullable<DataEditorProps["drawCell"]>;
/**
* useCustomCells is a hook which provides drawCell and provideEditor callbacks for
* handling all custom cell types in the relationship editor.
*/
export function useCustomCells(
relationshipsService: RelationshipsService,
annotatedData: AnnotatedData,
gridSelection: GridSelection | undefined,
resolver: Resolver | undefined,
similarHighlighting: boolean,
columnsWithWidths: Column[],
isReadOnly: boolean,
): {
drawCell: DrawCallback;
provideEditor: ProvideEditorCallback<GridCell>;
} {
const selectedType = useMemo(() => {
if (!gridSelection?.current?.cell) {
return undefined;
}
const [col, row] = gridSelection.current.cell;
if (row >= annotatedData.length) {
return undefined;
}
if (col >= COLUMNS.length) {
return undefined;
}
const dataKind = COLUMNS[col].dataKind;
if (
dataKind !== DataKind.RESOURCE_TYPE &&
dataKind !== DataKind.SUBJECT_TYPE
) {
return undefined;
}
return { type: annotatedData[row].columnData[col] };
}, [gridSelection, annotatedData]);
const selectedObject = useMemo(() => {
if (!gridSelection?.current?.cell) {
return undefined;
}
const [col, row] = gridSelection.current.cell;
if (row >= annotatedData.length) {
return undefined;
}
if (col >= COLUMNS.length) {
return undefined;
}
const dataKind = COLUMNS[col].dataKind;
if (dataKind !== DataKind.RESOURCE_ID && dataKind !== DataKind.SUBJECT_ID) {
return undefined;
}
return {
type: annotatedData[row].columnData[col - 1],
objectid: annotatedData[row].columnData[col],
};
}, [gridSelection, annotatedData]);
const selectedRelation = useMemo(() => {
if (!gridSelection?.current?.cell) {
return undefined;
}
const [col, row] = gridSelection.current.cell;
if (row >= annotatedData.length) {
return undefined;
}
if (col >= COLUMNS.length) {
return undefined;
}
const dataKind = COLUMNS[col].dataKind;
if (dataKind !== DataKind.RELATION) {
return undefined;
}
return {
type: annotatedData[row].columnData[col - 2],
objectid: annotatedData[row].columnData[col - 1],
relation: annotatedData[row].columnData[col],
};
}, [gridSelection, annotatedData]);
const selectedCaveatName = useMemo(() => {
if (!gridSelection?.current?.cell) {
return undefined;
}
const [col, row] = gridSelection.current.cell;
if (row >= annotatedData.length) {
return undefined;
}
if (col >= COLUMNS.length) {
return undefined;
}
const dataKind = COLUMNS[col].dataKind;
if (dataKind !== DataKind.CAVEAT_NAME) {
return undefined;
}
return {
type: annotatedData[row].columnData[col - 6],
objectid: annotatedData[row].columnData[col - 5],
relation: annotatedData[row].columnData[col - 4],
caveatname: annotatedData[row].columnData[col],
};
}, [gridSelection, annotatedData]);
const selectedCaveatContext = useMemo(() => {
if (!gridSelection?.current?.cell) {
return undefined;
}
const [col, row] = gridSelection.current.cell;
if (row >= annotatedData.length) {
return undefined;
}
if (col >= COLUMNS.length) {
return undefined;
}
const dataKind = COLUMNS[col].dataKind;
if (dataKind !== DataKind.CAVEAT_CONTEXT) {
return undefined;
}
return { caveatcontext: annotatedData[row].columnData[col] };
}, [gridSelection, annotatedData]);
const selectedExpiration = useMemo(() => {
if (!gridSelection?.current?.cell) {
return undefined;
}
const [col, row] = gridSelection.current.cell;
if (row >= annotatedData.length) {
return undefined;
}
if (col >= COLUMNS.length) {
return undefined;
}
const dataKind = COLUMNS[col].dataKind;
if (dataKind !== DataKind.EXPIRATION) {
return undefined;
}
return { expiration: annotatedData[row].columnData[col] };
}, [gridSelection, annotatedData]);
const props = useRef({
relationshipsService: relationshipsService,
annotatedData: annotatedData,
gridSelection: gridSelection,
resolver: resolver,
selected: {
selectedType: selectedType,
selectedObject: selectedObject,
selectedRelation: selectedRelation,
selectedCaveatName: selectedCaveatName,
selectedCaveatContext: selectedCaveatContext,
selectedExpiration: selectedExpiration,
},
similarHighlighting: similarHighlighting,
columnsWithWidths: columnsWithWidths,
});
// NOTE: we always set the current value on the props to ensure that the renderers
// have the most up-to-date version of this information.
props.current = {
relationshipsService: relationshipsService,
annotatedData: annotatedData,
gridSelection: gridSelection,
resolver: resolver,
selected: {
selectedType: selectedType,
selectedObject: selectedObject,
selectedRelation: selectedRelation,
selectedCaveatName: selectedCaveatName,
selectedCaveatContext: selectedCaveatContext,
selectedExpiration: selectedExpiration,
},
similarHighlighting: similarHighlighting,
columnsWithWidths: columnsWithWidths,
};
// renderers defines the custom cell types supported by the RelationshipEditor.
const renderers = useMemo(() => {
return [
CommentCellRenderer(props),
TypeCellRenderer(props),
ObjectIdCellRenderer(props),
RelationCellRenderer(props),
CaveatNameCellRenderer(props),
CaveatContextCellRenderer(props),
ExpirationCellRenderer(props),
];
}, []);
const drawCell = useCallback<DrawCallback>(
(args) => {
const { cell } = args;
if (cell.kind !== GridCellKind.Custom) return false;
for (const r of renderers) {
if (r.isMatch(cell)) {
return r.draw(args, cell);
}
}
return false;
},
[renderers],
);
const provideEditor = useCallback<ProvideEditorCallback<GridCell>>(
(cell) => {
if (cell.kind !== GridCellKind.Custom || isReadOnly) return undefined;
for (const r of renderers) {
if (r.isMatch(cell)) {
return r.provideEditor();
}
}
return undefined;
},
[renderers, isReadOnly],
);
return { drawCell, provideEditor };
}