merge-conflicts
[arvados-workbench2.git] / src / index.tsx
index c1785c8b155d8629adf9b20dfc471f203aef959e..ba395e8b785ab49dd6255427ff90382b43ff6191 100644 (file)
@@ -6,31 +6,33 @@ import * as React from 'react';
 import * as ReactDOM from 'react-dom';
 import { Provider } from "react-redux";
 import Workbench from './views/workbench/workbench';
-import ProjectList from './components/project-list/project-list';
 import './index.css';
-import { Redirect, Route, RouteProps, Router, RouterProps } 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-action";
+import ApiToken from "./views-components/api-token/api-token";
+import authActions from "./store/auth/auth-action";
+import { authService } from "./services/services";
+import { getProjectList } from "./store/project/project-action";
 
 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
-    }
+    },
+    sidePanel: []
 }, history);
 
 store.dispatch(authActions.INIT());
+const rootUuid = authService.getRootUuid();
+store.dispatch<any>(getProjectList(rootUuid));
 
 const App = () =>
     <Provider store={store}>