/* * MIT License * * Copyright (c) 2020-present Cloudogu GmbH and Contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ import React, { useEffect, useMemo, useState } from "react"; import { match as Match } from "react-router"; import { Link as RouteLink, Redirect, Route, RouteProps, Switch, useHistory, useRouteMatch } from "react-router-dom"; import { useTranslation } from "react-i18next"; import { binder, ExtensionPoint, extensionPoints } from "@scm-manager/ui-extensions"; import { Changeset, Link } from "@scm-manager/ui-types"; import { CustomQueryFlexWrappedColumns, devices, ErrorPage, FileControlFactory, HealthCheckFailureDetail, JumpToFileButton, Loading, NavLink, Page, PrimaryContentColumn, RepositoryFlags, SecondaryNavigation, SecondaryNavigationColumn, StateMenuContextProvider, SubNavigation, urls, } from "@scm-manager/ui-components"; import RepositoryDetails from "../components/RepositoryDetails"; import EditRepo from "./EditRepo"; import BranchesOverview from "../branches/containers/BranchesOverview"; import CreateBranch from "../branches/containers/CreateBranch"; import Permissions from "../permissions/containers/Permissions"; import EditRepoNavLink from "../components/EditRepoNavLink"; import BranchRoot from "../branches/containers/BranchRoot"; import PermissionsNavLink from "../components/PermissionsNavLink"; import RepositoryNavLink from "../components/RepositoryNavLink"; import CodeOverview from "../codeSection/containers/CodeOverview"; import ChangesetView from "./ChangesetView"; import SourceExtensions from "../sources/containers/SourceExtensions"; import TagsOverview from "../tags/container/TagsOverview"; import CompareRoot from "../compare/CompareRoot"; import TagRoot from "../tags/container/TagRoot"; import { useIndexLinks, useNamespaceAndNameContext, useRepository } from "@scm-manager/ui-api"; import styled from "styled-components"; import useShortcut from "../../shortcuts/useShortcut"; const TagGroup = styled.span` & > * { margin-right: 0.25rem; } `; const MobileWrapped = styled.div` @media screen and (max-width: ${devices.mobile.width}px) { margin-left: auto; } `; type UrlParams = { namespace: string; name: string; }; const useRepositoryFromUrl = (match: Match) => { const { namespace, name } = match.params; const { data: repository, ...rest } = useRepository(namespace, name); return { repository, ...rest, }; }; const RepositoryRoot = () => { const match = useRouteMatch(); const { isLoading, error, repository } = useRepositoryFromUrl(match); const indexLinks = useIndexLinks(); const [showHealthCheck, setShowHealthCheck] = useState(false); const [t] = useTranslation("repos"); const context = useNamespaceAndNameContext(); const history = useHistory(); const url = urls.matchedUrlFromMatch(match); const codeLinkname = useMemo(() => { if (repository?._links?.sources) { return "sources"; } if (repository?._links?.changesets) { return "changesets"; } return ""; }, [repository]); useShortcut("g i", () => history.push(`${url}/info`), t("shortcuts.info")); useShortcut("g b", () => history.push(`${url}/branches/`), t("shortcuts.branches"), { active: !!repository?._links["branches"], }); useShortcut("g t", () => history.push(`${url}/tags/`), t("shortcuts.tags"), { active: !!repository?._links["tags"], }); useShortcut("g c", () => history.push(evaluateDestinationForCodeLink()), t("shortcuts.code"), { active: !!repository?._links[codeLinkname], }); useShortcut("g s", () => history.push(`${url}/settings/general`), t("shortcuts.settings")); useEffect(() => { if (repository) { context.setNamespace(repository.namespace); context.setName(repository.name); } return () => { context.setNamespace(""); context.setName(""); }; }, [repository, context]); if (error) { return ( ); } if (!repository || isLoading) { return ; } // props used for extensions // most of the props required for compatibility const props = { namespace: repository.namespace, name: repository.name, repository: repository, loading: isLoading, error, repoLink: (indexLinks.repositories as Link)?.href, indexLinks, match, }; const redirectUrlFactory = binder.getExtension("repository.redirect", props); let redirectedUrl; if (redirectUrlFactory) { redirectedUrl = url + redirectUrlFactory(props); } else { redirectedUrl = url + "/code/sources/"; } const fileControlFactoryFactory: (changeset: Changeset) => FileControlFactory = (changeset) => (file) => { const baseUrl = `${url}/code/sources`; const sourceLink = file.newPath && { url: `${baseUrl}/${changeset.id}/${file.newPath}/`, label: t("diff.jumpToSource"), }; const targetLink = file.oldPath && changeset._embedded?.parents?.length === 1 && { url: `${baseUrl}/${changeset._embedded.parents[0].id}/${file.oldPath}`, label: t("diff.jumpToTarget"), }; const links = []; switch (file.type) { case "add": if (sourceLink) { links.push(sourceLink); } break; case "delete": if (targetLink) { links.push(targetLink); } break; default: if (targetLink && sourceLink) { links.push(targetLink, sourceLink); // Target link first because its the previous file } else if (sourceLink) { links.push(sourceLink); } } return links ? links.map(({ url, label }) => ) : null; }; const titleComponent = ( <> {repository.namespace} /{repository.name} ); const extensionProps = { repository, url, indexLinks, }; const matchesBranches = (route: RouteProps) => { const regex = new RegExp(`${url}/branch/.+/info`); if (!route.location) { return false; } return !!route.location.pathname.match(regex); }; const matchesTags = (route: RouteProps) => { const regex = new RegExp(`${url}/tag/.+/info`); if (!route.location) { return false; } return !!route.location.pathname.match(regex); }; const matchesCode = (route: RouteProps) => { const regex = new RegExp(`${url}(/code)/.*`); if (!route.location) { return false; } return !!route.location.pathname.match(regex); }; const evaluateDestinationForCodeLink = () => { if (repository?._links?.sources) { return `${url}/code/sources/`; } return `${url}/code/changesets`; }; const modal = ( setShowHealthCheck(false)} active={showHealthCheck} failures={repository.healthCheckFailures} /> ); const escapedUrl = urls.escapeUrlForRoute(url); return ( } > {modal} {/* redirect pre 2.0.0-rc2 links */} name="repository.route" props={{ repository, url: urls.escapeUrlForRoute(url), indexLinks, }} renderAll={true} /> name="repository.navigation.topLevel" props={extensionProps} renderAll={true} /> name="repository.navigation" props={extensionProps} renderAll={true} /> name="repository.setting" props={extensionProps} renderAll={true} /> ); }; export default RepositoryRoot;