@deephaven/app-utils 0.67.1-beta.0 → 0.67.1-beta.2
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/AuthBootstrap.d.ts.map +1 -1
- package/dist/components/AuthBootstrap.js.map +1 -1
- package/dist/components/ConnectionBootstrap.js.map +1 -1
- package/dist/components/ConnectionContext.d.ts +2 -2
- package/dist/components/ConnectionContext.d.ts.map +1 -1
- package/dist/components/ConnectionContext.js.map +1 -1
- package/dist/components/ServerConfigBootstrap.d.ts.map +1 -1
- package/dist/components/ServerConfigBootstrap.js.map +1 -1
- package/dist/components/useConnection.d.ts +2 -2
- package/dist/components/useConnection.d.ts.map +1 -1
- package/dist/components/useConnection.js.map +1 -1
- package/dist/utils/ConnectUtils.d.ts +2 -2
- package/dist/utils/ConnectUtils.d.ts.map +1 -1
- package/dist/utils/ConnectUtils.js.map +1 -1
- package/package.json +19 -19
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AuthBootstrap.d.ts","sourceRoot":"","sources":["../../src/components/AuthBootstrap.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmD,MAAM,OAAO,CAAC;AAcxE,MAAM,MAAM,kBAAkB,GAAG;IAC/B;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC;AAeF;;GAEG;AACH,wBAAgB,aAAa,CAAC,EAAE,QAAQ,EAAE,EAAE,kBAAkB,GAAG,GAAG,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"AuthBootstrap.d.ts","sourceRoot":"","sources":["../../src/components/AuthBootstrap.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmD,MAAM,OAAO,CAAC;AAcxE,MAAM,MAAM,kBAAkB,GAAG;IAC/B;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC;AAeF;;GAEG;AACH,wBAAgB,aAAa,CAAC,EAAE,QAAQ,EAAE,EAAE,kBAAkB,GAAG,GAAG,CAAC,OAAO,CAgE3E;AAED,eAAe,aAAa,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AuthBootstrap.js","names":["React","useContext","useEffect","useMemo","useState","AuthPluginAnonymous","AuthPluginParent","AuthPluginPsk","LoadingOverlay","useClient","getErrorMessage","PluginsContext","getAuthPluginComponent","LoginNotifier","jsx","_jsx","Fragment","_Fragment","jsxs","_jsxs","CORE_AUTH_PLUGINS","Map","AuthPlugin","AuthBootstrap","_ref","children","client","plugins","authConfig","setAuthConfig","error","setError","initAuthConfigValues","isCanceled","loadAuthConfigValues","_loadAuthConfigValues","apply","arguments","_asyncToGenerator","newAuthConfigValues","getAuthConfigValues","e","AuthComponent","undefined","isLoading","errorMessage","authConfigValues"],"sources":["../../src/components/AuthBootstrap.tsx"],"sourcesContent":["import React, { useContext, useEffect, useMemo, useState } from 'react';\nimport {\n AuthConfigMap,\n AuthPluginAnonymous,\n AuthPluginParent,\n AuthPluginPsk,\n} from '@deephaven/auth-plugins';\nimport { LoadingOverlay } from '@deephaven/components';\nimport { useClient } from '@deephaven/jsapi-bootstrap';\nimport { getErrorMessage } from '@deephaven/utils';\nimport { PluginsContext } from '@deephaven/plugin';\nimport { getAuthPluginComponent } from '../plugins';\nimport LoginNotifier from './LoginNotifier';\n\nexport type AuthBootstrapProps = {\n /**\n * The children to render after authentication is completed.\n */\n children: React.ReactNode;\n};\n\n/** Core auth plugins that are always loaded */\nconst CORE_AUTH_PLUGINS = new Map([\n [\n '@deephaven/auth-plugins.AuthPluginParent',\n { AuthPlugin: AuthPluginParent },\n ],\n ['@deephaven/auth-plugins.AuthPluginPsk', { AuthPlugin: AuthPluginPsk }],\n [\n '@deephaven/auth-plugins.AuthPluginAnonymous',\n { AuthPlugin: AuthPluginAnonymous },\n ],\n]);\n\n/**\n * AuthBootstrap component. Handles displaying the auth plugin and authenticating.\n */\nexport function AuthBootstrap({ children }: AuthBootstrapProps): JSX.Element {\n const client = useClient();\n // `useContext` instead of `usePlugins` so that we don't have to wait for the plugins to load\n // We want to load the auth config values in parallel with the plugins\n const plugins = useContext(PluginsContext);\n const [authConfig, setAuthConfig] = useState<AuthConfigMap>();\n const [error, setError] = useState<unknown>();\n\n useEffect(\n function initAuthConfigValues() {\n let isCanceled = false;\n async function loadAuthConfigValues(): Promise<void> {\n try {\n const newAuthConfigValues = await client.getAuthConfigValues();\n if (!isCanceled) {\n setAuthConfig(new Map(newAuthConfigValues));\n }\n } catch (e) {\n if (!isCanceled) {\n setError(e);\n }\n }\n }\n loadAuthConfigValues();\n return () => {\n isCanceled = true;\n };\n },\n [client]\n );\n\n const AuthComponent = useMemo(() => {\n if (plugins == null || authConfig == null) {\n return undefined;\n }\n\n try {\n return getAuthPluginComponent(plugins, authConfig, CORE_AUTH_PLUGINS);\n } catch (e) {\n setError(e);\n }\n }, [authConfig, plugins]);\n\n const isLoading = AuthComponent == null || authConfig == null;\n\n if (isLoading || error != null) {\n return (\n <LoadingOverlay\n isLoading={isLoading && error == null}\n errorMessage={getErrorMessage(error)}\n />\n );\n }\n return (\n <AuthComponent authConfigValues={authConfig}>\n <>\n <LoginNotifier />\n {children}\n </>\n </AuthComponent>\n );\n}\n\nexport default AuthBootstrap;\n"],"mappings":";;AAAA,OAAOA,KAAK,IAAIC,UAAU,EAAEC,SAAS,EAAEC,OAAO,EAAEC,QAAQ,QAAQ,OAAO;AACvE,SAEEC,mBAAmB,EACnBC,gBAAgB,EAChBC,aAAa,QACR,yBAAyB;AAChC,SAASC,cAAc,QAAQ,uBAAuB;AACtD,SAASC,SAAS,QAAQ,4BAA4B;AACtD,SAASC,eAAe,QAAQ,kBAAkB;AAClD,SAASC,cAAc,QAAQ,mBAAmB;AAAC,SAC1CC,sBAAsB;AAAA,OACxBC,aAAa;AAAA,SAAAC,GAAA,IAAAC,IAAA;AAAA,SAAAC,QAAA,IAAAC,SAAA;AAAA,SAAAC,IAAA,IAAAC,KAAA;AASpB;AACA,IAAMC,iBAAiB,GAAG,IAAIC,GAAG,CAAC,CAChC,CACE,0CAA0C,EAC1C;EAAEC,UAAU,EAAEhB;AAAiB,CAAC,CACjC,EACD,CAAC,uCAAuC,EAAE;EAAEgB,UAAU,EAAEf;AAAc,CAAC,CAAC,EACxE,CACE,6CAA6C,EAC7C;EAAEe,UAAU,EAAEjB;AAAoB,CAAC,CACpC,CACF,CAAC;;AAEF;AACA;AACA;AACA,OAAO,SAASkB,aAAaA,CAAAC,IAAA,EAAgD;EAAA,IAA/C;IAAEC;EAA6B,CAAC,GAAAD,IAAA;EAC5D,IAAME,MAAM,GAAGjB,SAAS,CAAC,CAAC;EAC1B;EACA;EACA,IAAMkB,OAAO,GAAG1B,UAAU,CAACU,cAAc,CAAC;EAC1C,IAAM,CAACiB,UAAU,EAAEC,aAAa,CAAC,GAAGzB,QAAQ,CAAgB,CAAC;EAC7D,IAAM,CAAC0B,KAAK,EAAEC,QAAQ,CAAC,GAAG3B,QAAQ,CAAU,CAAC;EAE7CF,SAAS,CACP,SAAS8B,oBAAoBA,CAAA,EAAG;IAC9B,IAAIC,UAAU,GAAG,KAAK;IAAC,SACRC,oBAAoBA,CAAA;MAAA,OAAAC,qBAAA,CAAAC,KAAA,OAAAC,SAAA;IAAA;IAAA,SAAAF,sBAAA;MAAAA,qBAAA,GAAAG,iBAAA,CAAnC,aAAqD;QACnD,IAAI;UACF,IAAMC,mBAAmB,
|
|
1
|
+
{"version":3,"file":"AuthBootstrap.js","names":["React","useContext","useEffect","useMemo","useState","AuthPluginAnonymous","AuthPluginParent","AuthPluginPsk","LoadingOverlay","useClient","getErrorMessage","PluginsContext","getAuthPluginComponent","LoginNotifier","jsx","_jsx","Fragment","_Fragment","jsxs","_jsxs","CORE_AUTH_PLUGINS","Map","AuthPlugin","AuthBootstrap","_ref","children","client","plugins","authConfig","setAuthConfig","error","setError","initAuthConfigValues","isCanceled","loadAuthConfigValues","_loadAuthConfigValues","apply","arguments","_asyncToGenerator","newAuthConfigValues","getAuthConfigValues","e","AuthComponent","undefined","isLoading","errorMessage","authConfigValues"],"sources":["../../src/components/AuthBootstrap.tsx"],"sourcesContent":["import React, { useContext, useEffect, useMemo, useState } from 'react';\nimport {\n AuthConfigMap,\n AuthPluginAnonymous,\n AuthPluginParent,\n AuthPluginPsk,\n} from '@deephaven/auth-plugins';\nimport { LoadingOverlay } from '@deephaven/components';\nimport { useClient } from '@deephaven/jsapi-bootstrap';\nimport { getErrorMessage } from '@deephaven/utils';\nimport { PluginsContext } from '@deephaven/plugin';\nimport { getAuthPluginComponent } from '../plugins';\nimport LoginNotifier from './LoginNotifier';\n\nexport type AuthBootstrapProps = {\n /**\n * The children to render after authentication is completed.\n */\n children: React.ReactNode;\n};\n\n/** Core auth plugins that are always loaded */\nconst CORE_AUTH_PLUGINS = new Map([\n [\n '@deephaven/auth-plugins.AuthPluginParent',\n { AuthPlugin: AuthPluginParent },\n ],\n ['@deephaven/auth-plugins.AuthPluginPsk', { AuthPlugin: AuthPluginPsk }],\n [\n '@deephaven/auth-plugins.AuthPluginAnonymous',\n { AuthPlugin: AuthPluginAnonymous },\n ],\n]);\n\n/**\n * AuthBootstrap component. Handles displaying the auth plugin and authenticating.\n */\nexport function AuthBootstrap({ children }: AuthBootstrapProps): JSX.Element {\n const client = useClient();\n // `useContext` instead of `usePlugins` so that we don't have to wait for the plugins to load\n // We want to load the auth config values in parallel with the plugins\n const plugins = useContext(PluginsContext);\n const [authConfig, setAuthConfig] = useState<AuthConfigMap>();\n const [error, setError] = useState<unknown>();\n\n useEffect(\n function initAuthConfigValues() {\n let isCanceled = false;\n async function loadAuthConfigValues(): Promise<void> {\n try {\n const newAuthConfigValues = (await client.getAuthConfigValues()) as [\n string,\n string,\n ][];\n if (!isCanceled) {\n setAuthConfig(new Map(newAuthConfigValues));\n }\n } catch (e) {\n if (!isCanceled) {\n setError(e);\n }\n }\n }\n loadAuthConfigValues();\n return () => {\n isCanceled = true;\n };\n },\n [client]\n );\n\n const AuthComponent = useMemo(() => {\n if (plugins == null || authConfig == null) {\n return undefined;\n }\n\n try {\n return getAuthPluginComponent(plugins, authConfig, CORE_AUTH_PLUGINS);\n } catch (e) {\n setError(e);\n }\n }, [authConfig, plugins]);\n\n const isLoading = AuthComponent == null || authConfig == null;\n\n if (isLoading || error != null) {\n return (\n <LoadingOverlay\n isLoading={isLoading && error == null}\n errorMessage={getErrorMessage(error)}\n />\n );\n }\n return (\n <AuthComponent authConfigValues={authConfig}>\n <>\n <LoginNotifier />\n {children}\n </>\n </AuthComponent>\n );\n}\n\nexport default AuthBootstrap;\n"],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
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 {
|
|
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 { dh } 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<dh.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: dh.ide.VariableDescriptor) => {\n assertNotNull(connection, 'No connection available to fetch object with');\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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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
3
|
-
export declare const ConnectionContext: import("react").Context<IdeConnection | null>;
|
|
2
|
+
import type { dh } from '@deephaven/jsapi-types';
|
|
3
|
+
export declare const ConnectionContext: import("react").Context<dh.IdeConnection | null>;
|
|
4
4
|
export default ConnectionContext;
|
|
5
5
|
//# sourceMappingURL=ConnectionContext.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConnectionContext.d.ts","sourceRoot":"","sources":["../../src/components/ConnectionContext.ts"],"names":[],"mappings":";AACA,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"ConnectionContext.d.ts","sourceRoot":"","sources":["../../src/components/ConnectionContext.ts"],"names":[],"mappings":";AACA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,wBAAwB,CAAC;AAEjD,eAAO,MAAM,iBAAiB,kDAA+C,CAAC;AAE9E,eAAe,iBAAiB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConnectionContext.js","names":["createContext","ConnectionContext"],"sources":["../../src/components/ConnectionContext.ts"],"sourcesContent":["import { createContext } from 'react';\nimport type {
|
|
1
|
+
{"version":3,"file":"ConnectionContext.js","names":["createContext","ConnectionContext"],"sources":["../../src/components/ConnectionContext.ts"],"sourcesContent":["import { createContext } from 'react';\nimport type { dh } from '@deephaven/jsapi-types';\n\nexport const ConnectionContext = createContext<dh.IdeConnection | null>(null);\n\nexport default ConnectionContext;\n"],"mappings":"AAAA,SAASA,aAAa,QAAQ,OAAO;AAGrC,OAAO,IAAMC,iBAAiB,gBAAGD,aAAa,CAA0B,IAAI,CAAC;AAE7E,eAAeC,iBAAiB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ServerConfigBootstrap.d.ts","sourceRoot":"","sources":["../../src/components/ServerConfigBootstrap.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6C,MAAM,OAAO,CAAC;AAKlE,eAAO,MAAM,mBAAmB,2CAE/B,CAAC;AAEF,MAAM,MAAM,0BAA0B,GAAG;IACvC;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC;AAEF;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,EACpC,QAAQ,GACT,EAAE,0BAA0B,GAAG,GAAG,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"ServerConfigBootstrap.d.ts","sourceRoot":"","sources":["../../src/components/ServerConfigBootstrap.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6C,MAAM,OAAO,CAAC;AAKlE,eAAO,MAAM,mBAAmB,2CAE/B,CAAC;AAEF,MAAM,MAAM,0BAA0B,GAAG;IACvC;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC;AAEF;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,EACpC,QAAQ,GACT,EAAE,0BAA0B,GAAG,GAAG,CAAC,OAAO,CA6C1C;AAED,eAAe,qBAAqB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ServerConfigBootstrap.js","names":["React","createContext","useEffect","useState","LoadingOverlay","useClient","getErrorMessage","jsx","_jsx","ServerConfigContext","ServerConfigBootstrap","_ref","children","client","serverConfig","setServerConfig","error","setError","initServerConfigValues","isCanceled","loadServerConfigValues","_loadServerConfigValues","apply","arguments","_asyncToGenerator","newServerConfigValues","getServerConfigValues","Map","e","isLoading","errorMessage","Provider","value"],"sources":["../../src/components/ServerConfigBootstrap.tsx"],"sourcesContent":["import React, { createContext, useEffect, useState } from 'react';\nimport { LoadingOverlay } from '@deephaven/components';\nimport { useClient } from '@deephaven/jsapi-bootstrap';\nimport { getErrorMessage } from '@deephaven/utils';\n\nexport const ServerConfigContext = createContext<Map<string, string> | null>(\n null\n);\n\nexport type ServerConfigBootstrapProps = {\n /**\n * The children to render after server config is loaded.\n */\n children: React.ReactNode;\n};\n\n/**\n * ServerConfigBootstrap component. Handles loading the server config.\n */\nexport function ServerConfigBootstrap({\n children,\n}: ServerConfigBootstrapProps): JSX.Element {\n const client = useClient();\n const [serverConfig, setServerConfig] = useState<Map<string, string>>();\n const [error, setError] = useState<unknown>();\n\n useEffect(\n function initServerConfigValues() {\n let isCanceled = false;\n async function loadServerConfigValues(): Promise<void> {\n try {\n const newServerConfigValues
|
|
1
|
+
{"version":3,"file":"ServerConfigBootstrap.js","names":["React","createContext","useEffect","useState","LoadingOverlay","useClient","getErrorMessage","jsx","_jsx","ServerConfigContext","ServerConfigBootstrap","_ref","children","client","serverConfig","setServerConfig","error","setError","initServerConfigValues","isCanceled","loadServerConfigValues","_loadServerConfigValues","apply","arguments","_asyncToGenerator","newServerConfigValues","getServerConfigValues","Map","e","isLoading","errorMessage","Provider","value"],"sources":["../../src/components/ServerConfigBootstrap.tsx"],"sourcesContent":["import React, { createContext, useEffect, useState } from 'react';\nimport { LoadingOverlay } from '@deephaven/components';\nimport { useClient } from '@deephaven/jsapi-bootstrap';\nimport { getErrorMessage } from '@deephaven/utils';\n\nexport const ServerConfigContext = createContext<Map<string, string> | null>(\n null\n);\n\nexport type ServerConfigBootstrapProps = {\n /**\n * The children to render after server config is loaded.\n */\n children: React.ReactNode;\n};\n\n/**\n * ServerConfigBootstrap component. Handles loading the server config.\n */\nexport function ServerConfigBootstrap({\n children,\n}: ServerConfigBootstrapProps): JSX.Element {\n const client = useClient();\n const [serverConfig, setServerConfig] = useState<Map<string, string>>();\n const [error, setError] = useState<unknown>();\n\n useEffect(\n function initServerConfigValues() {\n let isCanceled = false;\n async function loadServerConfigValues(): Promise<void> {\n try {\n const newServerConfigValues =\n (await client.getServerConfigValues()) as [string, string][];\n if (!isCanceled) {\n setServerConfig(new Map(newServerConfigValues));\n }\n } catch (e) {\n if (!isCanceled) {\n setError(e);\n }\n }\n }\n loadServerConfigValues();\n return () => {\n isCanceled = true;\n };\n },\n [client]\n );\n\n const isLoading = serverConfig == null;\n\n if (isLoading || error != null) {\n return (\n <LoadingOverlay\n isLoading={isLoading && error == null}\n errorMessage={getErrorMessage(error)}\n />\n );\n }\n\n return (\n <ServerConfigContext.Provider value={serverConfig}>\n {children}\n </ServerConfigContext.Provider>\n );\n}\n\nexport default ServerConfigBootstrap;\n"],"mappings":";;AAAA,OAAOA,KAAK,IAAIC,aAAa,EAAEC,SAAS,EAAEC,QAAQ,QAAQ,OAAO;AACjE,SAASC,cAAc,QAAQ,uBAAuB;AACtD,SAASC,SAAS,QAAQ,4BAA4B;AACtD,SAASC,eAAe,QAAQ,kBAAkB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAEnD,OAAO,IAAMC,mBAAmB,gBAAGR,aAAa,CAC9C,IACF,CAAC;AASD;AACA;AACA;AACA,OAAO,SAASS,qBAAqBA,CAAAC,IAAA,EAEO;EAAA,IAFN;IACpCC;EAC0B,CAAC,GAAAD,IAAA;EAC3B,IAAME,MAAM,GAAGR,SAAS,CAAC,CAAC;EAC1B,IAAM,CAACS,YAAY,EAAEC,eAAe,CAAC,GAAGZ,QAAQ,CAAsB,CAAC;EACvE,IAAM,CAACa,KAAK,EAAEC,QAAQ,CAAC,GAAGd,QAAQ,CAAU,CAAC;EAE7CD,SAAS,CACP,SAASgB,sBAAsBA,CAAA,EAAG;IAChC,IAAIC,UAAU,GAAG,KAAK;IAAC,SACRC,sBAAsBA,CAAA;MAAA,OAAAC,uBAAA,CAAAC,KAAA,OAAAC,SAAA;IAAA;IAAA,SAAAF,wBAAA;MAAAA,uBAAA,GAAAG,iBAAA,CAArC,aAAuD;QACrD,IAAI;UACF,IAAMC,qBAAqB,SAClBZ,MAAM,CAACa,qBAAqB,CAAC,CAAwB;UAC9D,IAAI,CAACP,UAAU,EAAE;YACfJ,eAAe,CAAC,IAAIY,GAAG,CAACF,qBAAqB,CAAC,CAAC;UACjD;QACF,CAAC,CAAC,OAAOG,CAAC,EAAE;UACV,IAAI,CAACT,UAAU,EAAE;YACfF,QAAQ,CAACW,CAAC,CAAC;UACb;QACF;MACF,CAAC;MAAA,OAAAP,uBAAA,CAAAC,KAAA,OAAAC,SAAA;IAAA;IACDH,sBAAsB,CAAC,CAAC;IACxB,OAAO,MAAM;MACXD,UAAU,GAAG,IAAI;IACnB,CAAC;EACH,CAAC,EACD,CAACN,MAAM,CACT,CAAC;EAED,IAAMgB,SAAS,GAAGf,YAAY,IAAI,IAAI;EAEtC,IAAIe,SAAS,IAAIb,KAAK,IAAI,IAAI,EAAE;IAC9B,oBACER,IAAA,CAACJ,cAAc;MACbyB,SAAS,EAAEA,SAAS,IAAIb,KAAK,IAAI,IAAK;MACtCc,YAAY,EAAExB,eAAe,CAACU,KAAK;IAAE,CACtC,CAAC;EAEN;EAEA,oBACER,IAAA,CAACC,mBAAmB,CAACsB,QAAQ;IAACC,KAAK,EAAElB,YAAa;IAAAF,QAAA,EAC/CA;EAAQ,CACmB,CAAC;AAEnC;AAEA,eAAeF,qBAAqB"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { dh } from '@deephaven/jsapi-types';
|
|
2
2
|
/**
|
|
3
3
|
* Retrieve the connection for the current context.
|
|
4
4
|
*
|
|
5
5
|
* @returns Connection for the current context
|
|
6
6
|
*/
|
|
7
|
-
export declare function useConnection(): IdeConnection;
|
|
7
|
+
export declare function useConnection(): dh.IdeConnection;
|
|
8
8
|
export default useConnection;
|
|
9
9
|
//# sourceMappingURL=useConnection.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useConnection.d.ts","sourceRoot":"","sources":["../../src/components/useConnection.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"useConnection.d.ts","sourceRoot":"","sources":["../../src/components/useConnection.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,wBAAwB,CAAC;AAIjD;;;;GAIG;AACH,wBAAgB,aAAa,IAAI,EAAE,CAAC,aAAa,CAKhD;AAED,eAAe,aAAa,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useConnection.js","names":["useContextOrThrow","ConnectionContext","useConnection"],"sources":["../../src/components/useConnection.ts"],"sourcesContent":["import type {
|
|
1
|
+
{"version":3,"file":"useConnection.js","names":["useContextOrThrow","ConnectionContext","useConnection"],"sources":["../../src/components/useConnection.ts"],"sourcesContent":["import type { dh } 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(): dh.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,EAAqB;EAChD,OAAOF,iBAAiB,CACtBC,iBAAiB,EACjB,8FACF,CAAC;AACH;AAEA,eAAeC,aAAa"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { dh } from '@deephaven/jsapi-types';
|
|
2
2
|
/**
|
|
3
3
|
* Get the base URL of the API
|
|
4
4
|
* @param apiUrl API URL
|
|
@@ -10,5 +10,5 @@ export declare function getBaseUrl(apiUrl: string): URL;
|
|
|
10
10
|
* @returns Envoy prefix header value
|
|
11
11
|
*/
|
|
12
12
|
export declare function getEnvoyPrefix(): string | null;
|
|
13
|
-
export declare function getConnectOptions(): ConnectOptions;
|
|
13
|
+
export declare function getConnectOptions(): dh.ConnectOptions;
|
|
14
14
|
//# sourceMappingURL=ConnectUtils.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConnectUtils.d.ts","sourceRoot":"","sources":["../../src/utils/ConnectUtils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"ConnectUtils.d.ts","sourceRoot":"","sources":["../../src/utils/ConnectUtils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,wBAAwB,CAAC;AAEjD;;;;GAIG;AACH,wBAAgB,UAAU,CAAC,MAAM,EAAE,MAAM,GAAG,GAAG,CAE9C;AAED;;;GAGG;AACH,wBAAgB,cAAc,IAAI,MAAM,GAAG,IAAI,CAG9C;AAED,wBAAgB,iBAAiB,IAAI,EAAE,CAAC,cAAc,CAKrD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConnectUtils.js","names":["getBaseUrl","apiUrl","URL","concat","window","location","getEnvoyPrefix","searchParams","URLSearchParams","search","get","getConnectOptions","envoyPrefix","headers"],"sources":["../../src/utils/ConnectUtils.ts"],"sourcesContent":["import type {
|
|
1
|
+
{"version":3,"file":"ConnectUtils.js","names":["getBaseUrl","apiUrl","URL","concat","window","location","getEnvoyPrefix","searchParams","URLSearchParams","search","get","getConnectOptions","envoyPrefix","headers"],"sources":["../../src/utils/ConnectUtils.ts"],"sourcesContent":["import type { dh } from '@deephaven/jsapi-types';\n\n/**\n * Get the base URL of the API\n * @param apiUrl API URL\n * @returns URL for the base of the API\n */\nexport function getBaseUrl(apiUrl: string): URL {\n return new URL(apiUrl, `${window.location}`);\n}\n\n/**\n * Get the Envoy prefix header value\n * @returns Envoy prefix header value\n */\nexport function getEnvoyPrefix(): string | null {\n const searchParams = new URLSearchParams(window.location.search);\n return searchParams.get('envoyPrefix');\n}\n\nexport function getConnectOptions(): dh.ConnectOptions {\n const envoyPrefix = getEnvoyPrefix();\n return envoyPrefix != null\n ? { headers: { 'envoy-prefix': envoyPrefix } }\n : { headers: {} };\n}\n"],"mappings":"AAEA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASA,UAAUA,CAACC,MAAc,EAAO;EAC9C,OAAO,IAAIC,GAAG,CAACD,MAAM,KAAAE,MAAA,CAAKC,MAAM,CAACC,QAAQ,CAAE,CAAC;AAC9C;;AAEA;AACA;AACA;AACA;AACA,OAAO,SAASC,cAAcA,CAAA,EAAkB;EAC9C,IAAMC,YAAY,GAAG,IAAIC,eAAe,CAACJ,MAAM,CAACC,QAAQ,CAACI,MAAM,CAAC;EAChE,OAAOF,YAAY,CAACG,GAAG,CAAC,aAAa,CAAC;AACxC;AAEA,OAAO,SAASC,iBAAiBA,CAAA,EAAsB;EACrD,IAAMC,WAAW,GAAGN,cAAc,CAAC,CAAC;EACpC,OAAOM,WAAW,IAAI,IAAI,GACtB;IAAEC,OAAO,EAAE;MAAE,cAAc,EAAED;IAAY;EAAE,CAAC,GAC5C;IAAEC,OAAO,EAAE,CAAC;EAAE,CAAC;AACrB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deephaven/app-utils",
|
|
3
|
-
"version": "0.67.1-beta.
|
|
3
|
+
"version": "0.67.1-beta.2+c965fc98",
|
|
4
4
|
"description": "Deephaven App Utils",
|
|
5
5
|
"author": "Deephaven Data Labs LLC",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -29,23 +29,23 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@adobe/react-spectrum": "^3.34.1",
|
|
32
|
-
"@deephaven/auth-plugins": "^0.67.1-beta.
|
|
33
|
-
"@deephaven/chart": "^0.67.1-beta.
|
|
34
|
-
"@deephaven/components": "^0.67.1-beta.
|
|
35
|
-
"@deephaven/console": "^0.67.1-beta.
|
|
36
|
-
"@deephaven/dashboard": "^0.67.1-beta.
|
|
37
|
-
"@deephaven/dashboard-core-plugins": "^0.67.1-beta.
|
|
38
|
-
"@deephaven/icons": "^0.67.1-beta.
|
|
39
|
-
"@deephaven/iris-grid": "^0.67.1-beta.
|
|
40
|
-
"@deephaven/jsapi-bootstrap": "^0.67.1-beta.
|
|
41
|
-
"@deephaven/jsapi-components": "^0.67.1-beta.
|
|
42
|
-
"@deephaven/jsapi-types": "
|
|
43
|
-
"@deephaven/jsapi-utils": "^0.67.1-beta.
|
|
44
|
-
"@deephaven/log": "^0.67.1-beta.
|
|
45
|
-
"@deephaven/plugin": "^0.67.1-beta.
|
|
46
|
-
"@deephaven/react-hooks": "^0.67.1-beta.
|
|
47
|
-
"@deephaven/redux": "^0.67.1-beta.
|
|
48
|
-
"@deephaven/utils": "^0.67.1-beta.
|
|
32
|
+
"@deephaven/auth-plugins": "^0.67.1-beta.2+c965fc98",
|
|
33
|
+
"@deephaven/chart": "^0.67.1-beta.2+c965fc98",
|
|
34
|
+
"@deephaven/components": "^0.67.1-beta.2+c965fc98",
|
|
35
|
+
"@deephaven/console": "^0.67.1-beta.2+c965fc98",
|
|
36
|
+
"@deephaven/dashboard": "^0.67.1-beta.2+c965fc98",
|
|
37
|
+
"@deephaven/dashboard-core-plugins": "^0.67.1-beta.2+c965fc98",
|
|
38
|
+
"@deephaven/icons": "^0.67.1-beta.2+c965fc98",
|
|
39
|
+
"@deephaven/iris-grid": "^0.67.1-beta.2+c965fc98",
|
|
40
|
+
"@deephaven/jsapi-bootstrap": "^0.67.1-beta.2+c965fc98",
|
|
41
|
+
"@deephaven/jsapi-components": "^0.67.1-beta.2+c965fc98",
|
|
42
|
+
"@deephaven/jsapi-types": "1.0.0-dev0.33.1",
|
|
43
|
+
"@deephaven/jsapi-utils": "^0.67.1-beta.2+c965fc98",
|
|
44
|
+
"@deephaven/log": "^0.67.1-beta.2+c965fc98",
|
|
45
|
+
"@deephaven/plugin": "^0.67.1-beta.2+c965fc98",
|
|
46
|
+
"@deephaven/react-hooks": "^0.67.1-beta.2+c965fc98",
|
|
47
|
+
"@deephaven/redux": "^0.67.1-beta.2+c965fc98",
|
|
48
|
+
"@deephaven/utils": "^0.67.1-beta.2+c965fc98",
|
|
49
49
|
"@paciolan/remote-component": "2.13.0",
|
|
50
50
|
"@paciolan/remote-module-loader": "^3.0.2",
|
|
51
51
|
"fira": "mozilla/fira#4.202"
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"publishConfig": {
|
|
66
66
|
"access": "public"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "c965fc986f3dd83305acf8564e177870afea1937"
|
|
69
69
|
}
|