Skip to content

Commit 5dde20d

Browse files
committed
Add support in DSL editor themes for expiration and reformat
1 parent 3209347 commit 5dde20d

File tree

6 files changed

+55
-49
lines changed

6 files changed

+55
-49
lines changed

src/spicedb-common/components/relationshipeditor/RelationshipEditor.tsx

+19-19
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ const useStyles = makeStyles((theme: MuiTheme) =>
130130
toolbarCheckbox: {
131131
padding: "4px",
132132
},
133-
})
133+
}),
134134
);
135135

136136
export type RelationTupleHighlight = {
@@ -241,17 +241,17 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
241241
const updated = updateRowInData(
242242
inFlightData.current,
243243
dataRowIndex,
244-
newColumnData
244+
newColumnData,
245245
);
246246
inFlightData.current = updated;
247247
setData(updated);
248248
};
249249

250250
const [gridSelection, setGridSelection] = useState<GridSelection | undefined>(
251-
undefined
251+
undefined,
252252
);
253253
const handleGridSelectionChanged = (
254-
newSelection: GridSelection | undefined
254+
newSelection: GridSelection | undefined,
255255
) => {
256256
// Prevent column-only selection.
257257
if (newSelection?.columns && newSelection.columns.length > 0) {
@@ -263,7 +263,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
263263

264264
const handleCellEdited = (
265265
cellPosition: readonly [number, number],
266-
newValue: EditableGridCell
266+
newValue: EditableGridCell,
267267
) => {
268268
const [col, row] = cellPosition;
269269
if (row >= inFlightData.current.length || col >= COLUMNS.length) {
@@ -282,7 +282,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
282282
const adjustedData = Array.from(inFlightData.current);
283283
adjustedData[row] = datumToAnnotated(
284284
relationshipToDatum(parsed),
285-
adjustedData[row].dataRowIndex
285+
adjustedData[row].dataRowIndex,
286286
);
287287
setData(adjustedData);
288288
return;
@@ -328,7 +328,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
328328
{COLUMNS[col].dataDescription}
329329
</Typography>
330330
)}
331-
</div>
331+
</div>,
332332
);
333333
}
334334

@@ -595,7 +595,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
595595
};
596596
}
597597
},
598-
[data]
598+
[data],
599599
);
600600

601601
const getCellsForSelection = useCallback(
@@ -622,7 +622,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
622622

623623
return result;
624624
},
625-
[data]
625+
[data],
626626
);
627627

628628
const classes = useStyles();
@@ -641,7 +641,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
641641

642642
const handlePaste = (
643643
target: readonly [number, number],
644-
values: readonly (readonly string[])[]
644+
values: readonly (readonly string[])[],
645645
) => {
646646
if (props.isReadOnly) {
647647
return false;
@@ -692,7 +692,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
692692
adjustedData,
693693
rowToUpdate,
694694
columnData,
695-
startingCol
695+
startingCol,
696696
);
697697
rowOffset++;
698698
});
@@ -708,7 +708,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
708708
const rowIndex = data.findIndex(
709709
(datum: RelationshipDatumAndMetadata) => {
710710
return toRelationshipString(datum) === highlight.tupleString;
711-
}
711+
},
712712
);
713713
if (rowIndex === undefined) {
714714
return undefined;
@@ -753,7 +753,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
753753
const copySelectedRows = () => {
754754
if (gridSelection?.rows) {
755755
const selected = data.filter((annotated: RelationshipDatumAndMetadata) =>
756-
gridSelection?.rows.hasIndex(annotated.dataRowIndex)
756+
gridSelection?.rows.hasIndex(annotated.dataRowIndex),
757757
);
758758
if (selected) {
759759
const data = selected
@@ -780,7 +780,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
780780

781781
if ("comment" in annotated.datum) {
782782
const parsed = parseRelationshipWithError(
783-
annotated.datum.comment.substring(CommentCellPrefix.length).trim()
783+
annotated.datum.comment.substring(CommentCellPrefix.length).trim(),
784784
);
785785
if ("errorMessage" in parsed) {
786786
return annotated;
@@ -863,7 +863,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
863863
},
864864
});
865865
},
866-
[highlightsByRowIndex, setTooltip]
866+
[highlightsByRowIndex, setTooltip],
867867
);
868868

869869
const width = props.dimensions?.width ?? 1200;
@@ -894,7 +894,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
894894

895895
const [cookies, setCookies] = useCookies(["relgrid-similar-highlighting"]);
896896
const [similarHighlighting, setSimilarHighlighting] = useState(
897-
cookies["relgrid-similar-highlighting"] !== "0"
897+
cookies["relgrid-similar-highlighting"] !== "0",
898898
);
899899
const handleToggleSimilarHighlighting = () => {
900900
const updated = !similarHighlighting;
@@ -909,7 +909,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
909909
const columnsWithWidths = useMemo(() => {
910910
const defaultColWidth = Math.max(
911911
width / (COLUMNS.length + 0.5),
912-
MIN_COLUMN_WIDTH
912+
MIN_COLUMN_WIDTH,
913913
); // +0.5 to give some padding
914914
return COLUMNS.map((col: Column) => {
915915
return {
@@ -943,12 +943,12 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
943943
props.resolver,
944944
similarHighlighting,
945945
columnsWithWidths,
946-
props.isReadOnly
946+
props.isReadOnly,
947947
);
948948

949949
// TODO: get JSX out of state.
950950
const [snackbarMessage, setSnackbarMessage] = useState<ReactNode | undefined>(
951-
undefined
951+
undefined,
952952
);
953953

954954
return (

src/spicedb-common/components/relationshipeditor/columns.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export type DataValidator = RegExp | ((input: string) => boolean);
2727

2828
export function validate(
2929
validator: DataValidator,
30-
dataValue: string | undefined
30+
dataValue: string | undefined,
3131
): boolean {
3232
const isValid =
3333
typeof validator === "function"

src/spicedb-common/components/relationshipeditor/customcells.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export function useCustomCells(
5252
resolver: Resolver | undefined,
5353
similarHighlighting: boolean,
5454
columnsWithWidths: Column[],
55-
isReadOnly: boolean
55+
isReadOnly: boolean,
5656
): {
5757
drawCell: DrawCallback;
5858
provideEditor: ProvideEditorCallback<GridCell>;
@@ -264,7 +264,7 @@ export function useCustomCells(
264264
}
265265
return false;
266266
},
267-
[renderers]
267+
[renderers],
268268
);
269269

270270
const provideEditor = useCallback<ProvideEditorCallback<GridCell>>(
@@ -279,7 +279,7 @@ export function useCustomCells(
279279

280280
return undefined;
281281
},
282-
[renderers, isReadOnly]
282+
[renderers, isReadOnly],
283283
);
284284

285285
return { drawCell, provideEditor };

src/spicedb-common/components/relationshipeditor/data.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export function toExternalData(data: AnnotatedData): RelationshipDatum[] {
7474
* fromExternalData converts a simple RelationshipDatum array into the annotated data.
7575
*/
7676
export function fromExternalData(
77-
externalData: RelationshipDatum[] | undefined
77+
externalData: RelationshipDatum[] | undefined,
7878
): AnnotatedData {
7979
return (externalData ?? []).map(datumToAnnotated);
8080
}
@@ -83,7 +83,7 @@ export function fromExternalData(
8383
* emptyAnnotatedDatum returns an empty annotated datum for the grid, at the given index.
8484
*/
8585
export function emptyAnnotatedDatum(
86-
index: number
86+
index: number,
8787
): RelationshipDatumAndMetadata {
8888
return datumToAnnotated(
8989
{
@@ -97,7 +97,7 @@ export function emptyAnnotatedDatum(
9797
caveatContext: "",
9898
expiration: "",
9999
},
100-
index
100+
index,
101101
);
102102
}
103103

@@ -106,7 +106,7 @@ export function emptyAnnotatedDatum(
106106
* datum is a comment or not a full relationship, returns undefined.
107107
*/
108108
export function toRelationshipString(
109-
annotated: RelationshipDatumAndMetadata
109+
annotated: RelationshipDatumAndMetadata,
110110
): string | undefined {
111111
if ("comment" in annotated.datum) {
112112
return undefined;
@@ -119,7 +119,7 @@ export function toRelationshipString(
119119
* toFullRelationshipString returns the full relationship found, or undefined if none.
120120
*/
121121
export function toFullRelationshipString(
122-
annotated: PartialRelationship
122+
annotated: PartialRelationship,
123123
): string | undefined {
124124
if (
125125
!annotated.resourceType ||
@@ -137,7 +137,7 @@ export function toFullRelationshipString(
137137
* toPartialRelationshipString returns a relationship string with the given relationship's data.
138138
*/
139139
export function toPartialRelationshipString(
140-
annotated: PartialRelationship
140+
annotated: PartialRelationship,
141141
): string | undefined {
142142
const caveatContext = annotated.caveatContext
143143
? `:${annotated.caveatContext}`
@@ -160,7 +160,7 @@ export function toPartialRelationshipString(
160160
*/
161161
export function datumToAnnotated(
162162
datum: RelationshipDatum,
163-
index: number
163+
index: number,
164164
): RelationshipDatumAndMetadata {
165165
return {
166166
datum: datum,
@@ -245,7 +245,7 @@ function fromColumnData(columnData: ColumnData): PartialRelationship | Comment {
245245

246246
// relationshipToColumnData converts the given relationship into column data.
247247
export function relationshipToColumnData(
248-
rel: RelationshipWithComments
248+
rel: RelationshipWithComments,
249249
): ColumnData | undefined {
250250
const relationship = rel.relationship;
251251
if (relationship === undefined) {
@@ -294,7 +294,7 @@ export function updateRowInData(
294294
inFlightGridData: AnnotatedData,
295295
dataRowIndex: number,
296296
newColumnData: ColumnData,
297-
startingColIndex?: number
297+
startingColIndex?: number,
298298
): AnnotatedData {
299299
const adjustedData = Array.from(inFlightGridData);
300300
if (dataRowIndex === adjustedData.length) {

0 commit comments

Comments
 (0)