@deephaven/jsapi-bootstrap 0.61.1 → 0.61.2-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/DeferredApiBootstrap.d.ts +6 -3
- package/dist/DeferredApiBootstrap.d.ts.map +1 -1
- package/dist/DeferredApiBootstrap.js +2 -2
- package/dist/DeferredApiBootstrap.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/useDeferredApi.d.ts +12 -6
- package/dist/useDeferredApi.d.ts.map +1 -1
- package/dist/useDeferredApi.js +12 -5
- package/dist/useDeferredApi.js.map +1 -1
- package/dist/useObjectFetcher.d.ts +49 -0
- package/dist/useObjectFetcher.d.ts.map +1 -0
- package/dist/useObjectFetcher.js +75 -0
- package/dist/useObjectFetcher.js.map +1 -0
- package/package.json +6 -6
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { VariableDescriptor } from '@deephaven/jsapi-types';
|
|
2
3
|
type DeferredApiBootstrapProps = React.PropsWithChildren<{
|
|
3
4
|
onError?: (error: unknown) => void;
|
|
4
5
|
/**
|
|
5
|
-
*
|
|
6
|
+
* Descriptor for the widget to load. Passed into an `ObjectFetcher` to load the widget.
|
|
7
|
+
* The descriptor may be extended to include session information or other data required to identify the widget.
|
|
8
|
+
* The surrounding `ObjectFetcherContext` will then be able to use that information to correctly load the widget.
|
|
6
9
|
*/
|
|
7
|
-
|
|
10
|
+
widget: VariableDescriptor;
|
|
8
11
|
}>;
|
|
9
12
|
/**
|
|
10
13
|
* Does not render children until the deferred API is resolved.
|
|
11
14
|
*/
|
|
12
|
-
export declare const DeferredApiBootstrap: React.MemoExoticComponent<({ children, onError,
|
|
15
|
+
export declare const DeferredApiBootstrap: React.MemoExoticComponent<({ children, onError, widget, }: DeferredApiBootstrapProps) => JSX.Element | null>;
|
|
13
16
|
export default DeferredApiBootstrap;
|
|
14
17
|
//# sourceMappingURL=DeferredApiBootstrap.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DeferredApiBootstrap.d.ts","sourceRoot":"","sources":["../src/DeferredApiBootstrap.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"DeferredApiBootstrap.d.ts","sourceRoot":"","sources":["../src/DeferredApiBootstrap.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAI5D,KAAK,yBAAyB,GAAG,KAAK,CAAC,iBAAiB,CAAC;IACvD,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;IACnC;;;;OAIG;IACH,MAAM,EAAE,kBAAkB,CAAC;CAC5B,CAAC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,oBAAoB,6DAK5B,yBAAyB,KAAG,WAAW,GAAG,IAAI,CAYlD,CAAC;AAIF,eAAe,oBAAoB,CAAC"}
|
|
@@ -9,9 +9,9 @@ export var DeferredApiBootstrap = /*#__PURE__*/React.memo(_ref => {
|
|
|
9
9
|
var {
|
|
10
10
|
children,
|
|
11
11
|
onError,
|
|
12
|
-
|
|
12
|
+
widget
|
|
13
13
|
} = _ref;
|
|
14
|
-
var [api, apiError] = useDeferredApi(
|
|
14
|
+
var [api, apiError] = useDeferredApi(widget);
|
|
15
15
|
if (apiError != null) {
|
|
16
16
|
onError === null || onError === void 0 ? void 0 : onError(apiError);
|
|
17
17
|
return null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DeferredApiBootstrap.js","names":["React","useDeferredApi","ApiContext","jsx","_jsx","DeferredApiBootstrap","memo","_ref","children","onError","
|
|
1
|
+
{"version":3,"file":"DeferredApiBootstrap.js","names":["React","useDeferredApi","ApiContext","jsx","_jsx","DeferredApiBootstrap","memo","_ref","children","onError","widget","api","apiError","Provider","value","displayName"],"sources":["../src/DeferredApiBootstrap.tsx"],"sourcesContent":["import React from 'react';\nimport { VariableDescriptor } from '@deephaven/jsapi-types';\nimport useDeferredApi from './useDeferredApi';\nimport { ApiContext } from './ApiBootstrap';\n\ntype DeferredApiBootstrapProps = React.PropsWithChildren<{\n onError?: (error: unknown) => void;\n /**\n * Descriptor for the widget to load. Passed into an `ObjectFetcher` to load the widget.\n * The descriptor may be extended to include session information or other data required to identify the widget.\n * The surrounding `ObjectFetcherContext` will then be able to use that information to correctly load the widget.\n */\n widget: VariableDescriptor;\n}>;\n\n/**\n * Does not render children until the deferred API is resolved.\n */\nexport const DeferredApiBootstrap = React.memo(\n ({\n children,\n onError,\n widget,\n }: DeferredApiBootstrapProps): JSX.Element | null => {\n const [api, apiError] = useDeferredApi(widget);\n if (apiError != null) {\n onError?.(apiError);\n return null;\n }\n if (api == null) {\n // Still waiting for the API to load\n return null;\n }\n return <ApiContext.Provider value={api}>{children}</ApiContext.Provider>;\n }\n);\n\nDeferredApiBootstrap.displayName = 'DeferredApiBootstrap';\n\nexport default DeferredApiBootstrap;\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AAAC,OAEnBC,cAAc;AAAA,SACZC,UAAU;AAAA,SAAAC,GAAA,IAAAC,IAAA;AAYnB;AACA;AACA;AACA,OAAO,IAAMC,oBAAoB,gBAAGL,KAAK,CAACM,IAAI,CAC5CC,IAAA,IAIqD;EAAA,IAJpD;IACCC,QAAQ;IACRC,OAAO;IACPC;EACyB,CAAC,GAAAH,IAAA;EAC1B,IAAM,CAACI,GAAG,EAAEC,QAAQ,CAAC,GAAGX,cAAc,CAACS,MAAM,CAAC;EAC9C,IAAIE,QAAQ,IAAI,IAAI,EAAE;IACpBH,OAAO,aAAPA,OAAO,uBAAPA,OAAO,CAAGG,QAAQ,CAAC;IACnB,OAAO,IAAI;EACb;EACA,IAAID,GAAG,IAAI,IAAI,EAAE;IACf;IACA,OAAO,IAAI;EACb;EACA,oBAAOP,IAAA,CAACF,UAAU,CAACW,QAAQ;IAACC,KAAK,EAAEH,GAAI;IAAAH,QAAA,EAAEA;EAAQ,CAAsB,CAAC;AAC1E,CACF,CAAC;AAEDH,oBAAoB,CAACU,WAAW,GAAG,sBAAsB;AAEzD,eAAeV,oBAAoB"}
|
package/dist/index.d.ts
CHANGED
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC"}
|
package/dist/index.js
CHANGED
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":[],"sources":["../src/index.ts"],"sourcesContent":["export * from './ApiBootstrap';\nexport * from './ClientBootstrap';\nexport * from './DeferredApiBootstrap';\nexport * from './useApi';\nexport * from './useClient';\nexport * from './useDeferredApi';\n"],"mappings":""}
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["../src/index.ts"],"sourcesContent":["export * from './ApiBootstrap';\nexport * from './ClientBootstrap';\nexport * from './DeferredApiBootstrap';\nexport * from './useApi';\nexport * from './useClient';\nexport * from './useDeferredApi';\nexport * from './useObjectFetcher';\n"],"mappings":""}
|
package/dist/useDeferredApi.d.ts
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { dh as DhType } from '@deephaven/jsapi-types';
|
|
3
|
-
/**
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
import type { dh as DhType, VariableDescriptor } from '@deephaven/jsapi-types';
|
|
3
|
+
/**
|
|
4
|
+
* Function to fetch an API based on a provided descriptor object.
|
|
5
|
+
* Depending on the context there may be more properties on the descriptor,
|
|
6
|
+
* providing more information about the object, such as a session ID.
|
|
7
|
+
* @param descriptor Descriptor object to fetch the API from.
|
|
8
|
+
* @returns A promise that resolves to the API instance for the provided variable descriptor.
|
|
9
|
+
*/
|
|
10
|
+
export type DeferredApiFetcher = (descriptor: VariableDescriptor) => Promise<DhType>;
|
|
6
11
|
export declare const DeferredApiContext: import("react").Context<DhType | DeferredApiFetcher | null>;
|
|
7
12
|
/**
|
|
8
|
-
* Retrieve the API for the current context, given the
|
|
13
|
+
* Retrieve the API for the current context, given the widget provided.
|
|
9
14
|
* The API may need to be loaded, and will return `null` until it is ready.
|
|
15
|
+
* @param widget The widget descriptor to use to fetch the API
|
|
10
16
|
* @returns A tuple with the API instance, and an error if one occurred.
|
|
11
17
|
*/
|
|
12
|
-
export declare function useDeferredApi(
|
|
18
|
+
export declare function useDeferredApi(widget: VariableDescriptor): [DhType | null, unknown | null];
|
|
13
19
|
export default useDeferredApi;
|
|
14
20
|
//# sourceMappingURL=useDeferredApi.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useDeferredApi.d.ts","sourceRoot":"","sources":["../src/useDeferredApi.ts"],"names":[],"mappings":";AACA,OAAO,KAAK,EAAE,EAAE,IAAI,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"useDeferredApi.d.ts","sourceRoot":"","sources":["../src/useDeferredApi.ts"],"names":[],"mappings":";AACA,OAAO,KAAK,EAAE,EAAE,IAAI,MAAM,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAG/E;;;;;;GAMG;AACH,MAAM,MAAM,kBAAkB,GAAG,CAC/B,UAAU,EAAE,kBAAkB,KAC3B,OAAO,CAAC,MAAM,CAAC,CAAC;AAErB,eAAO,MAAM,kBAAkB,6DAExB,CAAC;AAER;;;;;GAKG;AACH,wBAAgB,cAAc,CAC5B,MAAM,EAAE,kBAAkB,GACzB,CAAC,MAAM,GAAG,IAAI,EAAE,OAAO,GAAG,IAAI,CAAC,CAkDjC;AAED,eAAe,cAAc,CAAC"}
|
package/dist/useDeferredApi.js
CHANGED
|
@@ -2,15 +2,22 @@ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try
|
|
|
2
2
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
3
3
|
import { createContext, useContext, useEffect, useState } from 'react';
|
|
4
4
|
import { ApiContext } from "./ApiBootstrap.js";
|
|
5
|
-
/**
|
|
5
|
+
/**
|
|
6
|
+
* Function to fetch an API based on a provided descriptor object.
|
|
7
|
+
* Depending on the context there may be more properties on the descriptor,
|
|
8
|
+
* providing more information about the object, such as a session ID.
|
|
9
|
+
* @param descriptor Descriptor object to fetch the API from.
|
|
10
|
+
* @returns A promise that resolves to the API instance for the provided variable descriptor.
|
|
11
|
+
*/
|
|
6
12
|
export var DeferredApiContext = /*#__PURE__*/createContext(null);
|
|
7
13
|
|
|
8
14
|
/**
|
|
9
|
-
* Retrieve the API for the current context, given the
|
|
15
|
+
* Retrieve the API for the current context, given the widget provided.
|
|
10
16
|
* The API may need to be loaded, and will return `null` until it is ready.
|
|
17
|
+
* @param widget The widget descriptor to use to fetch the API
|
|
11
18
|
* @returns A tuple with the API instance, and an error if one occurred.
|
|
12
19
|
*/
|
|
13
|
-
export function useDeferredApi(
|
|
20
|
+
export function useDeferredApi(widget) {
|
|
14
21
|
var [api, setApi] = useState(null);
|
|
15
22
|
var [error, setError] = useState(null);
|
|
16
23
|
var deferredApi = useContext(DeferredApiContext);
|
|
@@ -34,7 +41,7 @@ export function useDeferredApi(options) {
|
|
|
34
41
|
_loadApi = _asyncToGenerator(function* () {
|
|
35
42
|
if (typeof deferredApi === 'function') {
|
|
36
43
|
try {
|
|
37
|
-
var newApi = yield deferredApi(
|
|
44
|
+
var newApi = yield deferredApi(widget);
|
|
38
45
|
if (!isCancelled) {
|
|
39
46
|
setApi(newApi);
|
|
40
47
|
setError(null);
|
|
@@ -55,7 +62,7 @@ export function useDeferredApi(options) {
|
|
|
55
62
|
return () => {
|
|
56
63
|
isCancelled = true;
|
|
57
64
|
};
|
|
58
|
-
}, [contextApi, deferredApi,
|
|
65
|
+
}, [contextApi, deferredApi, widget]);
|
|
59
66
|
return [api, error];
|
|
60
67
|
}
|
|
61
68
|
export default useDeferredApi;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useDeferredApi.js","names":["createContext","useContext","useEffect","useState","ApiContext","DeferredApiContext","useDeferredApi","
|
|
1
|
+
{"version":3,"file":"useDeferredApi.js","names":["createContext","useContext","useEffect","useState","ApiContext","DeferredApiContext","useDeferredApi","widget","api","setApi","error","setError","deferredApi","contextApi","Error","isCancelled","loadApi","_loadApi","apply","arguments","_asyncToGenerator","newApi","e"],"sources":["../src/useDeferredApi.ts"],"sourcesContent":["import { createContext, useContext, useEffect, useState } from 'react';\nimport type { dh as DhType, VariableDescriptor } from '@deephaven/jsapi-types';\nimport { ApiContext } from './ApiBootstrap';\n\n/**\n * Function to fetch an API based on a provided descriptor object.\n * Depending on the context there may be more properties on the descriptor,\n * providing more information about the object, such as a session ID.\n * @param descriptor Descriptor object to fetch the API from.\n * @returns A promise that resolves to the API instance for the provided variable descriptor.\n */\nexport type DeferredApiFetcher = (\n descriptor: VariableDescriptor\n) => Promise<DhType>;\n\nexport const DeferredApiContext = createContext<\n DhType | DeferredApiFetcher | null\n>(null);\n\n/**\n * Retrieve the API for the current context, given the widget provided.\n * The API may need to be loaded, and will return `null` until it is ready.\n * @param widget The widget descriptor to use to fetch the API\n * @returns A tuple with the API instance, and an error if one occurred.\n */\nexport function useDeferredApi(\n widget: VariableDescriptor\n): [DhType | null, unknown | null] {\n const [api, setApi] = useState<DhType | null>(null);\n const [error, setError] = useState<unknown | null>(null);\n const deferredApi = useContext(DeferredApiContext);\n const contextApi = useContext(ApiContext);\n\n useEffect(() => {\n if (deferredApi == null) {\n if (contextApi != null) {\n setApi(contextApi);\n setError(null);\n return;\n }\n setApi(null);\n setError(\n new Error(\n 'No API available in useDeferredApi. Was code wrapped in ApiBootstrap or DeferredApiContext.Provider?'\n )\n );\n return;\n }\n let isCancelled = false;\n\n async function loadApi() {\n if (typeof deferredApi === 'function') {\n try {\n const newApi = await deferredApi(widget);\n if (!isCancelled) {\n setApi(newApi);\n setError(null);\n }\n } catch (e) {\n if (!isCancelled) {\n setApi(null);\n setError(e);\n }\n }\n } else {\n setApi(deferredApi);\n }\n }\n\n loadApi();\n\n return () => {\n isCancelled = true;\n };\n }, [contextApi, deferredApi, widget]);\n\n return [api, error];\n}\n\nexport default useDeferredApi;\n"],"mappings":";;AAAA,SAASA,aAAa,EAAEC,UAAU,EAAEC,SAAS,EAAEC,QAAQ,QAAQ,OAAO;AAAC,SAE9DC,UAAU;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AAKA,OAAO,IAAMC,kBAAkB,gBAAGL,aAAa,CAE7C,IAAI,CAAC;;AAEP;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASM,cAAcA,CAC5BC,MAA0B,EACO;EACjC,IAAM,CAACC,GAAG,EAAEC,MAAM,CAAC,GAAGN,QAAQ,CAAgB,IAAI,CAAC;EACnD,IAAM,CAACO,KAAK,EAAEC,QAAQ,CAAC,GAAGR,QAAQ,CAAiB,IAAI,CAAC;EACxD,IAAMS,WAAW,GAAGX,UAAU,CAACI,kBAAkB,CAAC;EAClD,IAAMQ,UAAU,GAAGZ,UAAU,CAACG,UAAU,CAAC;EAEzCF,SAAS,CAAC,MAAM;IACd,IAAIU,WAAW,IAAI,IAAI,EAAE;MACvB,IAAIC,UAAU,IAAI,IAAI,EAAE;QACtBJ,MAAM,CAACI,UAAU,CAAC;QAClBF,QAAQ,CAAC,IAAI,CAAC;QACd;MACF;MACAF,MAAM,CAAC,IAAI,CAAC;MACZE,QAAQ,CACN,IAAIG,KAAK,CACP,sGACF,CACF,CAAC;MACD;IACF;IACA,IAAIC,WAAW,GAAG,KAAK;IAAC,SAETC,OAAOA,CAAA;MAAA,OAAAC,QAAA,CAAAC,KAAA,OAAAC,SAAA;IAAA;IAAA,SAAAF,SAAA;MAAAA,QAAA,GAAAG,iBAAA,CAAtB,aAAyB;QACvB,IAAI,OAAOR,WAAW,KAAK,UAAU,EAAE;UACrC,IAAI;YACF,IAAMS,MAAM,SAAST,WAAW,CAACL,MAAM,CAAC;YACxC,IAAI,CAACQ,WAAW,EAAE;cAChBN,MAAM,CAACY,MAAM,CAAC;cACdV,QAAQ,CAAC,IAAI,CAAC;YAChB;UACF,CAAC,CAAC,OAAOW,CAAC,EAAE;YACV,IAAI,CAACP,WAAW,EAAE;cAChBN,MAAM,CAAC,IAAI,CAAC;cACZE,QAAQ,CAACW,CAAC,CAAC;YACb;UACF;QACF,CAAC,MAAM;UACLb,MAAM,CAACG,WAAW,CAAC;QACrB;MACF,CAAC;MAAA,OAAAK,QAAA,CAAAC,KAAA,OAAAC,SAAA;IAAA;IAEDH,OAAO,CAAC,CAAC;IAET,OAAO,MAAM;MACXD,WAAW,GAAG,IAAI;IACpB,CAAC;EACH,CAAC,EAAE,CAACF,UAAU,EAAED,WAAW,EAAEL,MAAM,CAAC,CAAC;EAErC,OAAO,CAACC,GAAG,EAAEE,KAAK,CAAC;AACrB;AAEA,eAAeJ,cAAc"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { VariableDescriptor, VariableDefinition } from '@deephaven/jsapi-types';
|
|
3
|
+
/**
|
|
4
|
+
* Descriptor for a variable by name. Used when needed to fetch an object.
|
|
5
|
+
*/
|
|
6
|
+
export type NameVariableDescriptor = {
|
|
7
|
+
/** Type of the variable */
|
|
8
|
+
type: string;
|
|
9
|
+
/** Name of the variable */
|
|
10
|
+
name: string;
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* Descriptor for a variable by id. Used when needed to fetch an object.
|
|
14
|
+
*/
|
|
15
|
+
export type IdVariableDescriptor = {
|
|
16
|
+
/** Type of the variable */
|
|
17
|
+
type: string;
|
|
18
|
+
/** Id of the variable */
|
|
19
|
+
id: string;
|
|
20
|
+
};
|
|
21
|
+
export declare function isNameVariableDescriptor(value: unknown): value is NameVariableDescriptor;
|
|
22
|
+
export declare function isIdVariableDescriptor(value: unknown): value is IdVariableDescriptor;
|
|
23
|
+
export declare function isVariableDescriptor(value: unknown): value is VariableDescriptor;
|
|
24
|
+
/**
|
|
25
|
+
* Function to fetch an object based on a provided descriptor object.
|
|
26
|
+
* @param descriptor Descriptor object to fetch the object from. Can be extended by a specific implementation to
|
|
27
|
+
* include additional fields (such as a session ID) to uniquely identify an object.
|
|
28
|
+
*/
|
|
29
|
+
export type ObjectFetcher = <T = unknown>(descriptor: VariableDescriptor) => Promise<T>;
|
|
30
|
+
export declare const ObjectFetcherContext: import("react").Context<ObjectFetcher | null>;
|
|
31
|
+
/**
|
|
32
|
+
* Gets a descriptor that only has the ID or name set, but not both.
|
|
33
|
+
* API will throw an error if both are set when fetching from the connection.
|
|
34
|
+
* @param descriptor Variable descriptor to sanitize
|
|
35
|
+
* @returns Descriptor object that has either the ID or name set, but not both.
|
|
36
|
+
*/
|
|
37
|
+
export declare function sanitizeVariableDescriptor(descriptor: Partial<VariableDescriptor>): NameVariableDescriptor | IdVariableDescriptor;
|
|
38
|
+
/**
|
|
39
|
+
* Get the variable descriptor for a definition.
|
|
40
|
+
* @param definition Definition to get the variable descriptor from
|
|
41
|
+
* @returns Serializable VariableDescriptor object
|
|
42
|
+
*/
|
|
43
|
+
export declare function getVariableDescriptor(definition: VariableDefinition): VariableDescriptor;
|
|
44
|
+
/**
|
|
45
|
+
* Use a function to fetch an object based on provided metadata
|
|
46
|
+
* @returns Function to asynchronously fetch an object based on provided metadata
|
|
47
|
+
*/
|
|
48
|
+
export declare function useObjectFetcher(): ObjectFetcher;
|
|
49
|
+
//# sourceMappingURL=useObjectFetcher.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useObjectFetcher.d.ts","sourceRoot":"","sources":["../src/useObjectFetcher.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAIhF;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAAG;IACnC,2BAA2B;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,2BAA2B;IAC3B,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAAG;IACjC,2BAA2B;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,yBAAyB;IACzB,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,wBAAgB,wBAAwB,CACtC,KAAK,EAAE,OAAO,GACb,KAAK,IAAI,sBAAsB,CAOjC;AAED,wBAAgB,sBAAsB,CACpC,KAAK,EAAE,OAAO,GACb,KAAK,IAAI,oBAAoB,CAO/B;AAED,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,OAAO,GACb,KAAK,IAAI,kBAAkB,CAE7B;AAED;;;;GAIG;AACH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,GAAG,OAAO,EACtC,UAAU,EAAE,kBAAkB,KAC3B,OAAO,CAAC,CAAC,CAAC,CAAC;AAEhB,eAAO,MAAM,oBAAoB,+CAA4C,CAAC;AAE9E;;;;;GAKG;AACH,wBAAgB,0BAA0B,CACxC,UAAU,EAAE,OAAO,CAAC,kBAAkB,CAAC,GACtC,sBAAsB,GAAG,oBAAoB,CAe/C;AAED;;;;GAIG;AACH,wBAAgB,qBAAqB,CACnC,UAAU,EAAE,kBAAkB,GAC7B,kBAAkB,CAMpB;AAED;;;GAGG;AACH,wBAAgB,gBAAgB,IAAI,aAAa,CAKhD"}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { useContextOrThrow } from '@deephaven/react-hooks';
|
|
2
|
+
import { createContext } from 'react';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Descriptor for a variable by name. Used when needed to fetch an object.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Descriptor for a variable by id. Used when needed to fetch an object.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
export function isNameVariableDescriptor(value) {
|
|
13
|
+
return typeof value === 'object' && value != null && typeof value.type === 'string' && value.name != null;
|
|
14
|
+
}
|
|
15
|
+
export function isIdVariableDescriptor(value) {
|
|
16
|
+
return typeof value === 'object' && value != null && typeof value.type === 'string' && value.id != null;
|
|
17
|
+
}
|
|
18
|
+
export function isVariableDescriptor(value) {
|
|
19
|
+
return isNameVariableDescriptor(value) || isIdVariableDescriptor(value);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Function to fetch an object based on a provided descriptor object.
|
|
24
|
+
* @param descriptor Descriptor object to fetch the object from. Can be extended by a specific implementation to
|
|
25
|
+
* include additional fields (such as a session ID) to uniquely identify an object.
|
|
26
|
+
*/
|
|
27
|
+
|
|
28
|
+
export var ObjectFetcherContext = /*#__PURE__*/createContext(null);
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Gets a descriptor that only has the ID or name set, but not both.
|
|
32
|
+
* API will throw an error if both are set when fetching from the connection.
|
|
33
|
+
* @param descriptor Variable descriptor to sanitize
|
|
34
|
+
* @returns Descriptor object that has either the ID or name set, but not both.
|
|
35
|
+
*/
|
|
36
|
+
export function sanitizeVariableDescriptor(descriptor) {
|
|
37
|
+
// Can't use a spread operator because of how the GWT compiled code defines properties on the object: https://github.com/gwtproject/gwt/issues/9913
|
|
38
|
+
if (isIdVariableDescriptor(descriptor)) {
|
|
39
|
+
return {
|
|
40
|
+
id: descriptor.id,
|
|
41
|
+
type: descriptor.type
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
if (isNameVariableDescriptor(descriptor)) {
|
|
45
|
+
var _descriptor$name;
|
|
46
|
+
return {
|
|
47
|
+
name: (_descriptor$name = descriptor.name) !== null && _descriptor$name !== void 0 ? _descriptor$name : '',
|
|
48
|
+
type: descriptor.type
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
throw new Error("Invalid descriptor: ".concat(descriptor));
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Get the variable descriptor for a definition.
|
|
56
|
+
* @param definition Definition to get the variable descriptor from
|
|
57
|
+
* @returns Serializable VariableDescriptor object
|
|
58
|
+
*/
|
|
59
|
+
export function getVariableDescriptor(definition) {
|
|
60
|
+
var _definition$type, _definition$title;
|
|
61
|
+
return {
|
|
62
|
+
type: (_definition$type = definition.type) !== null && _definition$type !== void 0 ? _definition$type : '',
|
|
63
|
+
name: (_definition$title = definition.title) !== null && _definition$title !== void 0 ? _definition$title : definition.name,
|
|
64
|
+
id: definition.id
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Use a function to fetch an object based on provided metadata
|
|
70
|
+
* @returns Function to asynchronously fetch an object based on provided metadata
|
|
71
|
+
*/
|
|
72
|
+
export function useObjectFetcher() {
|
|
73
|
+
return useContextOrThrow(ObjectFetcherContext, 'No ObjectFetcher available in useObjectFetcher. Was code wrapped in ObjectFetcherContext.Provider?');
|
|
74
|
+
}
|
|
75
|
+
//# sourceMappingURL=useObjectFetcher.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useObjectFetcher.js","names":["useContextOrThrow","createContext","isNameVariableDescriptor","value","type","name","isIdVariableDescriptor","id","isVariableDescriptor","ObjectFetcherContext","sanitizeVariableDescriptor","descriptor","_descriptor$name","Error","concat","getVariableDescriptor","definition","_definition$type","_definition$title","title","useObjectFetcher"],"sources":["../src/useObjectFetcher.ts"],"sourcesContent":["import { VariableDescriptor, VariableDefinition } from '@deephaven/jsapi-types';\nimport { useContextOrThrow } from '@deephaven/react-hooks';\nimport { createContext } from 'react';\n\n/**\n * Descriptor for a variable by name. Used when needed to fetch an object.\n */\nexport type NameVariableDescriptor = {\n /** Type of the variable */\n type: string;\n /** Name of the variable */\n name: string;\n};\n\n/**\n * Descriptor for a variable by id. Used when needed to fetch an object.\n */\nexport type IdVariableDescriptor = {\n /** Type of the variable */\n type: string;\n /** Id of the variable */\n id: string;\n};\n\nexport function isNameVariableDescriptor(\n value: unknown\n): value is NameVariableDescriptor {\n return (\n typeof value === 'object' &&\n value != null &&\n typeof (value as NameVariableDescriptor).type === 'string' &&\n (value as NameVariableDescriptor).name != null\n );\n}\n\nexport function isIdVariableDescriptor(\n value: unknown\n): value is IdVariableDescriptor {\n return (\n typeof value === 'object' &&\n value != null &&\n typeof (value as IdVariableDescriptor).type === 'string' &&\n (value as IdVariableDescriptor).id != null\n );\n}\n\nexport function isVariableDescriptor(\n value: unknown\n): value is VariableDescriptor {\n return isNameVariableDescriptor(value) || isIdVariableDescriptor(value);\n}\n\n/**\n * Function to fetch an object based on a provided descriptor object.\n * @param descriptor Descriptor object to fetch the object from. Can be extended by a specific implementation to\n * include additional fields (such as a session ID) to uniquely identify an object.\n */\nexport type ObjectFetcher = <T = unknown>(\n descriptor: VariableDescriptor\n) => Promise<T>;\n\nexport const ObjectFetcherContext = createContext<ObjectFetcher | null>(null);\n\n/**\n * Gets a descriptor that only has the ID or name set, but not both.\n * API will throw an error if both are set when fetching from the connection.\n * @param descriptor Variable descriptor to sanitize\n * @returns Descriptor object that has either the ID or name set, but not both.\n */\nexport function sanitizeVariableDescriptor(\n descriptor: Partial<VariableDescriptor>\n): NameVariableDescriptor | IdVariableDescriptor {\n // Can't use a spread operator because of how the GWT compiled code defines properties on the object: https://github.com/gwtproject/gwt/issues/9913\n if (isIdVariableDescriptor(descriptor)) {\n return {\n id: descriptor.id,\n type: descriptor.type,\n };\n }\n if (isNameVariableDescriptor(descriptor)) {\n return {\n name: descriptor.name ?? '',\n type: descriptor.type,\n };\n }\n throw new Error(`Invalid descriptor: ${descriptor}`);\n}\n\n/**\n * Get the variable descriptor for a definition.\n * @param definition Definition to get the variable descriptor from\n * @returns Serializable VariableDescriptor object\n */\nexport function getVariableDescriptor(\n definition: VariableDefinition\n): VariableDescriptor {\n return {\n type: definition.type ?? '',\n name: definition.title ?? definition.name,\n id: definition.id,\n };\n}\n\n/**\n * Use a function to fetch an object based on provided metadata\n * @returns Function to asynchronously fetch an object based on provided metadata\n */\nexport function useObjectFetcher(): ObjectFetcher {\n return useContextOrThrow(\n ObjectFetcherContext,\n 'No ObjectFetcher available in useObjectFetcher. Was code wrapped in ObjectFetcherContext.Provider?'\n );\n}\n"],"mappings":"AACA,SAASA,iBAAiB,QAAQ,wBAAwB;AAC1D,SAASC,aAAa,QAAQ,OAAO;;AAErC;AACA;AACA;;AAQA;AACA;AACA;;AAQA,OAAO,SAASC,wBAAwBA,CACtCC,KAAc,EACmB;EACjC,OACE,OAAOA,KAAK,KAAK,QAAQ,IACzBA,KAAK,IAAI,IAAI,IACb,OAAQA,KAAK,CAA4BC,IAAI,KAAK,QAAQ,IACzDD,KAAK,CAA4BE,IAAI,IAAI,IAAI;AAElD;AAEA,OAAO,SAASC,sBAAsBA,CACpCH,KAAc,EACiB;EAC/B,OACE,OAAOA,KAAK,KAAK,QAAQ,IACzBA,KAAK,IAAI,IAAI,IACb,OAAQA,KAAK,CAA0BC,IAAI,KAAK,QAAQ,IACvDD,KAAK,CAA0BI,EAAE,IAAI,IAAI;AAE9C;AAEA,OAAO,SAASC,oBAAoBA,CAClCL,KAAc,EACe;EAC7B,OAAOD,wBAAwB,CAACC,KAAK,CAAC,IAAIG,sBAAsB,CAACH,KAAK,CAAC;AACzE;;AAEA;AACA;AACA;AACA;AACA;;AAKA,OAAO,IAAMM,oBAAoB,gBAAGR,aAAa,CAAuB,IAAI,CAAC;;AAE7E;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASS,0BAA0BA,CACxCC,UAAuC,EACQ;EAC/C;EACA,IAAIL,sBAAsB,CAACK,UAAU,CAAC,EAAE;IACtC,OAAO;MACLJ,EAAE,EAAEI,UAAU,CAACJ,EAAE;MACjBH,IAAI,EAAEO,UAAU,CAACP;IACnB,CAAC;EACH;EACA,IAAIF,wBAAwB,CAACS,UAAU,CAAC,EAAE;IAAA,IAAAC,gBAAA;IACxC,OAAO;MACLP,IAAI,GAAAO,gBAAA,GAAED,UAAU,CAACN,IAAI,cAAAO,gBAAA,cAAAA,gBAAA,GAAI,EAAE;MAC3BR,IAAI,EAAEO,UAAU,CAACP;IACnB,CAAC;EACH;EACA,MAAM,IAAIS,KAAK,wBAAAC,MAAA,CAAwBH,UAAU,CAAE,CAAC;AACtD;;AAEA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASI,qBAAqBA,CACnCC,UAA8B,EACV;EAAA,IAAAC,gBAAA,EAAAC,iBAAA;EACpB,OAAO;IACLd,IAAI,GAAAa,gBAAA,GAAED,UAAU,CAACZ,IAAI,cAAAa,gBAAA,cAAAA,gBAAA,GAAI,EAAE;IAC3BZ,IAAI,GAAAa,iBAAA,GAAEF,UAAU,CAACG,KAAK,cAAAD,iBAAA,cAAAA,iBAAA,GAAIF,UAAU,CAACX,IAAI;IACzCE,EAAE,EAAES,UAAU,CAACT;EACjB,CAAC;AACH;;AAEA;AACA;AACA;AACA;AACA,OAAO,SAASa,gBAAgBA,CAAA,EAAkB;EAChD,OAAOpB,iBAAiB,CACtBS,oBAAoB,EACpB,oGACF,CAAC;AACH"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deephaven/jsapi-bootstrap",
|
|
3
|
-
"version": "0.61.
|
|
3
|
+
"version": "0.61.2-beta.0+2cd46ce2",
|
|
4
4
|
"description": "Deephaven JSAPI Bootstrap",
|
|
5
5
|
"author": "Deephaven Data Labs LLC",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"build:sass": "sass --embed-sources --load-path=../../node_modules ./src:./dist"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@deephaven/components": "^0.61.
|
|
26
|
-
"@deephaven/jsapi-types": "^0.61.0",
|
|
27
|
-
"@deephaven/log": "^0.61.0",
|
|
28
|
-
"@deephaven/react-hooks": "^0.61.0"
|
|
25
|
+
"@deephaven/components": "^0.61.2-beta.0+2cd46ce2",
|
|
26
|
+
"@deephaven/jsapi-types": "^0.61.2-beta.0+2cd46ce2",
|
|
27
|
+
"@deephaven/log": "^0.61.2-beta.0+2cd46ce2",
|
|
28
|
+
"@deephaven/react-hooks": "^0.61.2-beta.0+2cd46ce2"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"react": "^17.x"
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "2cd46ce2d5107553d3f91933294638a5fb183245"
|
|
44
44
|
}
|