/* * 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 { RouteComponentProps, withRouter } from "react-router-dom"; import { WithTranslation, withTranslation } from "react-i18next"; import { NamespaceCollection, RepositoryCollection } from "@scm-manager/ui-types"; import { CreateButton, LinkPaginator, Notification, OverviewPageActions, Page, PageActions, urls } from "@scm-manager/ui-components"; import { getNamespacesLink, getRepositoriesLink } from "../../modules/indexResource"; import { fetchNamespaces, fetchReposByPage, getFetchReposFailure, getNamespaceCollection, getRepositoryCollection, isAbleToCreateRepos, isFetchNamespacesPending, isFetchReposPending } from "../modules/repos"; import RepositoryList from "../components/list"; type Props = WithTranslation & RouteComponentProps & { loading: boolean; error: Error; showCreateButton: boolean; collection: RepositoryCollection; namespaces: NamespaceCollection; page: number; namespace: string; reposLink: string; namespacesLink: string; // dispatched functions fetchReposByPage: (link: string, page: number, namespace?: string, filter?: string) => void; fetchNamespaces: (link: string) => void; }; class Overview extends React.Component { componentDidMount() { const { fetchNamespaces, namespacesLink } = this.props; fetchNamespaces(namespacesLink); this.fetchRepos(); } componentDidUpdate = (prevProps: Props) => { const { loading, collection, namespace, namespaces, page, location } = this.props; if (namespaces !== prevProps.namespaces && namespace) { this.fetchRepos(); } else if (collection && (page || namespace) && !loading) { const statePage: number = collection.page + 1; if (page !== statePage || prevProps.location.search !== location.search || prevProps.namespace !== namespace) { this.fetchRepos(); } } }; fetchRepos = () => { const { page, location, fetchReposByPage } = this.props; const link = this.getReposLink(); if (link) { fetchReposByPage(link, page, urls.getQueryStringFromLocation(location)); } }; getReposLink = () => { const { namespace, namespaces, reposLink } = this.props; if (namespace) { return namespaces?.find(n => n.namespace === namespace)?._links?.repositories?.href; } else { return reposLink; } }; render() { const { error, loading, showCreateButton, namespace, t } = this.props; const link = namespace ? `repos/${namespace}` : "repos"; return ( {this.renderOverview()} ); } renderRepositoryList() { const { collection, page, location, t } = this.props; if (collection._embedded && collection._embedded.repositories.length > 0) { return ( <> ); } return {t("overview.noRepositories")}; } renderOverview() { const { collection } = this.props; if (collection) { return ( <> {this.renderRepositoryList()} {this.renderCreateButton()} ); } return null; } renderCreateButton() { const { showCreateButton, t } = this.props; if (showCreateButton) { return ; } return null; } } const mapStateToProps = (state: any, ownProps: Props) => { const { match } = ownProps; const collection = getRepositoryCollection(state); const namespaces = getNamespaceCollection(state); const loading = isFetchReposPending(state) || isFetchNamespacesPending(state); const error = getFetchReposFailure(state); const { namespace, page } = urls.getNamespaceAndPageFromMatch(match); const showCreateButton = isAbleToCreateRepos(state); const reposLink = getRepositoriesLink(state); const namespacesLink = getNamespacesLink(state); return { collection, namespaces, loading, error, page, namespace, showCreateButton, reposLink, namespacesLink }; }; const mapDispatchToProps = (dispatch: any) => { return { fetchReposByPage: (link: string, page: number, filter?: string) => { dispatch(fetchReposByPage(link, page, filter)); }, fetchNamespaces: (link: string) => { dispatch(fetchNamespaces(link)); } }; }; export default connect(mapStateToProps, mapDispatchToProps)(withTranslation("repos")(withRouter(Overview)));