Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DataGrid] Make rows an optional prop #12478

Merged
merged 7 commits into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/pages/x/api/data-grid/data-grid-premium.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
"type": { "name": "arrayOf", "description": "Array<object>" },
"required": true
},
"rows": {
"type": { "name": "arrayOf", "description": "Array<object>" },
"required": true
},
"aggregationFunctions": {
"type": { "name": "object" },
"default": "GRID_AGGREGATION_FUNCTIONS"
Expand Down Expand Up @@ -557,6 +553,10 @@
"rowModesModel": { "type": { "name": "object" } },
"rowPositionsDebounceMs": { "type": { "name": "number" }, "default": "166" },
"rowReordering": { "type": { "name": "bool" }, "default": "false" },
"rows": {
"type": { "name": "arrayOf", "description": "Array<object>" },
"default": "[]"
},
"rowSelection": { "type": { "name": "bool" }, "default": "true" },
"rowSelectionModel": {
"type": {
Expand Down
8 changes: 4 additions & 4 deletions docs/pages/x/api/data-grid/data-grid-pro.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
"type": { "name": "arrayOf", "description": "Array<object>" },
"required": true
},
"rows": {
"type": { "name": "arrayOf", "description": "Array<object>" },
"required": true
},
"apiRef": { "type": { "name": "shape", "description": "{ current: object }" } },
"aria-label": { "type": { "name": "string" } },
"aria-labelledby": { "type": { "name": "string" } },
Expand Down Expand Up @@ -495,6 +491,10 @@
"rowModesModel": { "type": { "name": "object" } },
"rowPositionsDebounceMs": { "type": { "name": "number" }, "default": "166" },
"rowReordering": { "type": { "name": "bool" }, "default": "false" },
"rows": {
"type": { "name": "arrayOf", "description": "Array<object>" },
"default": "[]"
},
"rowSelection": { "type": { "name": "bool" }, "default": "true" },
"rowSelectionModel": {
"type": {
Expand Down
8 changes: 4 additions & 4 deletions docs/pages/x/api/data-grid/data-grid.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
"type": { "name": "arrayOf", "description": "Array<object>" },
"required": true
},
"rows": {
"type": { "name": "arrayOf", "description": "Array<object>" },
"required": true
},
"apiRef": { "type": { "name": "shape", "description": "{ current: object }" } },
"aria-label": { "type": { "name": "string" } },
"aria-labelledby": { "type": { "name": "string" } },
Expand Down Expand Up @@ -411,6 +407,10 @@
"rowHeight": { "type": { "name": "number" }, "default": "52" },
"rowModesModel": { "type": { "name": "object" } },
"rowPositionsDebounceMs": { "type": { "name": "number" }, "default": "166" },
"rows": {
"type": { "name": "arrayOf", "description": "Array<object>" },
"default": "[]"
},
"rowSelection": { "type": { "name": "bool" }, "default": "true" },
"rowSelectionModel": {
"type": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -926,8 +926,9 @@ DataGridPremiumRaw.propTypes = {
rowReordering: PropTypes.bool,
/**
* Set of rows of type [[GridRowsProp]].
* @default []
*/
rows: PropTypes.arrayOf(PropTypes.object).isRequired,
rows: PropTypes.arrayOf(PropTypes.object),
/**
* If `false`, the row selection mode is disabled.
* @default true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export interface DataGridPremiumPropsWithComplexDefaultValueBeforeProcessing
*/
export interface DataGridPremiumProps<R extends GridValidRowModel = any>
extends Omit<
Partial<DataGridPremiumPropsWithDefaultValue> &
Partial<DataGridPremiumPropsWithDefaultValue<R>> &
DataGridPremiumPropsWithComplexDefaultValueBeforeProcessing &
DataGridPremiumPropsWithoutDefaultValue<R>,
DataGridPremiumForcedPropsKey
Expand All @@ -64,7 +64,8 @@ export type DataGridPremiumForcedPropsKey = 'signature';
* None of the entry of this interface should be optional, they all have default values and `DataGridProps` already applies a `Partial<DataGridSimpleOptions>` for the public interface.
* The controlled model do not have a default value at the prop processing level, so they must be defined in `DataGridOtherProps`.
*/
export interface DataGridPremiumPropsWithDefaultValue extends DataGridProPropsWithDefaultValue {
export interface DataGridPremiumPropsWithDefaultValue<R extends GridValidRowModel = any>
extends DataGridProPropsWithDefaultValue<R> {
/**
* If `true`, the cell selection mode is enabled.
* @default false
Expand Down
3 changes: 2 additions & 1 deletion packages/x-data-grid-pro/src/DataGridPro/DataGridPro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -818,8 +818,9 @@ DataGridProRaw.propTypes = {
rowReordering: PropTypes.bool,
/**
* Set of rows of type [[GridRowsProp]].
* @default []
*/
rows: PropTypes.arrayOf(PropTypes.object).isRequired,
rows: PropTypes.arrayOf(PropTypes.object),
/**
* If `false`, the row selection mode is disabled.
* @default true
Expand Down
7 changes: 4 additions & 3 deletions packages/x-data-grid-pro/src/models/dataGridProProps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ interface DataGridProPropsWithComplexDefaultValueBeforeProcessing
*/
export interface DataGridProProps<R extends GridValidRowModel = any>
extends Omit<
Partial<DataGridProPropsWithDefaultValue> &
Partial<DataGridProPropsWithDefaultValue<R>> &
DataGridProPropsWithComplexDefaultValueBeforeProcessing &
DataGridProPropsWithoutDefaultValue<R>,
DataGridProForcedPropsKey
Expand All @@ -56,7 +56,7 @@ interface DataGridProPropsWithComplexDefaultValueAfterProcessing
* The props of the `DataGridPro` component after the pre-processing phase.
*/
export interface DataGridProProcessedProps<R extends GridValidRowModel = any>
extends DataGridProPropsWithDefaultValue,
extends DataGridProPropsWithDefaultValue<R>,
DataGridProPropsWithComplexDefaultValueAfterProcessing,
Omit<DataGridProPropsWithoutDefaultValue<R>, 'componentsProps'> {}

Expand All @@ -67,7 +67,8 @@ export type DataGridProForcedPropsKey = 'signature';
* None of the entry of this interface should be optional, they all have default values and `DataGridProps` already applies a `Partial<DataGridSimpleOptions>` for the public interface
* The controlled model do not have a default value at the prop processing level, so they must be defined in `DataGridOtherProps`
*/
export interface DataGridProPropsWithDefaultValue extends DataGridPropsWithDefaultValues {
export interface DataGridProPropsWithDefaultValue<R extends GridValidRowModel = any>
extends DataGridPropsWithDefaultValues<R> {
/**
* Set the area in `px` at the bottom of the grid viewport where onRowsScrollEnd is called.
* @default 80
Expand Down
3 changes: 2 additions & 1 deletion packages/x-data-grid-pro/src/tests/rows.DataGridPro.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,14 @@ import {
GridApi,
gridFocusCellSelector,
gridClasses,
GridValidRowModel,
} from '@mui/x-data-grid-pro';
import { useBasicDemoData, getBasicGridData } from '@mui/x-data-grid-generator';

const isJSDOM = /jsdom/.test(window.navigator.userAgent);

describe('<DataGridPro /> - Rows', () => {
let baselineProps: DataGridProProps;
let baselineProps: DataGridProProps & { rows: GridValidRowModel };

const { clock, render } = createRenderer({ clock: 'fake' });

Expand Down
3 changes: 2 additions & 1 deletion packages/x-data-grid/src/DataGrid/DataGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -680,8 +680,9 @@ DataGridRaw.propTypes = {
rowPositionsDebounceMs: PropTypes.number,
/**
* Set of rows of type [[GridRowsProp]].
* @default []
*/
rows: PropTypes.arrayOf(PropTypes.object).isRequired,
rows: PropTypes.arrayOf(PropTypes.object),
/**
* If `false`, the row selection mode is disabled.
* @default true
Expand Down
1 change: 1 addition & 0 deletions packages/x-data-grid/src/DataGrid/useDataGridProps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export const DATA_GRID_PROPS_DEFAULT_VALUES: DataGridPropsWithDefaultValues = {
checkboxSelectionVisibleOnly: false,
columnBuffer: 3,
rowBuffer: 3,
rows: [],
columnThreshold: 3,
rowThreshold: 3,
rowSelection: true,
Expand Down
13 changes: 7 additions & 6 deletions packages/x-data-grid/src/models/props/DataGridProps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export interface GridExperimentalFeatures {
* The props users can give to the `DataGrid` component.
*/
export type DataGridProps<R extends GridValidRowModel = any> = Omit<
Partial<DataGridPropsWithDefaultValues> &
Partial<DataGridPropsWithDefaultValues<R>> &
DataGridPropsWithComplexDefaultValueBeforeProcessing &
DataGridPropsWithoutDefaultValue<R>,
DataGridForcedPropsKey
Expand Down Expand Up @@ -105,7 +105,7 @@ export interface DataGridPropsWithComplexDefaultValueBeforeProcessing {
* The controlled model do not have a default value at the prop processing level, so they must be defined in `DataGridOtherProps`
* TODO: add multiSortKey
*/
export interface DataGridPropsWithDefaultValues {
export interface DataGridPropsWithDefaultValues<R extends GridValidRowModel = any> {
/**
* If `true`, the Data Grid height is dynamic and follow the number of rows in the Data Grid.
* @default false
Expand Down Expand Up @@ -290,6 +290,11 @@ export interface DataGridPropsWithDefaultValues {
* @default "client"
*/
paginationMode: GridFeatureMode;
/**
* Set of rows of type [[GridRowsProp]].
* @default []
*/
rows: GridRowsProp<R>;
/**
* Sets the height in pixel of a row in the Data Grid.
* @default 52
Expand Down Expand Up @@ -728,10 +733,6 @@ export interface DataGridPropsWithoutDefaultValue<R extends GridValidRowModel =
* Nonce of the inline styles for [Content Security Policy](https://www.w3.org/TR/2016/REC-CSP2-20161215/#script-src-the-nonce-attribute).
*/
nonce?: string;
/**
* Set of rows of type [[GridRowsProp]].
*/
rows: GridRowsProp<R>;
/**
* The initial state of the DataGrid.
* The data in it will be set in the state on initialization but will not be controlled.
Expand Down