2022-02-04 11:13:03 +00:00
|
|
|
import {UIRowId} from 'app/common/UIRowId';
|
|
|
|
import {TableData} from "./TableData";
|
2021-10-04 23:52:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return whether a table identified by the rowId of its metadata record, should normally be
|
|
|
|
* hidden from the user (e.g. as an option in the page-widget picker).
|
|
|
|
*/
|
2022-02-04 11:13:03 +00:00
|
|
|
export function isHiddenTable(tablesData: TableData, tableRef: UIRowId): boolean {
|
2021-10-04 23:52:20 +00:00
|
|
|
const tableId = tablesData.getValue(tableRef, 'tableId') as string|undefined;
|
|
|
|
return tablesData.getValue(tableRef, 'summarySourceTable') !== 0 ||
|
|
|
|
Boolean(tableId?.startsWith('GristHidden'));
|
|
|
|
}
|