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;
|
2022-04-27 17:46:24 +00:00
|
|
|
return !isRawTable(tablesData, tableRef) || Boolean(tableId?.startsWith('GristHidden'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return whether a table identified by the rowId of its metadata record should be visible on Raw Data page.
|
|
|
|
*/
|
|
|
|
export function isRawTable(tablesData: TableData, tableRef: UIRowId): boolean {
|
|
|
|
return tablesData.getValue(tableRef, 'summarySourceTable') === 0;
|
2021-10-04 23:52:20 +00:00
|
|
|
}
|