@deephaven/app-utils 0.60.1-object-fetcher.0 → 0.60.1-object-fetcher.7
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/components/ConnectionBootstrap.d.ts.map +1 -1
- package/dist/components/ConnectionBootstrap.js +4 -5
- package/dist/components/ConnectionBootstrap.js.map +1 -1
- package/dist/components/ConnectionContext.d.ts +5 -0
- package/dist/components/ConnectionContext.d.ts.map +1 -0
- package/dist/components/ConnectionContext.js +4 -0
- package/dist/components/ConnectionContext.js.map +1 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/index.js +2 -0
- package/dist/components/index.js.map +1 -1
- package/dist/components/useConnection.d.ts +9 -0
- package/dist/components/useConnection.d.ts.map +1 -0
- package/dist/components/useConnection.js +12 -0
- package/dist/components/useConnection.js.map +1 -0
- package/package.json +18 -18
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConnectionBootstrap.d.ts","sourceRoot":"","sources":["../../src/components/ConnectionBootstrap.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA2C,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"ConnectionBootstrap.d.ts","sourceRoot":"","sources":["../../src/components/ConnectionBootstrap.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA2C,MAAM,OAAO,CAAC;AAehE,MAAM,MAAM,wBAAwB,GAAG;IACrC;;;OAGG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC;AAEF;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,EAClC,QAAQ,GACT,EAAE,wBAAwB,GAAG,GAAG,CAAC,OAAO,CA0ExC;AAED,eAAe,mBAAmB,CAAC"}
|
|
@@ -2,10 +2,10 @@ 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 React, { useCallback, useEffect, useState } from 'react';
|
|
4
4
|
import { LoadingOverlay } from '@deephaven/components';
|
|
5
|
-
import {
|
|
6
|
-
import { ConnectionContext } from '@deephaven/jsapi-components';
|
|
5
|
+
import { ObjectFetcherContext, sanitizeVariableDescriptor, useApi, useClient } from '@deephaven/jsapi-bootstrap';
|
|
7
6
|
import Log from '@deephaven/log';
|
|
8
7
|
import { assertNotNull } from '@deephaven/utils';
|
|
8
|
+
import ConnectionContext from "./ConnectionContext.js";
|
|
9
9
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
10
10
|
var log = Log.module('@deephaven/app-utils.ConnectionBootstrap');
|
|
11
11
|
/**
|
|
@@ -59,10 +59,9 @@ export function ConnectionBootstrap(_ref) {
|
|
|
59
59
|
return removerFn;
|
|
60
60
|
}, [api, connection]);
|
|
61
61
|
var objectFetcher = useCallback( /*#__PURE__*/function () {
|
|
62
|
-
var _ref2 = _asyncToGenerator(function* (
|
|
62
|
+
var _ref2 = _asyncToGenerator(function* (descriptor) {
|
|
63
63
|
assertNotNull(connection, 'connection');
|
|
64
|
-
|
|
65
|
-
return connection.getObject(widget);
|
|
64
|
+
return connection.getObject(sanitizeVariableDescriptor(descriptor));
|
|
66
65
|
});
|
|
67
66
|
return function (_x) {
|
|
68
67
|
return _ref2.apply(this, arguments);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConnectionBootstrap.js","names":["React","useCallback","useEffect","useState","LoadingOverlay","
|
|
1
|
+
{"version":3,"file":"ConnectionBootstrap.js","names":["React","useCallback","useEffect","useState","LoadingOverlay","ObjectFetcherContext","sanitizeVariableDescriptor","useApi","useClient","Log","assertNotNull","ConnectionContext","jsx","_jsx","log","module","ConnectionBootstrap","_ref","children","api","client","error","setError","connection","setConnection","initConnection","isCanceled","loadConnection","_loadConnection","apply","arguments","_asyncToGenerator","newConnection","getAsIdeConnection","e","listenForShutdown","handleShutdown","event","detail","info","concat","JSON","stringify","removerFn","addEventListener","IdeConnection","EVENT_SHUTDOWN","objectFetcher","_ref2","descriptor","getObject","_x","isLoading","errorMessage","undefined","Provider","value"],"sources":["../../src/components/ConnectionBootstrap.tsx"],"sourcesContent":["import React, { useCallback, useEffect, useState } from 'react';\nimport { LoadingOverlay } from '@deephaven/components';\nimport {\n ObjectFetcherContext,\n sanitizeVariableDescriptor,\n useApi,\n useClient,\n} from '@deephaven/jsapi-bootstrap';\nimport type { IdeConnection, VariableDescriptor } from '@deephaven/jsapi-types';\nimport Log from '@deephaven/log';\nimport { assertNotNull } from '@deephaven/utils';\nimport ConnectionContext from './ConnectionContext';\n\nconst log = Log.module('@deephaven/app-utils.ConnectionBootstrap');\n\nexport type ConnectionBootstrapProps = {\n /**\n * The children to render wrapped with the ConnectionContext.\n * Will not render children until the connection is created.\n */\n children: React.ReactNode;\n};\n\n/**\n * ConnectionBootstrap component. Handles initializing the connection.\n */\nexport function ConnectionBootstrap({\n children,\n}: ConnectionBootstrapProps): JSX.Element {\n const api = useApi();\n const client = useClient();\n const [error, setError] = useState<unknown>();\n const [connection, setConnection] = useState<IdeConnection>();\n useEffect(\n function initConnection() {\n let isCanceled = false;\n async function loadConnection(): Promise<void> {\n try {\n const newConnection = await client.getAsIdeConnection();\n if (isCanceled) {\n return;\n }\n setConnection(newConnection);\n } catch (e) {\n if (isCanceled) {\n return;\n }\n setError(e);\n }\n }\n loadConnection();\n return () => {\n isCanceled = true;\n };\n },\n [api, client]\n );\n\n useEffect(\n function listenForShutdown() {\n if (connection == null) return;\n\n function handleShutdown(event: CustomEvent): void {\n const { detail } = event;\n log.info('Shutdown', `${JSON.stringify(detail)}`);\n setError(`Server shutdown: ${detail ?? 'Unknown reason'}`);\n }\n\n const removerFn = connection.addEventListener(\n api.IdeConnection.EVENT_SHUTDOWN,\n handleShutdown\n );\n return removerFn;\n },\n [api, connection]\n );\n\n const objectFetcher = useCallback(\n async (descriptor: VariableDescriptor) => {\n assertNotNull(connection, 'connection');\n return connection.getObject(sanitizeVariableDescriptor(descriptor));\n },\n [connection]\n );\n\n if (connection == null || error != null) {\n return (\n <LoadingOverlay\n data-testid=\"connection-bootstrap-loading\"\n isLoading={connection == null}\n errorMessage={error != null ? `${error}` : undefined}\n />\n );\n }\n\n return (\n <ConnectionContext.Provider value={connection}>\n <ObjectFetcherContext.Provider value={objectFetcher}>\n {children}\n </ObjectFetcherContext.Provider>\n </ConnectionContext.Provider>\n );\n}\n\nexport default ConnectionBootstrap;\n"],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ConnectionContext.d.ts","sourceRoot":"","sources":["../../src/components/ConnectionContext.ts"],"names":[],"mappings":";AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAE5D,eAAO,MAAM,iBAAiB,+CAA4C,CAAC;AAE3E,eAAe,iBAAiB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ConnectionContext.js","names":["createContext","ConnectionContext"],"sources":["../../src/components/ConnectionContext.ts"],"sourcesContent":["import { createContext } from 'react';\nimport type { IdeConnection } from '@deephaven/jsapi-types';\n\nexport const ConnectionContext = createContext<IdeConnection | null>(null);\n\nexport default ConnectionContext;\n"],"mappings":"AAAA,SAASA,aAAa,QAAQ,OAAO;AAGrC,OAAO,IAAMC,iBAAiB,gBAAGD,aAAa,CAAuB,IAAI,CAAC;AAE1E,eAAeC,iBAAiB"}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
export * from './AppBootstrap';
|
|
2
2
|
export * from './AuthBootstrap';
|
|
3
3
|
export * from './ConnectionBootstrap';
|
|
4
|
+
export * from './ConnectionContext';
|
|
4
5
|
export * from './FontBootstrap';
|
|
5
6
|
export * from './FontsLoaded';
|
|
6
7
|
export * from './PluginsBootstrap';
|
|
7
8
|
export * from './ThemeBootstrap';
|
|
9
|
+
export * from './useConnection';
|
|
8
10
|
export * from './useServerConfig';
|
|
9
11
|
export * from './useUser';
|
|
10
12
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC"}
|
package/dist/components/index.js
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
export * from "./AppBootstrap.js";
|
|
2
2
|
export * from "./AuthBootstrap.js";
|
|
3
3
|
export * from "./ConnectionBootstrap.js";
|
|
4
|
+
export * from "./ConnectionContext.js";
|
|
4
5
|
export * from "./FontBootstrap.js";
|
|
5
6
|
export * from "./FontsLoaded.js";
|
|
6
7
|
export * from "./PluginsBootstrap.js";
|
|
7
8
|
export * from "./ThemeBootstrap.js";
|
|
9
|
+
export * from "./useConnection.js";
|
|
8
10
|
export * from "./useServerConfig.js";
|
|
9
11
|
export * from "./useUser.js";
|
|
10
12
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":[],"sources":["../../src/components/index.ts"],"sourcesContent":["export * from './AppBootstrap';\nexport * from './AuthBootstrap';\nexport * from './ConnectionBootstrap';\nexport * from './FontBootstrap';\nexport * from './FontsLoaded';\nexport * from './PluginsBootstrap';\nexport * from './ThemeBootstrap';\nexport * from './useServerConfig';\nexport * from './useUser';\n"],"mappings":""}
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["../../src/components/index.ts"],"sourcesContent":["export * from './AppBootstrap';\nexport * from './AuthBootstrap';\nexport * from './ConnectionBootstrap';\nexport * from './ConnectionContext';\nexport * from './FontBootstrap';\nexport * from './FontsLoaded';\nexport * from './PluginsBootstrap';\nexport * from './ThemeBootstrap';\nexport * from './useConnection';\nexport * from './useServerConfig';\nexport * from './useUser';\n"],"mappings":""}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { IdeConnection } from '@deephaven/jsapi-types';
|
|
2
|
+
/**
|
|
3
|
+
* Retrieve the connection for the current context.
|
|
4
|
+
*
|
|
5
|
+
* @returns Connection for the current context
|
|
6
|
+
*/
|
|
7
|
+
export declare function useConnection(): IdeConnection;
|
|
8
|
+
export default useConnection;
|
|
9
|
+
//# sourceMappingURL=useConnection.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useConnection.d.ts","sourceRoot":"","sources":["../../src/components/useConnection.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAI5D;;;;GAIG;AACH,wBAAgB,aAAa,IAAI,aAAa,CAK7C;AAED,eAAe,aAAa,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { useContextOrThrow } from '@deephaven/react-hooks';
|
|
2
|
+
import { ConnectionContext } from "./ConnectionContext.js";
|
|
3
|
+
/**
|
|
4
|
+
* Retrieve the connection for the current context.
|
|
5
|
+
*
|
|
6
|
+
* @returns Connection for the current context
|
|
7
|
+
*/
|
|
8
|
+
export function useConnection() {
|
|
9
|
+
return useContextOrThrow(ConnectionContext, 'No IdeConnection available in useConnection. Was code wrapped in ConnectionContext.Provider?');
|
|
10
|
+
}
|
|
11
|
+
export default useConnection;
|
|
12
|
+
//# sourceMappingURL=useConnection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useConnection.js","names":["useContextOrThrow","ConnectionContext","useConnection"],"sources":["../../src/components/useConnection.ts"],"sourcesContent":["import type { IdeConnection } from '@deephaven/jsapi-types';\nimport { useContextOrThrow } from '@deephaven/react-hooks';\nimport { ConnectionContext } from './ConnectionContext';\n\n/**\n * Retrieve the connection for the current context.\n *\n * @returns Connection for the current context\n */\nexport function useConnection(): IdeConnection {\n return useContextOrThrow(\n ConnectionContext,\n 'No IdeConnection available in useConnection. Was code wrapped in ConnectionContext.Provider?'\n );\n}\n\nexport default useConnection;\n"],"mappings":"AACA,SAASA,iBAAiB,QAAQ,wBAAwB;AAAC,SAClDC,iBAAiB;AAE1B;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,aAAaA,CAAA,EAAkB;EAC7C,OAAOF,iBAAiB,CACtBC,iBAAiB,EACjB,8FACF,CAAC;AACH;AAEA,eAAeC,aAAa"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deephaven/app-utils",
|
|
3
|
-
"version": "0.60.1-object-fetcher.
|
|
3
|
+
"version": "0.60.1-object-fetcher.7+443993f3",
|
|
4
4
|
"description": "Deephaven App Utils",
|
|
5
5
|
"author": "Deephaven Data Labs LLC",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -29,22 +29,22 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@adobe/react-spectrum": "^3.29.0",
|
|
32
|
-
"@deephaven/auth-plugins": "^0.60.1-object-fetcher.
|
|
33
|
-
"@deephaven/chart": "^0.60.1-object-fetcher.
|
|
34
|
-
"@deephaven/components": "^0.60.1-object-fetcher.
|
|
35
|
-
"@deephaven/console": "^0.60.1-object-fetcher.
|
|
36
|
-
"@deephaven/dashboard": "^0.60.1-object-fetcher.
|
|
37
|
-
"@deephaven/icons": "^0.60.1-object-fetcher.
|
|
38
|
-
"@deephaven/iris-grid": "^0.60.1-object-fetcher.
|
|
39
|
-
"@deephaven/jsapi-bootstrap": "^0.60.1-object-fetcher.
|
|
40
|
-
"@deephaven/jsapi-components": "^0.60.1-object-fetcher.
|
|
41
|
-
"@deephaven/jsapi-types": "^0.60.1-object-fetcher.
|
|
42
|
-
"@deephaven/jsapi-utils": "^0.60.1-object-fetcher.
|
|
43
|
-
"@deephaven/log": "^0.60.1-object-fetcher.
|
|
44
|
-
"@deephaven/plugin": "^0.60.1-object-fetcher.
|
|
45
|
-
"@deephaven/react-hooks": "^0.60.1-object-fetcher.
|
|
46
|
-
"@deephaven/redux": "^0.60.1-object-fetcher.
|
|
47
|
-
"@deephaven/utils": "^0.60.1-object-fetcher.
|
|
32
|
+
"@deephaven/auth-plugins": "^0.60.1-object-fetcher.7+443993f3",
|
|
33
|
+
"@deephaven/chart": "^0.60.1-object-fetcher.7+443993f3",
|
|
34
|
+
"@deephaven/components": "^0.60.1-object-fetcher.7+443993f3",
|
|
35
|
+
"@deephaven/console": "^0.60.1-object-fetcher.7+443993f3",
|
|
36
|
+
"@deephaven/dashboard": "^0.60.1-object-fetcher.7+443993f3",
|
|
37
|
+
"@deephaven/icons": "^0.60.1-object-fetcher.7+443993f3",
|
|
38
|
+
"@deephaven/iris-grid": "^0.60.1-object-fetcher.7+443993f3",
|
|
39
|
+
"@deephaven/jsapi-bootstrap": "^0.60.1-object-fetcher.7+443993f3",
|
|
40
|
+
"@deephaven/jsapi-components": "^0.60.1-object-fetcher.7+443993f3",
|
|
41
|
+
"@deephaven/jsapi-types": "^0.60.1-object-fetcher.7+443993f3",
|
|
42
|
+
"@deephaven/jsapi-utils": "^0.60.1-object-fetcher.7+443993f3",
|
|
43
|
+
"@deephaven/log": "^0.60.1-object-fetcher.7+443993f3",
|
|
44
|
+
"@deephaven/plugin": "^0.60.1-object-fetcher.7+443993f3",
|
|
45
|
+
"@deephaven/react-hooks": "^0.60.1-object-fetcher.7+443993f3",
|
|
46
|
+
"@deephaven/redux": "^0.60.1-object-fetcher.7+443993f3",
|
|
47
|
+
"@deephaven/utils": "^0.60.1-object-fetcher.7+443993f3",
|
|
48
48
|
"@paciolan/remote-component": "2.13.0",
|
|
49
49
|
"@paciolan/remote-module-loader": "^3.0.2",
|
|
50
50
|
"fira": "mozilla/fira#4.202"
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"access": "public"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "443993f3fcc4a7501c154248468f65ff23f0ef23"
|
|
68
68
|
}
|