mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
aeb7a4b849
Summary: This extends the getAccessToken documentation so it can be picked up by typedoc and published, and makes a few other tweaks along the way prompted by a typescript/typedoc version change. Test Plan: made in concert with a grist-help update Reviewers: jarek Reviewed By: jarek Subscribers: jarek Differential Revision: https://phab.getgrist.com/D3548
173 lines
5.8 KiB
TypeScript
173 lines
5.8 KiB
TypeScript
/**
|
|
* This file defines the interface for the grist api exposed to SafeBrowser plugins. Grist supports
|
|
* various ways to require it to cover various scenarios. If writing the main safeBrowser module
|
|
* (the one referenced by the components.safeBrowser key of the manifest) use
|
|
* `self.importScript('grist');`, if writing a view include the script in the html `<script src="grist"></script>`
|
|
*
|
|
*
|
|
* Example usage (let's assume that Grist let's plugin contributes to a Foo API defined as follow ):
|
|
*
|
|
* interface Foo {
|
|
* foo(name: string): Promise<string>;
|
|
* }
|
|
*
|
|
* > main.ts:
|
|
* class MyFoo {
|
|
* public foo(name: string): Promise<string> {
|
|
* return new Promise<string>( async resolve => {
|
|
* grist.rpc.onMessage( e => {
|
|
* resolve(e.data + name);
|
|
* });
|
|
* grist.ready();
|
|
* await grist.api.render('view1.html', 'fullscreen');
|
|
* });
|
|
* }
|
|
* }
|
|
* grist.rpc.registerImpl<Foo>('grist', new MyFoo()); // can add 3rd arg with type information
|
|
*
|
|
* > view1.html includes:
|
|
* grist.api.render('static/view2.html', 'fullscreen').then( view => {
|
|
* grist.rpc.onMessage(e => grist.rpc.postMessageForward("main.ts", e.data));
|
|
* });
|
|
*
|
|
* > view2.html includes:
|
|
* grist.rpc.postMessage('view1.html', 'foo ');
|
|
*
|
|
*/
|
|
|
|
import {RenderOptions, RenderTarget} from './RenderOptions';
|
|
|
|
export type ComponentKind = "safeBrowser" | "safePython" | "unsafeNode";
|
|
|
|
export const RPC_GRISTAPI_INTERFACE = '_grist_api';
|
|
|
|
export interface GristAPI {
|
|
/**
|
|
* Render the file at `path` into the `target` location in Grist. `path` must be relative to the
|
|
* root of the plugin's directory and point to an html that is contained within the plugin's
|
|
* directory. `target` is a predefined location of the Grist UI, it could be `fullscreen` or
|
|
* identifier for an inline target. Grist provides inline target identifiers in certain call
|
|
* plugins. E.g. ImportSourceAPI.getImportSource is given a target identifier to allow rende UI
|
|
* inline in the import dialog. Returns the procId which can be used to dispose the view.
|
|
*/
|
|
render(path: string, target: RenderTarget, options?: RenderOptions): Promise<number>;
|
|
|
|
/**
|
|
* Dispose the process with id procId. If the process was embedded into the UI, removes the
|
|
* corresponding element from the view.
|
|
*/
|
|
dispose(procId: number): Promise<void>;
|
|
|
|
// Subscribes to actions for `tableId`. Actions of all subscribed tables are send as rpc's
|
|
// message.
|
|
// TODO: document format of messages that can be listened on `rpc.onMessage(...);`
|
|
subscribe(tableId: string): Promise<void>;
|
|
|
|
// Unsubscribe from actions for `tableId`.
|
|
unsubscribe(tableId: string): Promise<void>;
|
|
|
|
}
|
|
|
|
/**
|
|
* Allows getting information from and interacting with the Grist document to which a plugin or widget is attached.
|
|
*/
|
|
export interface GristDocAPI {
|
|
/**
|
|
* Returns an identifier for the document.
|
|
*/
|
|
getDocName(): Promise<string>;
|
|
|
|
/**
|
|
* Returns a sorted list of table IDs.
|
|
*/
|
|
listTables(): Promise<string[]>;
|
|
|
|
/**
|
|
* Returns a complete table of data as [[RowRecords]], including the
|
|
* 'id' column. Do not modify the returned arrays in-place, especially if used
|
|
* directly (not over RPC).
|
|
*/
|
|
fetchTable(tableId: string): Promise<any>;
|
|
// TODO: return type is Promise{[colId: string]: CellValue[]}> but cannot be specified
|
|
// because ts-interface-builder does not properly support index-signature.
|
|
|
|
/**
|
|
* Applies an array of user actions.
|
|
*/
|
|
applyUserActions(actions: any[][], options?: any): Promise<any>;
|
|
// TODO: return type should be Promise<ApplyUAResult>, but this requires importing
|
|
// modules from `app/common` which is not currently supported by the build.
|
|
|
|
/**
|
|
* Get a token for out-of-band access to the document.
|
|
*/
|
|
getAccessToken(options: AccessTokenOptions): Promise<AccessTokenResult>;
|
|
}
|
|
|
|
/**
|
|
* Interface for the data backing a single widget.
|
|
*/
|
|
export interface GristView {
|
|
/**
|
|
* Like [[GristDocAPI.fetchTable]], but gets data for the custom section specifically, if there is any.
|
|
*/
|
|
fetchSelectedTable(): Promise<any>;
|
|
// TODO: return type is Promise{[colId: string]: CellValue[]}> but cannot be specified
|
|
// because ts-interface-builder does not properly support index-signature.
|
|
|
|
/**
|
|
* Fetches selected record by its `rowId`.
|
|
*/
|
|
fetchSelectedRecord(rowId: number): Promise<any>;
|
|
// TODO: return type is Promise{[colId: string]: CellValue}> but cannot be specified
|
|
// because ts-interface-builder does not properly support index-signature.
|
|
|
|
/**
|
|
* Allow custom widget to be listed as a possible source for linking with SELECT BY.
|
|
*/
|
|
allowSelectBy(): Promise<void>;
|
|
|
|
/**
|
|
* Set the list of selected rows to be used against any linked widget. Requires `allowSelectBy()`.
|
|
*/
|
|
setSelectedRows(rowIds: number[]): Promise<void>;
|
|
}
|
|
|
|
/**
|
|
* Options when creating access tokens.
|
|
*/
|
|
export interface AccessTokenOptions {
|
|
/** Restrict use of token to reading only */
|
|
readOnly?: boolean;
|
|
}
|
|
|
|
/**
|
|
* Access token information, including the token string itself, a base URL for
|
|
* API calls for which the access token can be used, and the time-to-live the
|
|
* token was created with.
|
|
*/
|
|
export interface AccessTokenResult {
|
|
/**
|
|
* The token string, which can currently be provided in an api call as a
|
|
* query parameter called "auth"
|
|
*/
|
|
token: string;
|
|
|
|
/**
|
|
* The base url of the API for which the token can be used. Currently tokens
|
|
* are associated with a single document, so the base url will be something
|
|
* like `https://..../api/docs/DOCID`
|
|
*
|
|
* Access tokens currently only grant access to endpoints dealing with the
|
|
* internal content of a document (such as tables and cells) and not its
|
|
* metadata (such as the document name or who it is shared with).
|
|
*/
|
|
baseUrl: string;
|
|
|
|
/**
|
|
* Number of milliseconds the access token will remain valid for
|
|
* after creation. This will be several minutes.
|
|
*/
|
|
ttlMsecs: number;
|
|
}
|