Update breadcrumbs layout to handle longer entries
[arvados.git] / src / index.tsx
index 173296817b317294d0fe75f8907c0468dd388835..ca92c381f3993ddcdc7719d4450b7c8e7b8456a9 100644 (file)
@@ -14,26 +14,9 @@ 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 { projectService } from "./services/services";
-import { TreeItem } from "./components/tree/tree";
-import { Project } from "./models/project";
+import { authService, projectService } from "./services/services";
 
-function buildProjectTree(tree: any[], level = 0): Array<TreeItem<Project>> {
-    const projects = tree.map((t, idx) => ({
-        id: `l${level}i${idx}${t[0]}`,
-        open: false,
-        active: false,
-        data: {
-            name: t[0],
-            icon: level === 0 ? <i className="fas fa-th"/> : <i className="fas fa-folder"/>,
-            createdAt: '2018-05-05',
-        },
-        items: t.length > 1 ? buildProjectTree(t[1], level + 1) : []
-    }));
-    return projects;
-}
 const history = createBrowserHistory();
-const projects = buildProjectTree(sampleProjects);
 
 const store = configureStore({
     projects: [
@@ -47,8 +30,8 @@ const store = configureStore({
 }, history);
 
 store.dispatch(authActions.INIT());
-store.dispatch<any>(projectService.getProjectList());
-
+const rootUuid = authService.getRootUuid();
+store.dispatch<any>(projectService.getProjectList(rootUuid));
 
 const App = () =>
     <Provider store={store}>