mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
refactor(ui/datatables): allow datatable to globally filter on object value [EE-5824] (#9955)
This commit is contained in:
parent
440f4e8dda
commit
cb7377ead6
34 changed files with 271 additions and 186 deletions
|
@ -1,16 +1,17 @@
|
|||
export function defaultGetRowId<D extends Record<string, unknown>>(
|
||||
row: D
|
||||
): string {
|
||||
if (row.id && (typeof row.id === 'string' || typeof row.id === 'number')) {
|
||||
return row.id.toString();
|
||||
}
|
||||
import { DefaultType } from './types';
|
||||
|
||||
if (row.Id && (typeof row.Id === 'string' || typeof row.Id === 'number')) {
|
||||
return row.Id.toString();
|
||||
}
|
||||
/**
|
||||
* gets row id by looking for one of id, Id, or ID keys on the object
|
||||
*/
|
||||
export function defaultGetRowId<D extends DefaultType>(row: D): string {
|
||||
const key = ['id', 'Id', 'ID'].find((key) =>
|
||||
Object.hasOwn(row, key)
|
||||
) as keyof D;
|
||||
|
||||
if (row.ID && (typeof row.ID === 'string' || typeof row.ID === 'number')) {
|
||||
return row.ID.toString();
|
||||
const value = row[key];
|
||||
|
||||
if (typeof value === 'string' || typeof value === 'number') {
|
||||
return value.toString();
|
||||
}
|
||||
|
||||
return '';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue