Add execute function to context menu actions
[arvados-workbench2.git] / src / index.tsx
index be01e0a0769505e43b55a9e320bad63949a32bbe..a06b4851a314d678f175bd8941ea11d14adf5ed4 100644 (file)
@@ -17,6 +17,10 @@ import { authService } from "./services/services";
 import { getProjectList } from "./store/project/project-action";
 import { MuiThemeProvider } from '@material-ui/core/styles';
 import { CustomTheme } from './common/custom-theme';
+import CommonResourceService from './common/api/common-resource-service';
+import { CollectionResource } from './models/collection';
+import { serverApi } from './common/api/server-api';
+import { ProcessResource } from './models/process';
 
 const history = createBrowserHistory();
 
@@ -25,6 +29,14 @@ const store = configureStore(history);
 store.dispatch(authActions.INIT());
 store.dispatch<any>(getProjectList(authService.getUuid()));
 
+// const service = new CommonResourceService<CollectionResource>(serverApi, "collections");
+// service.create({ ownerUuid: "qr1hi-j7d0g-u55bcc7fa5w7v4p", name: "Collection 1 short title"});
+// service.create({ ownerUuid: "qr1hi-j7d0g-u55bcc7fa5w7v4p", name: "Collection 2 long long long title"});
+
+// const processService = new CommonResourceService<ProcessResource>(serverApi, "container_requests");
+// processService.create({ ownerUuid: "qr1hi-j7d0g-u55bcc7fa5w7v4p", name: "Process 1 short title"});
+// processService.create({ ownerUuid: "qr1hi-j7d0g-u55bcc7fa5w7v4p", name: "Process 2 long long long title" });
+
 const App = () =>
     <MuiThemeProvider theme={CustomTheme}>
         <Provider store={store}>