/* * 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 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 } from "@scm-manager/ui-components"; import { getSources } from "../modules/sources"; import FileButtonAddons from "../components/content/FileButtonAddons"; import SourcesView from "./SourcesView"; import HistoryView from "./HistoryView"; type Props = WithTranslation & { loading: boolean; file: File; repository: Repository; revision: string; path: string; breadcrumb: React.ReactNode; }; type State = { collapsed: boolean; showHistory: boolean; 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; `; class Content extends React.Component { constructor(props: Props) { super(props); this.state = { collapsed: true, showHistory: false }; } toggleCollapse = () => { this.setState(prevState => ({ collapsed: !prevState.collapsed })); }; setShowHistoryState(showHistory: boolean) { this.setState({ ...this.state, showHistory }); } handleExtensionError = (error: Error) => { this.setState({ errorFromExtension: error }); }; showHeader() { const { repository, file, revision } = this.props; const { showHistory, collapsed } = this.state; const icon = collapsed ? "angle-right" : "angle-down"; const selector = file._links.history ? ( this.setShowHistoryState(changeShowHistory)} /> ) : null; return (
{file.name}
{selector}
); } 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 { showHistory, errorFromExtension } = this.state; const header = this.showHeader(); const content = showHistory && file._links.history ? ( ) : ( ); 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));