/* * 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 { withRouter, RouteComponentProps } from "react-router-dom"; import { WithTranslation, withTranslation } from "react-i18next"; import { Branch, Repository } from "@scm-manager/ui-types"; import { Breadcrumb, ErrorNotification, Loading } from "@scm-manager/ui-components"; import FileTree from "../components/FileTree"; import { getFetchBranchesFailure, isFetchBranchesPending } from "../../branches/modules/branches"; import { compose } from "redux"; import Content from "./Content"; import { fetchSources, getSources, isDirectory } from "../modules/sources"; import CodeActionBar from "../../codeSection/components/CodeActionBar"; type Props = WithTranslation & RouteComponentProps & { repository: Repository; loading: boolean; error: Error; baseUrl: string; branches: Branch[]; revision: string; path: string; currentFileIsDirectory: boolean; sources: File; selectedBranch: string; // dispatch props fetchSources: (repository: Repository, revision: string, path: string) => void; }; class Sources extends React.Component { componentDidMount() { const { repository, branches, selectedBranch, baseUrl, revision, path, fetchSources } = this.props; fetchSources(repository, this.decodeRevision(revision), path); if (branches?.length > 0 && !selectedBranch) { const defaultBranch = branches?.filter(b => b.defaultBranch === true)[0]; this.props.history.replace(`${baseUrl}/sources/${encodeURIComponent(defaultBranch.name)}/`); } } componentDidUpdate(prevProps: Props) { const { fetchSources, repository, revision, path } = this.props; if (prevProps.revision !== revision || prevProps.path !== path) { fetchSources(repository, this.decodeRevision(revision), path); } } decodeRevision = (revision: string) => { return revision ? decodeURIComponent(revision) : revision; }; onSelectBranch = (branch?: Branch) => { const { baseUrl, history, path } = this.props; let url; if (branch) { if (path) { url = `${baseUrl}/sources/${encodeURIComponent(branch.name)}/${path}`; url = !url.endsWith("/") ? url + "/" : url; } else { url = `${baseUrl}/sources/${encodeURIComponent(branch.name)}/`; } } else { return; } history.push(url); }; evaluateSwitchViewLink = () => { const { baseUrl, selectedBranch, branches } = this.props; if (branches && selectedBranch && branches?.filter(b => b.name === selectedBranch).length !== 0) { return `${baseUrl}/branch/${encodeURIComponent(selectedBranch)}/changesets/`; } return `${baseUrl}/changesets/`; }; render() { const { repository, baseUrl, branches, selectedBranch, loading, error, revision, path, currentFileIsDirectory } = this.props; if (error) { return ; } if (loading) { return ; } if (currentFileIsDirectory) { return ( <>
{this.renderBreadcrumb()}
); } else { return ( <> ); } } renderBreadcrumb = () => { const { revision, selectedBranch, path, baseUrl, branches, sources, repository } = this.props; return ( b.name === selectedBranch)[0]} defaultBranch={branches?.filter(b => b.defaultBranch === true)[0]} sources={sources} /> ); }; } const mapStateToProps = (state: any, ownProps: Props) => { const { repository, match } = ownProps; const { revision, path } = match.params; const decodedRevision = revision ? decodeURIComponent(revision) : undefined; const loading = isFetchBranchesPending(state, repository); const error = getFetchBranchesFailure(state, repository); const currentFileIsDirectory = decodedRevision ? isDirectory(state, repository, decodedRevision, path) : isDirectory(state, repository, revision, path); const sources = getSources(state, repository, decodedRevision, path); return { repository, revision, path, loading, error, currentFileIsDirectory, sources }; }; const mapDispatchToProps = (dispatch: any) => { return { fetchSources: (repository: Repository, revision: string, path: string) => { dispatch(fetchSources(repository, revision, path)); } }; }; export default compose(withTranslation("repos"), withRouter, connect(mapStateToProps, mapDispatchToProps))(Sources);