Added data selector for workbench data explorer
[arvados-workbench2.git] / src / index.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import * as React from 'react';
6 import * as ReactDOM from 'react-dom';
7 import { Provider } from "react-redux";
8 import Workbench from './views/workbench/workbench';
9 import './index.css';
10 import { Route } from "react-router";
11 import createBrowserHistory from "history/createBrowserHistory";
12 import configureStore from "./store/store";
13 import { ConnectedRouter } from "react-router-redux";
14 import ApiToken from "./views-components/api-token/api-token";
15 import authActions from "./store/auth/auth-action";
16 import { authService } from "./services/services";
17 import { getProjectList } from "./store/project/project-action";
18
19 const history = createBrowserHistory();
20
21 const store = configureStore({
22     projects: [
23     ],
24     collections: [
25     ],
26     router: {
27         location: null
28     },
29     auth: {
30         user: undefined
31     }
32 }, history);
33
34 store.dispatch(authActions.INIT());
35 const rootUuid = authService.getRootUuid();
36 store.dispatch<any>(getProjectList(rootUuid));
37
38 const App = () =>
39     <Provider store={store}>
40         <ConnectedRouter history={history}>
41             <div>
42                 <Route path="/" component={Workbench}/>
43                 <Route path="/token" component={ApiToken}/>
44             </div>
45         </ConnectedRouter>
46     </Provider>;
47
48 ReactDOM.render(
49     <App/>,
50     document.getElementById('root') as HTMLElement
51 );