@@ -130,7 +130,7 @@ const useStyles = makeStyles((theme: MuiTheme) =>
130
130
toolbarCheckbox : {
131
131
padding : "4px" ,
132
132
} ,
133
- } )
133
+ } ) ,
134
134
) ;
135
135
136
136
export type RelationTupleHighlight = {
@@ -241,17 +241,17 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
241
241
const updated = updateRowInData (
242
242
inFlightData . current ,
243
243
dataRowIndex ,
244
- newColumnData
244
+ newColumnData ,
245
245
) ;
246
246
inFlightData . current = updated ;
247
247
setData ( updated ) ;
248
248
} ;
249
249
250
250
const [ gridSelection , setGridSelection ] = useState < GridSelection | undefined > (
251
- undefined
251
+ undefined ,
252
252
) ;
253
253
const handleGridSelectionChanged = (
254
- newSelection : GridSelection | undefined
254
+ newSelection : GridSelection | undefined ,
255
255
) => {
256
256
// Prevent column-only selection.
257
257
if ( newSelection ?. columns && newSelection . columns . length > 0 ) {
@@ -263,7 +263,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
263
263
264
264
const handleCellEdited = (
265
265
cellPosition : readonly [ number , number ] ,
266
- newValue : EditableGridCell
266
+ newValue : EditableGridCell ,
267
267
) => {
268
268
const [ col , row ] = cellPosition ;
269
269
if ( row >= inFlightData . current . length || col >= COLUMNS . length ) {
@@ -282,7 +282,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
282
282
const adjustedData = Array . from ( inFlightData . current ) ;
283
283
adjustedData [ row ] = datumToAnnotated (
284
284
relationshipToDatum ( parsed ) ,
285
- adjustedData [ row ] . dataRowIndex
285
+ adjustedData [ row ] . dataRowIndex ,
286
286
) ;
287
287
setData ( adjustedData ) ;
288
288
return ;
@@ -328,7 +328,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
328
328
{ COLUMNS [ col ] . dataDescription }
329
329
</ Typography >
330
330
) }
331
- </ div >
331
+ </ div > ,
332
332
) ;
333
333
}
334
334
@@ -595,7 +595,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
595
595
} ;
596
596
}
597
597
} ,
598
- [ data ]
598
+ [ data ] ,
599
599
) ;
600
600
601
601
const getCellsForSelection = useCallback (
@@ -622,7 +622,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
622
622
623
623
return result ;
624
624
} ,
625
- [ data ]
625
+ [ data ] ,
626
626
) ;
627
627
628
628
const classes = useStyles ( ) ;
@@ -641,7 +641,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
641
641
642
642
const handlePaste = (
643
643
target : readonly [ number , number ] ,
644
- values : readonly ( readonly string [ ] ) [ ]
644
+ values : readonly ( readonly string [ ] ) [ ] ,
645
645
) => {
646
646
if ( props . isReadOnly ) {
647
647
return false ;
@@ -692,7 +692,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
692
692
adjustedData ,
693
693
rowToUpdate ,
694
694
columnData ,
695
- startingCol
695
+ startingCol ,
696
696
) ;
697
697
rowOffset ++ ;
698
698
} ) ;
@@ -708,7 +708,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
708
708
const rowIndex = data . findIndex (
709
709
( datum : RelationshipDatumAndMetadata ) => {
710
710
return toRelationshipString ( datum ) === highlight . tupleString ;
711
- }
711
+ } ,
712
712
) ;
713
713
if ( rowIndex === undefined ) {
714
714
return undefined ;
@@ -753,7 +753,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
753
753
const copySelectedRows = ( ) => {
754
754
if ( gridSelection ?. rows ) {
755
755
const selected = data . filter ( ( annotated : RelationshipDatumAndMetadata ) =>
756
- gridSelection ?. rows . hasIndex ( annotated . dataRowIndex )
756
+ gridSelection ?. rows . hasIndex ( annotated . dataRowIndex ) ,
757
757
) ;
758
758
if ( selected ) {
759
759
const data = selected
@@ -780,7 +780,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
780
780
781
781
if ( "comment" in annotated . datum ) {
782
782
const parsed = parseRelationshipWithError (
783
- annotated . datum . comment . substring ( CommentCellPrefix . length ) . trim ( )
783
+ annotated . datum . comment . substring ( CommentCellPrefix . length ) . trim ( ) ,
784
784
) ;
785
785
if ( "errorMessage" in parsed ) {
786
786
return annotated ;
@@ -863,7 +863,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
863
863
} ,
864
864
} ) ;
865
865
} ,
866
- [ highlightsByRowIndex , setTooltip ]
866
+ [ highlightsByRowIndex , setTooltip ] ,
867
867
) ;
868
868
869
869
const width = props . dimensions ?. width ?? 1200 ;
@@ -894,7 +894,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
894
894
895
895
const [ cookies , setCookies ] = useCookies ( [ "relgrid-similar-highlighting" ] ) ;
896
896
const [ similarHighlighting , setSimilarHighlighting ] = useState (
897
- cookies [ "relgrid-similar-highlighting" ] !== "0"
897
+ cookies [ "relgrid-similar-highlighting" ] !== "0" ,
898
898
) ;
899
899
const handleToggleSimilarHighlighting = ( ) => {
900
900
const updated = ! similarHighlighting ;
@@ -909,7 +909,7 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
909
909
const columnsWithWidths = useMemo ( ( ) => {
910
910
const defaultColWidth = Math . max (
911
911
width / ( COLUMNS . length + 0.5 ) ,
912
- MIN_COLUMN_WIDTH
912
+ MIN_COLUMN_WIDTH ,
913
913
) ; // +0.5 to give some padding
914
914
return COLUMNS . map ( ( col : Column ) => {
915
915
return {
@@ -943,12 +943,12 @@ export function RelationshipEditor(props: RelationshipEditorProps) {
943
943
props . resolver ,
944
944
similarHighlighting ,
945
945
columnsWithWidths ,
946
- props . isReadOnly
946
+ props . isReadOnly ,
947
947
) ;
948
948
949
949
// TODO: get JSX out of state.
950
950
const [ snackbarMessage , setSnackbarMessage ] = useState < ReactNode | undefined > (
951
- undefined
951
+ undefined ,
952
952
) ;
953
953
954
954
return (
0 commit comments