X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a950096809e19f48ec006651227222d60e4fa86c..6f8e509988756deb7e05a760e718d1ade164fd19:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index 8ab089a89f..2fb236d011 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -35,7 +35,9 @@ import { ServiceRepository } from '~/services/services'; import { initWebSocket } from '~/websocket/websocket'; import { Config } from '~/common/config'; import { addRouteChangeHandlers } from './routes/route-change-handlers'; +import { setCurrentTokenDialogApiHost } from '~/store/current-token-dialog/current-token-dialog-actions'; import { processResourceActionSet } from './views-components/context-menu/action-sets/process-resource-action-set'; +import { progressIndicatorActions } from '~/store/progress-indicator/progress-indicator-actions'; const getBuildNumber = () => "BN-" + (process.env.REACT_APP_BUILD_NUMBER || "dev"); const getGitCommit = () => "GIT-" + (process.env.REACT_APP_GIT_COMMIT || "latest").substr(0, 7); @@ -58,13 +60,16 @@ addMenuActionSet(ContextMenuKind.PROCESS_RESOURCE, processResourceActionSet); addMenuActionSet(ContextMenuKind.TRASH, trashActionSet); fetchConfig() - .then((config) => { + .then(({ config, apiHost }) => { const history = createBrowserHistory(); - const services = createServices(config); + const services = createServices(config, (id, working) => { + store.dispatch(progressIndicatorActions.TOGGLE({ id, working })); + }); const store = configureStore(history, services); store.subscribe(initListener(history, store, services, config)); store.dispatch(initAuth()); + store.dispatch(setCurrentTokenDialogApiHost(apiHost)); const TokenComponent = (props: any) => ; const WorkbenchComponent = (props: any) => ;