-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
gridColumnsUtils.ts
495 lines (429 loc) · 16.1 KB
/
gridColumnsUtils.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
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
import * as React from 'react';
import {
GridColumnLookup,
GridColumnsState,
GridColumnsRawState,
GridColumnVisibilityModel,
GridColumnRawLookup,
GridColumnsInitialState,
} from './gridColumnsInterfaces';
import { GridColType, GridColumnTypesRecord } from '../../../models';
import { DEFAULT_GRID_COL_TYPE_KEY, getGridDefaultColumnTypes } from '../../../colDef';
import { GridStateCommunity } from '../../../models/gridStateCommunity';
import { GridApiCommunity } from '../../../models/api/gridApiCommunity';
import { GridColDef, GridStateColDef } from '../../../models/colDef/gridColDef';
import { gridColumnsSelector, gridColumnVisibilityModelSelector } from './gridColumnsSelector';
import { clamp } from '../../../utils/utils';
export const COLUMNS_DIMENSION_PROPERTIES = ['maxWidth', 'minWidth', 'width', 'flex'] as const;
export type GridColumnDimensionProperties = typeof COLUMNS_DIMENSION_PROPERTIES[number];
export const computeColumnTypes = (customColumnTypes: GridColumnTypesRecord = {}) => {
const mergedColumnTypes: GridColumnTypesRecord = { ...getGridDefaultColumnTypes() };
Object.entries(customColumnTypes).forEach(([colType, colTypeDef]) => {
if (mergedColumnTypes[colType]) {
mergedColumnTypes[colType] = {
...mergedColumnTypes[colType],
...colTypeDef,
};
} else {
mergedColumnTypes[colType] = {
...mergedColumnTypes[colTypeDef.extendType || DEFAULT_GRID_COL_TYPE_KEY],
...colTypeDef,
};
}
});
return mergedColumnTypes;
};
/**
* Computes width for flex columns.
* Based on CSS Flexbox specification:
* https://drafts.csswg.org/css-flexbox-1/#resolve-flexible-lengths
*/
export function computeFlexColumnsWidth({
initialFreeSpace,
totalFlexUnits,
flexColumns,
}: {
initialFreeSpace: number;
totalFlexUnits: number;
flexColumns: {
field: GridColDef['field'];
flex?: number;
minWidth?: number;
maxWidth?: number;
}[];
}) {
const flexColumnsLookup: {
all: Record<
GridColDef['field'],
{
flex: number;
computedWidth: number;
frozen: boolean;
}
>;
frozenFields: GridColDef['field'][];
freeze: (field: GridColDef['field']) => void;
} = {
all: {},
frozenFields: [],
freeze: (field: GridColDef['field']) => {
const value = flexColumnsLookup.all[field];
if (value && value.frozen !== true) {
flexColumnsLookup.all[field].frozen = true;
flexColumnsLookup.frozenFields.push(field);
}
},
};
// Step 5 of https://drafts.csswg.org/css-flexbox-1/#resolve-flexible-lengths
function loopOverFlexItems() {
// 5a: If all the flex items on the line are frozen, free space has been distributed.
if (flexColumnsLookup.frozenFields.length === flexColumns.length) {
return;
}
const violationsLookup: {
min: Record<GridColDef['field'], boolean>;
max: Record<GridColDef['field'], boolean>;
} = { min: {}, max: {} };
let remainingFreeSpace = initialFreeSpace;
let flexUnits = totalFlexUnits;
let totalViolation = 0;
// 5b: Calculate the remaining free space
flexColumnsLookup.frozenFields.forEach((field) => {
remainingFreeSpace -= flexColumnsLookup.all[field].computedWidth;
flexUnits -= flexColumnsLookup.all[field].flex!;
});
for (let i = 0; i < flexColumns.length; i += 1) {
const column = flexColumns[i];
if (
flexColumnsLookup.all[column.field] &&
flexColumnsLookup.all[column.field].frozen === true
) {
// eslint-disable-next-line no-continue
continue;
}
// 5c: Distribute remaining free space proportional to the flex factors
const widthPerFlexUnit = remainingFreeSpace / flexUnits;
let computedWidth = widthPerFlexUnit * column.flex!;
// 5d: Fix min/max violations
if (computedWidth < column.minWidth!) {
totalViolation += column.minWidth! - computedWidth;
computedWidth = column.minWidth!;
violationsLookup.min[column.field] = true;
} else if (computedWidth > column.maxWidth!) {
totalViolation += column.maxWidth! - computedWidth;
computedWidth = column.maxWidth!;
violationsLookup.max[column.field] = true;
}
flexColumnsLookup.all[column.field] = {
frozen: false,
computedWidth,
flex: column.flex!,
};
}
// 5e: Freeze over-flexed items
if (totalViolation < 0) {
// Freeze all the items with max violations
Object.keys(violationsLookup.max).forEach((field) => {
flexColumnsLookup.freeze(field);
});
} else if (totalViolation > 0) {
// Freeze all the items with min violations
Object.keys(violationsLookup.min).forEach((field) => {
flexColumnsLookup.freeze(field);
});
} else {
// Freeze all items
flexColumns.forEach(({ field }) => {
flexColumnsLookup.freeze(field);
});
}
// 5f: Return to the start of this loop
loopOverFlexItems();
}
loopOverFlexItems();
return flexColumnsLookup.all;
}
/**
* Compute the `computedWidth` (ie: the width the column should have during rendering) based on the `width` / `flex` / `minWidth` / `maxWidth` properties of `GridColDef`.
* The columns already have been merged with there `type` default values for `minWidth`, `maxWidth` and `width`, thus the `!` for those properties below.
* TODO: Unit test this function in depth and only keep basic cases for the whole grid testing.
* TODO: Improve the `GridColDef` typing to reflect the fact that `minWidth` / `maxWidth` and `width` can't be null after the merge with the `type` default values.
*/
export const hydrateColumnsWidth = (
rawState: GridColumnsRawState,
viewportInnerWidth: number,
): GridColumnsState => {
const columnsLookup: GridColumnLookup = {};
let totalFlexUnits = 0;
let widthAllocatedBeforeFlex = 0;
const flexColumns: GridStateColDef[] = [];
// For the non-flex columns, compute their width
// For the flex columns, compute there minimum width and how much width must be allocated during the flex allocation
rawState.all.forEach((columnField) => {
const newColumn = { ...rawState.lookup[columnField] } as GridStateColDef;
if (rawState.columnVisibilityModel[columnField] === false) {
newColumn.computedWidth = 0;
} else {
let computedWidth: number;
if (newColumn.flex && newColumn.flex > 0) {
totalFlexUnits += newColumn.flex;
computedWidth = 0;
flexColumns.push(newColumn);
} else {
computedWidth = clamp(newColumn.width!, newColumn.minWidth!, newColumn.maxWidth!);
}
widthAllocatedBeforeFlex += computedWidth;
newColumn.computedWidth = computedWidth;
}
columnsLookup[columnField] = newColumn;
});
const initialFreeSpace = Math.max(viewportInnerWidth - widthAllocatedBeforeFlex, 0);
// Allocate the remaining space to the flex columns
if (totalFlexUnits > 0 && viewportInnerWidth > 0) {
const computedColumnWidths = computeFlexColumnsWidth({
initialFreeSpace,
totalFlexUnits,
flexColumns,
});
Object.keys(computedColumnWidths).forEach((field) => {
columnsLookup[field].computedWidth = computedColumnWidths[field].computedWidth;
});
}
return {
...rawState,
lookup: columnsLookup,
};
};
let columnTypeWarnedOnce = false;
/**
* Apply the order and the dimensions of the initial state.
* The columns not registered in `orderedFields` will be placed after the imported columns.
*/
export const applyInitialState = (
columnsState: Omit<GridColumnsRawState, 'columnVisibilityModel'>,
initialState: GridColumnsInitialState | undefined,
) => {
if (!initialState) {
return columnsState;
}
const { orderedFields = [], dimensions = {} } = initialState;
const columnsWithUpdatedDimensions = Object.keys(dimensions);
if (columnsWithUpdatedDimensions.length === 0 && orderedFields.length === 0) {
return columnsState;
}
const orderedFieldsLookup: Record<string, true> = {};
const cleanOrderedFields: string[] = [];
for (let i = 0; i < orderedFields.length; i += 1) {
const field = orderedFields[i];
// Ignores the fields in the initialState that matches no field on the current column state
if (columnsState.lookup[field]) {
orderedFieldsLookup[field] = true;
cleanOrderedFields.push(field);
}
}
const newOrderedFields =
cleanOrderedFields.length === 0
? columnsState.all
: [...cleanOrderedFields, ...columnsState.all.filter((field) => !orderedFieldsLookup[field])];
const newColumnLookup: GridColumnRawLookup = { ...columnsState.lookup };
for (let i = 0; i < columnsWithUpdatedDimensions.length; i += 1) {
const field = columnsWithUpdatedDimensions[i];
newColumnLookup[field] = {
...newColumnLookup[field],
...dimensions[field],
hasBeenResized: true,
};
}
const newColumnsState: Omit<GridColumnsRawState, 'columnVisibilityModel'> = {
all: newOrderedFields,
lookup: newColumnLookup,
};
return newColumnsState;
};
/**
* @deprecated Should have been internal only, you can inline the logic.
*/
export const getGridColDef = (
columnTypes: GridColumnTypesRecord,
type: GridColType | undefined,
) => {
if (!type) {
return columnTypes[DEFAULT_GRID_COL_TYPE_KEY];
}
if (process.env.NODE_ENV !== 'production') {
if (!columnTypeWarnedOnce && !columnTypes[type]) {
console.warn(
[
`MUI: The column type "${type}" you are using is not supported.`,
`Column type "string" is being used instead.`,
].join('\n'),
);
columnTypeWarnedOnce = true;
}
}
if (!columnTypes[type]) {
return columnTypes[DEFAULT_GRID_COL_TYPE_KEY];
}
return columnTypes[type];
};
export const createColumnsState = ({
apiRef,
columnsToUpsert,
initialState,
columnTypes,
currentColumnVisibilityModel = gridColumnVisibilityModelSelector(apiRef),
shouldRegenColumnVisibilityModelFromColumns,
keepOnlyColumnsToUpsert = false,
}: {
columnsToUpsert: GridColDef[];
initialState: GridColumnsInitialState | undefined;
columnTypes: GridColumnTypesRecord;
currentColumnVisibilityModel?: GridColumnVisibilityModel;
shouldRegenColumnVisibilityModelFromColumns: boolean;
keepOnlyColumnsToUpsert: boolean;
apiRef: React.MutableRefObject<GridApiCommunity>;
}) => {
const isInsideStateInitializer = !apiRef.current.state.columns;
let columnsStateWithoutColumnVisibilityModel: Omit<
GridColumnsRawState,
'columnVisibilityModel' | 'lookup'
> & {
lookup: { [field: string]: Omit<GridStateColDef, 'computedWidth'> };
};
if (isInsideStateInitializer) {
columnsStateWithoutColumnVisibilityModel = {
all: [],
lookup: {},
};
} else {
const currentState = gridColumnsSelector(apiRef.current.state);
columnsStateWithoutColumnVisibilityModel = {
all: keepOnlyColumnsToUpsert ? [] : [...currentState.all],
lookup: { ...currentState.lookup }, // Will be cleaned later if keepOnlyColumnsToUpsert=true
};
}
let columnsToKeep: Record<string, boolean> = {};
if (keepOnlyColumnsToUpsert && !isInsideStateInitializer) {
columnsToKeep = Object.keys(columnsStateWithoutColumnVisibilityModel.lookup).reduce(
(acc, key) => ({ ...acc, [key]: false }),
{},
);
}
const columnsToUpsertLookup: Record<string, true> = {};
columnsToUpsert.forEach((newColumn) => {
const { field } = newColumn;
columnsToUpsertLookup[field] = true;
columnsToKeep[field] = true;
let existingState = columnsStateWithoutColumnVisibilityModel.lookup[field];
if (existingState == null) {
// New Column
existingState = {
...getGridColDef(columnTypes, newColumn.type), // TODO v6: Inline `getGridColDef`
field,
hasBeenResized: false,
};
columnsStateWithoutColumnVisibilityModel.all.push(field);
} else if (keepOnlyColumnsToUpsert) {
columnsStateWithoutColumnVisibilityModel.all.push(field);
}
let hasValidDimension = false;
if (!existingState.hasBeenResized) {
hasValidDimension = COLUMNS_DIMENSION_PROPERTIES.some((key) => newColumn[key] !== undefined);
}
columnsStateWithoutColumnVisibilityModel.lookup[field] = {
...existingState,
hide: newColumn.hide == null ? false : newColumn.hide,
...newColumn,
hasBeenResized: existingState.hasBeenResized || hasValidDimension,
};
});
if (keepOnlyColumnsToUpsert && !isInsideStateInitializer) {
Object.keys(columnsStateWithoutColumnVisibilityModel.lookup).forEach((field) => {
if (!columnsToKeep![field]) {
delete columnsStateWithoutColumnVisibilityModel.lookup[field];
}
});
}
const columnsLookupBeforePreProcessing = { ...columnsStateWithoutColumnVisibilityModel.lookup };
const columnsStateWithPreProcessing: Omit<GridColumnsRawState, 'columnVisibilityModel'> =
apiRef.current.unstable_applyPipeProcessors(
'hydrateColumns',
columnsStateWithoutColumnVisibilityModel,
);
// TODO v6: remove the sync between the columns `hide` option and the model.
let columnVisibilityModel: GridColumnVisibilityModel = {};
if (shouldRegenColumnVisibilityModelFromColumns) {
let hasModelChanged = false;
const newColumnVisibilityModel = { ...currentColumnVisibilityModel };
if (isInsideStateInitializer) {
columnsStateWithPreProcessing.all.forEach((field) => {
newColumnVisibilityModel[field] =
!columnsStateWithoutColumnVisibilityModel.lookup[field].hide;
});
} else if (keepOnlyColumnsToUpsert) {
// At this point, `keepOnlyColumnsToUpsert` has a new meaning: keep the columns
// passed via `columnToUpsert` + columns added by the pre-processors. We do the following
// cleanup because a given column may have been removed from the `columns` prop but it still
// exists in the state.
Object.keys(newColumnVisibilityModel).forEach((field) => {
if (!columnsStateWithPreProcessing.lookup[field]) {
delete newColumnVisibilityModel[field];
hasModelChanged = true;
}
});
}
columnsStateWithPreProcessing.all.forEach((field) => {
// If neither the `columnsToUpsert` nor the pre-processors updated the column,
// Then we don't want to update the visibility status of the column in the model.
if (
!columnsToUpsertLookup[field] &&
columnsLookupBeforePreProcessing[field] === columnsStateWithPreProcessing.lookup[field]
) {
return;
}
// We always assume that a column not in the model is visible by default. However, there's an
// edge case where the column is not in the model but it also doesn't exist in the `columns`
// prop, meaning that the column is being added. In that case, we assume that the column was
// not visible before for it be added to the model.
let isVisibleBefore = currentColumnVisibilityModel[field];
if (isVisibleBefore === undefined) {
if (isInsideStateInitializer) {
isVisibleBefore = true;
} else {
const currentState = gridColumnsSelector(apiRef.current.state);
isVisibleBefore = !!currentState.lookup[field];
}
}
const isVisibleAfter = !columnsStateWithPreProcessing.lookup[field].hide;
if (isVisibleAfter !== isVisibleBefore) {
hasModelChanged = true;
newColumnVisibilityModel[field] = isVisibleAfter;
}
});
if (hasModelChanged || isInsideStateInitializer) {
columnVisibilityModel = newColumnVisibilityModel;
} else {
columnVisibilityModel = currentColumnVisibilityModel;
}
} else {
columnVisibilityModel = currentColumnVisibilityModel;
}
const columnsStateWithPortableColumns = applyInitialState(
columnsStateWithPreProcessing,
initialState,
);
const columnsState: GridColumnsRawState = {
...columnsStateWithPortableColumns,
columnVisibilityModel,
};
return hydrateColumnsWidth(
columnsState,
apiRef.current.getRootDimensions?.()?.viewportInnerSize.width ?? 0,
);
};
export const mergeColumnsState =
(columnsState: GridColumnsState) =>
(state: GridStateCommunity): GridStateCommunity => ({
...state,
columns: columnsState,
});