/* * 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, { ReactNode } from "react"; import { connect } from "react-redux"; import { WithTranslation, withTranslation } from "react-i18next"; import classNames from "classnames"; import styled from "styled-components"; import { ExtensionPoint } from "@scm-manager/ui-extensions"; import { File, Repository } from "@scm-manager/ui-types"; import { DateFromNow, ErrorNotification, FileSize, Icon, OpenInFullscreenButton } from "@scm-manager/ui-components"; import { getSources } from "../modules/sources"; import FileButtonAddons from "../components/content/FileButtonAddons"; import SourcesView from "./SourcesView"; import HistoryView from "./HistoryView"; import AnnotateView from "./AnnotateView"; type Props = WithTranslation & { loading: boolean; file: File; repository: Repository; revision: string; path: string; breadcrumb: React.ReactNode; }; type State = { collapsed: boolean; selected: SourceViewSelection; errorFromExtension?: Error; }; const Header = styled.div` border-bottom: solid 1px #dbdbdb; font-size: 1.25em; font-weight: 300; line-height: 1.25; padding: 0.5em 0.75em; `; const VCenteredChild = styled.div` align-items: center; `; const RightMarginIcon = styled(Icon)` margin-right: 0.5em; `; const RightMarginFileButtonAddons = styled(FileButtonAddons)` margin-right: 0.5em; `; const BorderBottom = styled.div` border-bottom: solid 1px #dbdbdb; `; const LighterGreyBackgroundPanelBlock = styled.div` background-color: #fbfbfb; `; const LighterGreyBackgroundTable = styled.table` background-color: #fbfbfb; `; const BorderLessDiv = styled.div` margin: -1.25rem; border: none; box-shadow: none; `; export type SourceViewSelection = "source" | "history" | "annotations"; class Content extends React.Component { constructor(props: Props) { super(props); this.state = { collapsed: true, selected: "source" }; } toggleCollapse = () => { this.setState(prevState => ({ collapsed: !prevState.collapsed })); }; handleExtensionError = (error: Error) => { this.setState({ errorFromExtension: error }); }; showHeader(content: ReactNode) { const { repository, file, revision } = this.props; const { selected, collapsed } = this.state; const icon = collapsed ? "angle-right" : "angle-down"; const selector = file._links.history ? ( this.setState({ selected: "source" })} showHistory={() => this.setState({ selected: "history" })} showAnnotations={() => this.setState({ selected: "annotations" })} /> ) : null; return (
{file.name}
{selector} {content}} tooltipStyle="htmlTitle" />
); } showMoreInformation() { const collapsed = this.state.collapsed; const { file, revision, t, repository } = this.props; const date = ; const description = file.description ? (

{file.description.split("\n").map((item, key) => { return ( {item}
); })}

) : null; const fileSize = file.directory ? "" : ; if (!collapsed) { return ( <> {t("sources.content.path")} {file.path} {t("sources.content.branch")} {decodeURIComponent(revision)} {t("sources.content.size")} {fileSize} {t("sources.content.commitDate")} {date} {t("sources.content.description")} {description} ); } return null; } render() { const { file, revision, repository, path, breadcrumb } = this.props; const { selected, errorFromExtension } = this.state; let content; switch (selected) { case "source": content = ; break; case "history": content = ; break; case "annotations": content = ; } const header = this.showHeader(content); const moreInformation = this.showMoreInformation(); return (
{breadcrumb}
{header}
{moreInformation} {content}
{errorFromExtension && }
); } } const mapStateToProps = (state: any, ownProps: Props) => { const { repository, revision, path } = ownProps; const file = getSources(state, repository, revision, path); return { file }; }; export default connect(mapStateToProps)(withTranslation("repos")(Content));