X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/c4e503180948300c3a6ef99e338d2e56b2931236..15987424ea63c887e3ec5f8a1c42cc985301b884:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index 14a52e8e..fcc02f1e 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -26,6 +26,16 @@ 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'; +import { initPickerProjectTree } from './views-components/project-tree-picker/project-tree-picker'; + +const getBuildNumber = () => "BN-" + (process.env.BUILD_NUMBER || "dev"); +const getGitCommit = () => "GIT-" + (process.env.GIT_COMMIT || "latest").substr(0, 7); +const getBuildInfo = () => getBuildNumber() + " / " + getGitCommit(); + +const buildInfo = getBuildInfo(); + +console.log(`Starting arvados [${buildInfo}]`); addMenuActionSet(ContextMenuKind.ROOT_PROJECT, rootProjectActionSet); addMenuActionSet(ContextMenuKind.PROJECT, projectActionSet); @@ -34,6 +44,7 @@ addMenuActionSet(ContextMenuKind.FAVORITE, favoriteActionSet); addMenuActionSet(ContextMenuKind.COLLECTION_FILES, collectionFilesActionSet); addMenuActionSet(ContextMenuKind.COLLECTION_FILES_ITEM, collectionFilesItemActionSet); addMenuActionSet(ContextMenuKind.COLLECTION, collectionActionSet); +addMenuActionSet(ContextMenuKind.COLLECTION_RESOURCE, collectionResourceActionSet); fetchConfig() .then(config => { @@ -43,9 +54,10 @@ fetchConfig() store.dispatch(initAuth()); store.dispatch(getProjectList(services.authService.getUuid())); - + store.dispatch(initPickerProjectTree()); + const TokenComponent = (props: any) => ; - const WorkbenchComponent = (props: any) => ; + const WorkbenchComponent = (props: any) => ; const App = () =>