X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/80e9a9f467827453339ddf581584762afd1748b0..aafa91ce918b23cff556f73e337ad8fe76ed578a:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index a76a86ac7d..b74329f6f2 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -37,6 +37,8 @@ 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'; +import { snackbarActions } from "~/store/snackbar/snackbar-actions"; const getBuildNumber = () => "BN-" + (process.env.REACT_APP_BUILD_NUMBER || "dev"); const getGitCommit = () => "GIT-" + (process.env.REACT_APP_GIT_COMMIT || "latest").substr(0, 7); @@ -61,7 +63,14 @@ addMenuActionSet(ContextMenuKind.TRASH, trashActionSet); fetchConfig() .then(({ config, apiHost }) => { const history = createBrowserHistory(); - const services = createServices(config); + const services = createServices(config, { + progressFn: (id, working) => { + store.dispatch(progressIndicatorActions.TOGGLE({ id, working })); + }, + errorFn: (id, message) => { + store.dispatch(snackbarActions.OPEN_SNACKBAR({ message })); + } + }); const store = configureStore(history, services); store.subscribe(initListener(history, store, services, config));