X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/c11055f2d6ce8385088bc221eab1175e31777ec0..f135906f33ad05916bcc72cfd379217071484a09:/src/index.tsx?ds=sidebyside diff --git a/src/index.tsx b/src/index.tsx index cfdbb46c..fcc02f1e 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -27,6 +27,15 @@ import { collectionFilesActionSet } from './views-components/context-menu/action 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); @@ -45,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 = () =>