X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a92bb3822b537682ca621df3c05a458b9ae3420b..7ba0401cff3906814ba976ea36adab9b3d5c3922:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index dacada2e6e..ca92c381f3 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -8,28 +8,37 @@ import { Provider } from "react-redux"; import Workbench from './views/workbench/workbench'; import ProjectList from './components/project-list/project-list'; import './index.css'; -import { Route, Router } from "react-router"; +import { Route } from "react-router"; import createBrowserHistory from "history/createBrowserHistory"; import configureStore from "./store/store"; import { ConnectedRouter } from "react-router-redux"; +import ApiToken from "./components/api-token/api-token"; +import authActions from "./store/auth/auth-action"; +import { authService, projectService } from "./services/services"; const history = createBrowserHistory(); + const store = configureStore({ projects: [ - { name: 'Mouse genome', createdAt: '2018-05-01' }, - { name: 'Human body', createdAt: '2018-05-01' }, - { name: 'Secret operation', createdAt: '2018-05-01' } ], router: { location: null + }, + auth: { + user: undefined } }, history); +store.dispatch(authActions.INIT()); +const rootUuid = authService.getRootUuid(); +store.dispatch(projectService.getProjectList(rootUuid)); + const App = () =>
+
;