/* * Copyright (c) 2020 - present Cloudogu GmbH * * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License as published by the Free * Software Foundation, version 3. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more * details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see https://www.gnu.org/licenses/. */ 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, NavLink, Page, PrimaryContentColumn, RepositoryFlags, SecondaryNavigation, SecondaryNavigationColumn, SubNavigation, urls, } from "@scm-manager/ui-components"; import { Loading } from "@scm-manager/ui-core"; 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 { RepositoryContextProvider, useIndexLinks, useNamespaceAndNameContext, useRepository, } from "@scm-manager/ui-api"; import styled from "styled-components"; import { useShortcut } from "@scm-manager/ui-shortcuts"; 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`), { description: t("shortcuts.info"), }); useShortcut("g b", () => history.push(`${url}/branches/`), { active: !!repository?._links["branches"], description: t("shortcuts.branches"), }); useShortcut("g t", () => history.push(`${url}/tags/`), { active: !!repository?._links["tags"], description: t("shortcuts.tags"), }); useShortcut("g c", () => history.push(evaluateDestinationForCodeLink()), { active: !!repository?._links[codeLinkname], description: t("shortcuts.code"), }); useShortcut("g s", () => history.push(`${url}/settings/general`), { description: 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} name="repository.banner" props={{ repository, url: history.location.pathname }} renderAll={true} /> {/* redirect pre 2.0.0-rc2 links */} name="repository.route" props={{ repository, url: urls.escapeUrlForRoute(url), indexLinks, urlForLinks: url, }} 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;