-
Notifications
You must be signed in to change notification settings - Fork 162
Public Cell API Specification
- Konstantin Dinev | Date:
- Radosvlav Karaivanov | Date:
- Radoslav Mirchev | Date:
- Stefan Ivanov | Date:
Version | User | Date | Notes |
---|---|---|---|
0.1 | Hristo Anastasov | July 14, 2021 | Initial Draft |
Currently, grid APIs which return "cell objects" are returning the actual cell component from current state of the DOM. However this is far from useful as with the current implementation virtualization state is not taken into account (#6158) as well as exposing API which should not be usable by users of the grid.
As a solution, a new cell-like interface should be exposed by the grids as the type returned from certain public API calls. This new interface will act as a façade for the core cell API (while also taking the current virtualization state into account.
IgxGridCell
is a new class, which implement the new CellType
interface. ThesThise class act as a façade for the corresponding cell components: IgxGridCellComponent
, IgxTreeGridCellComponent
, IgxHierarchicalGridCellwComponent
. (see below).
getCellByKey
and getCellByColumn
and getCellByColumnVisibleIndex
now should not depend on what is there in the virtualization container.
Internal functionalities and tests that depend on the cells DOM elements are changed to use gridAPI.get_cell_by_key
or gridAPI.get_cell_by_index
or gridAPI.get_cell_by_visible_index
to work. Internal functionalities and tests that depend on the cells public API, continue use the public getCellByColumn
, getCellByColumnVisibleIndex
and getCellByKey
methods.
- Declare the public
CellType
interface, which defines the public properties/methods to be exposed in the public API.
export interface CellType {
columnIndex: number;
visibleColumnIndex: number;
rowIndex: number;
value: any;
editValue: any;
selected: boolean;
editable: boolean;
editMode: boolean;
columnSelected: boolean;
column: IgxColumnComponent;
row: RowType;
rowData: any;
grid: IgxGridComponent | IgxTreeGridComponent | IgxHierarchicalGridComponent;
cellID: { rowID: any; columnID: number; rowIndex: number };
width: string;
update?: (value: any) => void;
setEditMode?: (value: boolean) => void;
}
- Implement the new façade classes, which should implement the interface. This façade class takes the row index and column field as parameters in the constructor, along with the corresponding grid component.
IgxGridCell
implements the interface CellType
.
export class IgxGridCell implements CellType {
constructor(
public grid: IgxGridComponent | IgxTreeGridComponent | IgxHierarchicalGridComponent,
public rowIndex: number,
private columnField: string) {
}
/**
* Returns the row containing the cell.
* ```typescript
* let row = this.cell.row;
* ```
*
* @memberof IgxGridCell
*/
public get row(): RowType {
return this.grid.createRow(this.rowIndex);
}
/**
* Returns the column of the cell.
* ```typescript
* let column = this.cell.column;
* ```
*
* @memberof IgxGridCell
*/
public get column(): IgxColumnComponent {
return this.grid.getColumnByName(this.columnField);
}
...
}
-
- Make the public cell API’s work with instances of the new classes. Those instances are created on demand in corresponding calls:
public getCellByColumn(rowIndex: number, columnField: string): CellType {
const column = this.columnList.find((col) => col.field === columnField);
if (column) {
return new IgxGridCell(this, rowIndex, columnField);
}
}
public getCellByColumnVisibleIndex(rowIndex: number, index: number): CellType {
const column = this.columnList.find((col) => col.visibleIndex === index);
if (column) {
return new IgxGridCell(this, rowIndex, column.field);
}
}
public getCellByKey(rowSelector: any, columnField: string): CellType {
const row = this.getRowByKey(rowSelector);
const column = this.columnList.find((col) => col.field === columnField);
if (row && column) {
return new IgxGridCell(this, row.index, columnField);
}
}
If at the given index there is a row different from data row, cell API will return undefined
.
-
getCellByColumn
will now return an instance ofIgxGridCell
-
getCellByColumnVisibleIndex
will now return an instance ofIgxGridCell
-
getCellByKey
will now return an instance ofIgxGridCell
There are currently many tests for all grids that use getCellByKey
, getCellByColumn
and getCellByColumnVisibleIndex
and row.cells
public APIs. Many of them verify correct rendering of the DOM elements, the rest of them verify the cell public API usage.
- Those that verify the correct DOM rendering, need to be rewritten to use the
gridAPI.get_cell_by_key
orgridAPI.get_cell_by_index
orgridAPI.get_cell_by_visible_index
. - Those that verify the usage of the public API, continue to use the
getCellByKey
,getCellByColumn
andgetCellByColumnVisibleIndex
androw.cells
. Some of them cast the type returned asIgxGridCellComponent
, those casts need to be removed.
Test cases to be added:
Test | Should verify |
---|---|
use getCellBy to get a cell that is out of the virtualized dom container |
cell is returned |
use getCellBy to get a cell that is first or last |
cell is returned |
use getCellBy to get a cell whose row index exceeds last index of the current page |
cell returned |
use getCellBy with a row index that is on different grid pages |
cell retured |
use getCellBy to take a record, which is on another grid page |
returns undefined |
use getCellBy at a row index, where the row is not a data row (i.e. IgxSummaryRow, igxGroupByRow, A detail row) |
returns undefined |
use cell.row for different grid |
returns respective type of IgxGridRow, IgxTreeGridRow or IgxHierarchicalGridRow |
Test the cell API | Updates the corresponding state properly i.e. cell.setEditMode(val) = enters/exits the edit mode |