X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/9fed03a84c6ef5234d61f7d62c93f7629da2409d..18bb503b7ba881d9c6b09446e3ecb70eb11fa17e:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index 467aee08dd..cfdbb46cf5 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -26,6 +26,7 @@ import { favoriteActionSet } from "./views-components/context-menu/action-sets/f import { collectionFilesActionSet } from './views-components/context-menu/action-sets/collection-files-action-set'; import { collectionFilesItemActionSet } from './views-components/context-menu/action-sets/collection-files-item-action-set'; import { collectionActionSet } from './views-components/context-menu/action-sets/collection-action-set'; +import { collectionResourceActionSet } from './views-components/context-menu/action-sets/collection-resource-action-set'; addMenuActionSet(ContextMenuKind.ROOT_PROJECT, rootProjectActionSet); addMenuActionSet(ContextMenuKind.PROJECT, projectActionSet); @@ -33,26 +34,28 @@ addMenuActionSet(ContextMenuKind.RESOURCE, resourceActionSet); addMenuActionSet(ContextMenuKind.FAVORITE, favoriteActionSet); addMenuActionSet(ContextMenuKind.COLLECTION_FILES, collectionFilesActionSet); addMenuActionSet(ContextMenuKind.COLLECTION_FILES_ITEM, collectionFilesItemActionSet); -addMenuActionSet(ContextMenuKind.COLLECTION, collectionActionSet); +addMenuActionSet(ContextMenuKind.COLLECTION, collectionActionSet); +addMenuActionSet(ContextMenuKind.COLLECTION_RESOURCE, collectionResourceActionSet); fetchConfig() .then(config => { const history = createBrowserHistory(); - const services = createServices(config.API_HOST); + const services = createServices(config); const store = configureStore(history, services); store.dispatch(initAuth()); store.dispatch(getProjectList(services.authService.getUuid())); - - const Token = (props: any) => ; + + const TokenComponent = (props: any) => ; + const WorkbenchComponent = (props: any) => ; const App = () =>
- - + +