X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/fbec771115f1872bdadc0572a5c5059be68f1aca..1f0d4a9c57515816112baa3cb45bf97bec490737:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index 887efc56..bee08c80 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -23,32 +23,47 @@ import { rootProjectActionSet } from "./views-components/context-menu/action-set import { projectActionSet } from "./views-components/context-menu/action-sets/project-action-set"; import { resourceActionSet } from './views-components/context-menu/action-sets/resource-action-set'; import { favoriteActionSet } from "./views-components/context-menu/action-sets/favorite-action-set"; +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'; + +const getBuildNumber = () => "BN-" + (process.env.REACT_APP_BUILD_NUMBER || "dev"); +const getGitCommit = () => "GIT-" + (process.env.REACT_APP_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); addMenuActionSet(ContextMenuKind.RESOURCE, resourceActionSet); addMenuActionSet(ContextMenuKind.FAVORITE, favoriteActionSet); -addMenuActionSet(ContextMenuKind.COLLECTION, collectionActionSet); +addMenuActionSet(ContextMenuKind.COLLECTION_FILES, collectionFilesActionSet); +addMenuActionSet(ContextMenuKind.COLLECTION_FILES_ITEM, collectionFilesItemActionSet); +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())); + store.dispatch(getProjectList(services.authService.getUuid())); - const Token = (props: any) => ; + const TokenComponent = (props: any) => ; + const WorkbenchComponent = (props: any) => ; const App = () =>
- - + +