Files
SCM-Manager/scm-ui/ui-webapp/src/repos/sources/components/FileTree.tsx

124 lines
3.9 KiB
TypeScript
Raw Normal View History

/*
* 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, { FC } from "react";
import { useTranslation } from "react-i18next";
import styled from "styled-components";
import { binder, ExtensionPoint, extensionPoints } from "@scm-manager/ui-extensions";
import { File, Repository } from "@scm-manager/ui-types";
import FileTreeLeaf from "./FileTreeLeaf";
import TruncatedNotification from "./TruncatedNotification";
import { isRootPath } from "../utils/files";
2020-02-19 18:37:09 +01:00
type Props = {
repository: Repository;
directory: File;
baseUrl: string;
revision: string;
fetchNextPage: () => void;
isFetchingNextPage: boolean;
2019-12-17 12:42:05 +01:00
};
const FixedWidthTh = styled.th`
width: 16px;
`;
export function findParent(path: string) {
if (path.endsWith("/")) {
2018-10-19 16:02:21 +02:00
path = path.substring(0, path.length - 1);
}
const index = path.lastIndexOf("/");
if (index > 0) {
return path.substring(0, index);
}
return "";
}
const FileTree: FC<Props> = ({ repository, directory, baseUrl, revision, fetchNextPage, isFetchingNextPage }) => {
const [t] = useTranslation("repos");
const { path } = directory;
const files: File[] = [];
if (!isRootPath(path)) {
files.push({
name: "..",
path: findParent(path),
directory: true,
revision,
_links: {},
_embedded: {
children: []
}
});
2018-09-27 16:32:37 +02:00
}
files.push(...(directory._embedded?.children || []));
const baseUrlWithRevision = baseUrl + "/" + encodeURIComponent(revision);
2018-10-19 16:02:21 +02:00
const extProps: extensionPoints.ReposSourcesTreeWrapperProps = {
repository,
directory,
baseUrl,
revision
};
return (
<div className="panel-block">
<ExtensionPoint<extensionPoints.ReposSourcesTreeWrapper>
name="repos.source.tree.wrapper"
props={extProps}
renderAll={true}
wrapper={true}
>
<table className="table table-hover table-sm is-fullwidth">
<thead>
<tr>
<FixedWidthTh />
<th>{t("sources.fileTree.name")}</th>
<th className="is-hidden-mobile">{t("sources.fileTree.length")}</th>
<th className="is-hidden-mobile">{t("sources.fileTree.commitDate")}</th>
<th className="is-hidden-touch">{t("sources.fileTree.description")}</th>
{binder.hasExtension("repos.sources.tree.row.right") && <th className="is-hidden-mobile" />}
</tr>
</thead>
<tbody>
{files.map((file: File) => (
<FileTreeLeaf key={file.name} file={file} baseUrl={baseUrlWithRevision} repository={repository} />
))}
</tbody>
</table>
<TruncatedNotification
directory={directory}
fetchNextPage={fetchNextPage}
isFetchingNextPage={isFetchingNextPage}
/>
</ExtensionPoint>
</div>
);
2018-10-19 16:02:21 +02:00
};
export default FileTree;