/** * DocModel describes the observable models for all document data, including the built-in tables * (aka metatables), which are used in the Grist application itself (e.g. to render views). * * Since all data is structured as tables, we have several levels of models: * (1) DocModel maintains all tables * (2) MetaTableModel maintains data for a built-in table. * (3) DataTableModel maintains data for a user-defined table. * (4) RowModels (defined in {Data,Meta}TableModel.js) maintains data for one record in a table. * For built-in tables, the records are defined in this module, below. */ import {KoArray} from 'app/client/lib/koArray'; import {KoSaveableObservable} from 'app/client/models/modelUtil'; import * as ko from 'knockout'; import * as koArray from 'app/client/lib/koArray'; import * as koUtil from 'app/client/lib/koUtil'; import DataTableModel from 'app/client/models/DataTableModel'; import {DocData} from 'app/client/models/DocData'; import {urlState} from 'app/client/models/gristUrlState'; import MetaRowModel from 'app/client/models/MetaRowModel'; import MetaTableModel from 'app/client/models/MetaTableModel'; import * as rowset from 'app/client/models/rowset'; import {isHiddenTable, isRawTable} from 'app/common/isHiddenTable'; import {schema, SchemaTypes} from 'app/common/schema'; import {ACLRuleRec, createACLRuleRec} from 'app/client/models/entities/ACLRuleRec'; import {ColumnRec, createColumnRec} from 'app/client/models/entities/ColumnRec'; import {createDocInfoRec, DocInfoRec} from 'app/client/models/entities/DocInfoRec'; import {createFilterRec, FilterRec} from 'app/client/models/entities/FilterRec'; import {createPageRec, PageRec} from 'app/client/models/entities/PageRec'; import {createTabBarRec, TabBarRec} from 'app/client/models/entities/TabBarRec'; import {createTableRec, TableRec} from 'app/client/models/entities/TableRec'; import {createValidationRec, ValidationRec} from 'app/client/models/entities/ValidationRec'; import {createViewFieldRec, ViewFieldRec} from 'app/client/models/entities/ViewFieldRec'; import {createViewRec, ViewRec} from 'app/client/models/entities/ViewRec'; import {createViewSectionRec, ViewSectionRec} from 'app/client/models/entities/ViewSectionRec'; import {RefListValue} from 'app/common/gristTypes'; import {decodeObject} from 'app/plugin/objtypes'; // Re-export all the entity types available. The recommended usage is like this: // import {ColumnRec, ViewFieldRec} from 'app/client/models/DocModel'; export type {ColumnRec, DocInfoRec, FilterRec, PageRec, TabBarRec, TableRec, ValidationRec, ViewFieldRec, ViewRec, ViewSectionRec}; /** * Creates the type for a MetaRowModel containing a KoSaveableObservable for each field listed in * the auto-generated app/common/schema.ts. It represents the metadata record in the database. * Particular DocModel entities derive from this, and add other helpful computed values. */ export type IRowModel = MetaRowModel & { [ColId in keyof SchemaTypes[TName]]: KoSaveableObservable; }; /** * Returns an observable for an observable array of records from the given table. * * @param {RowModel} rowModel: RowModel that owns this recordSet. * @param {TableModel} tableModel: The model for the table to return records from. * @param {String} groupByField: The name of the field in the other table by which to group. The * returned observable arrays will be for the group matching the value of rowModel.id(). * @param {String} [options.sortBy]: Keep the returned array sorted by this key. If omitted, the * returned array will be sorted by rowId. */ export function recordSet( rowModel: MetaRowModel, tableModel: MetaTableModel, groupByField: string, options?: {sortBy: string} ): ko.Computed> { const opts = {groupBy: groupByField, sortBy: 'id', ...options}; return koUtil.computedAutoDispose( () => tableModel.createRowGroupModel(rowModel.id() || 0, opts), null, { pure: true }); } /** * Returns an observable for a record from another table, selected using the passed-in observable * for a rowId. If rowId is invalid, returns the row model for the fake empty record. * @param {TableModel} tableModel: The model for the table to return a record from. * @param {ko.observable} rowIdObs: An observable for the row id to look up. */ export function refRecord( tableModel: MetaTableModel, rowIdObs: ko.Observable|ko.Computed ): ko.Computed { // Pass 'true' to getRowModel() to depend on the row version. return ko.pureComputed(() => tableModel.getRowModel(rowIdObs() || 0, true)); } /** * Returns an observable with a list of records from another table, selected using RefList column. * @param {TableModel} tableModel: The model for the table to return a record from. * @param {ko.observable} rowsIdObs: An observable with a RefList value. */ export function refListRecords( tableModel: MetaTableModel, rowsIdObs: ko.Observable|ko.Computed ) { return ko.pureComputed(() => { const ids = decodeObject(rowsIdObs()) as number[]|null; if (!Array.isArray(ids)) { return []; } return ids.map(id => tableModel.getRowModel(id, true)); }); } // Use an alias for brevity. type MTM = MetaTableModel; export class DocModel { // MTM is a shorthand for MetaTableModel below, to keep each item to one line. public docInfo: MTM = this._metaTableModel("_grist_DocInfo", createDocInfoRec); public tables: MTM = this._metaTableModel("_grist_Tables", createTableRec); public columns: MTM = this._metaTableModel("_grist_Tables_column", createColumnRec); public views: MTM = this._metaTableModel("_grist_Views", createViewRec); public viewSections: MTM = this._metaTableModel("_grist_Views_section", createViewSectionRec); public viewFields: MTM = this._metaTableModel("_grist_Views_section_field", createViewFieldRec); public tabBar: MTM = this._metaTableModel("_grist_TabBar", createTabBarRec); public validations: MTM = this._metaTableModel("_grist_Validations", createValidationRec); public pages: MTM = this._metaTableModel("_grist_Pages", createPageRec); public rules: MTM = this._metaTableModel("_grist_ACLRules", createACLRuleRec); public filters: MTM = this._metaTableModel("_grist_Filters", createFilterRec); public docInfoRow: DocInfoRec; public allTables: KoArray; public rawTables: KoArray; public allTableIds: KoArray; // A mapping from tableId to DataTableModel for user-defined tables. public dataTables: {[tableId: string]: DataTableModel} = {}; // Another map, this one mapping tableRef (rowId) to DataTableModel. public dataTablesByRef = new Map(); public allTabs: KoArray = this.tabBar.createAllRowsModel('tabPos'); // Excludes pages hidden by ACL rules or other reasons (e.g. doc-tour) public visibleDocPages: ko.Computed; // Flag for tracking whether document is in formula-editing mode public editingFormula: ko.Observable = ko.observable(false); // TODO This is a temporary solution until we expose creation of doc-tours to users. This flag // is initialized once on page load. If set, then the tour page (if any) will be visible. public showDocTourTable: boolean = (urlState().state.get().docPage === 'GristDocTour'); // List of all the metadata tables. private _metaTables: Array>; constructor(public readonly docData: DocData) { // For all the metadata tables, load their data (and create the RowModels). for (const model of this._metaTables) { model.loadData(); } this.docInfoRow = this.docInfo.getRowModel(1); // An observable array of user-visible tables, sorted by tableId, excluding summary tables. // This is a publicly exposed member. this.allTables = createUserTablesArray(this.tables); this.rawTables = createRawTablesArray(this.tables); // An observable array of user-visible tableIds. A shortcut mapped from allTables. const allTableIds = ko.computed(() => this.allTables.all().map(t => t.tableId())); this.allTableIds = koArray.syncedKoArray(allTableIds); // Create an observable array of RowModels for all the data tables. We'll trigger // onAddTable/onRemoveTable in response to this array's splice events below. const allTableMetaRows = this.tables.createAllRowsModel('id'); // For a new table, we get AddTable action followed by metadata actions to add a table record // (which triggers this subscribeForEach) and to add all the column records. So we have to keep // in mind that metadata for columns isn't available yet. allTableMetaRows.subscribeForEach({ add: r => this._onAddTable(r), remove: r => this._onRemoveTable(r), }); // Get a list of only the visible pages. const allPages = this.pages.createAllRowsModel('pagePos'); this.visibleDocPages = ko.computed(() => allPages.all().filter(p => !p.isHidden())); } private _metaTableModel>( tableId: TName, rowConstructor: (this: TRow, docModel: DocModel) => void, ): MetaTableModel { const fields = Object.keys(schema[tableId]); const model = new MetaTableModel(this, this.docData.getTable(tableId)!, fields, rowConstructor); // To keep _metaTables private member listed after public ones, initialize it on first use. if (!this._metaTables) { this._metaTables = []; } this._metaTables.push(model); return model; } private _onAddTable(tableMetaRow: TableRec) { let tid = tableMetaRow.tableId(); const dtm = new DataTableModel(this, this.docData.getTable(tid)!, tableMetaRow); this.dataTables[tid] = dtm; this.dataTablesByRef.set(tableMetaRow.getRowId(), dtm); // Subscribe to tableMetaRow.tableId() to handle table renames. tableMetaRow.tableId.subscribe(newTableId => { this.dataTables[newTableId] = this.dataTables[tid]; delete this.dataTables[tid]; tid = newTableId; }); } private _onRemoveTable(tableMetaRow: TableRec) { const tid = tableMetaRow.tableId(); this.dataTables[tid].dispose(); delete this.dataTables[tid]; this.dataTablesByRef.delete(tableMetaRow.getRowId()); } } /** * Helper to create an observable array of tables, sorted by tableId, and excluding hidden * tables. */ function createUserTablesArray(tablesModel: MetaTableModel): KoArray { const rowSource = new rowset.FilteredRowSource(r => !isHiddenTable(tablesModel.tableData, r)); rowSource.subscribeTo(tablesModel); // Create an observable RowModel array based on this rowSource, sorted by tableId. return tablesModel._createRowSetModel(rowSource, 'tableId'); } /** * Helper to create an observable array of tables, sorted by tableId, and excluding summary tables. */ function createRawTablesArray(tablesModel: MetaTableModel): KoArray { const rowSource = new rowset.FilteredRowSource(r => isRawTable(tablesModel.tableData, r)); rowSource.subscribeTo(tablesModel); // Create an observable RowModel array based on this rowSource, sorted by tableId. return tablesModel._createRowSetModel(rowSource, 'tableId'); }