X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/10ce16c28de952f6533ca3cc9df909269e3d2a53..2c2bd28224c2480276ae714c54ab1be0a6896efd:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index 6d53e0d439..b368d3f88f 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -12,38 +12,58 @@ import createBrowserHistory from "history/createBrowserHistory"; import { configureStore } from "./store/store"; import { ConnectedRouter } from "react-router-redux"; import { ApiToken } from "./views-components/api-token/api-token"; -import { authActions } from "./store/auth/auth-action"; -import { authService } from "./services/services"; +import { initAuth } from "./store/auth/auth-action"; +import { createServices } from "./services/services"; import { getProjectList } from "./store/project/project-action"; import { MuiThemeProvider } from '@material-ui/core/styles'; import { CustomTheme } from './common/custom-theme'; import { fetchConfig } from './common/config'; -import { setBaseUrl } from './common/api/server-api'; import { addMenuActionSet, ContextMenuKind } from "./views-components/context-menu/context-menu"; import { rootProjectActionSet } from "./views-components/context-menu/action-sets/root-project-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'; -addMenuActionSet(ContextMenuKind.RootProject, rootProjectActionSet); -addMenuActionSet(ContextMenuKind.Project, projectActionSet); +const getBuildNumber = () => "BN-" + (process.env.BUILD_NUMBER || "dev"); +const getGitCommit = () => "GIT-" + (process.env.GIT_COMMIT || "latest").substr(0, 7); +const getBuildInfo = () => getBuildNumber() + " / " + getGitCommit(); -fetchConfig() - .then(config => { +const buildInfo = getBuildInfo(); + +console.log(`Starting arvados [${buildInfo}]`); - setBaseUrl(config.API_HOST); +addMenuActionSet(ContextMenuKind.ROOT_PROJECT, rootProjectActionSet); +addMenuActionSet(ContextMenuKind.PROJECT, projectActionSet); +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_RESOURCE, collectionResourceActionSet); +fetchConfig() + .then(config => { const history = createBrowserHistory(); - const store = configureStore(history); + const services = createServices(config); + const store = configureStore(history, services); + + store.dispatch(initAuth()); + store.dispatch(getProjectList(services.authService.getUuid())); - store.dispatch(authActions.INIT()); - store.dispatch(getProjectList(authService.getUuid())); + const TokenComponent = (props: any) => ; + const WorkbenchComponent = (props: any) => ; const App = () =>
- - + +