/* * 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 { RepositoryCollection } from "@scm-manager/ui-types"; import { CreateButton, LinkPaginator, Notification, OverviewPageActions, Page, PageActions, urls } from "@scm-manager/ui-components"; import { getRepositoriesLink } from "../../modules/indexResource"; import { fetchReposByPage, getFetchReposFailure, getRepositoryCollection, isAbleToCreateRepos, isFetchReposPending } from "../modules/repos"; import RepositoryList from "../components/list"; type Props = WithTranslation & RouteComponentProps & { loading: boolean; error: Error; showCreateButton: boolean; collection: RepositoryCollection; page: number; reposLink: string; // dispatched functions fetchReposByPage: (link: string, page: number, filter?: string) => void; }; class Overview extends React.Component { componentDidMount() { const { fetchReposByPage, reposLink, page, location } = this.props; fetchReposByPage(reposLink, page, urls.getQueryStringFromLocation(location)); } componentDidUpdate = (prevProps: Props) => { const { loading, collection, page, reposLink, location, fetchReposByPage } = this.props; if (collection && page && !loading) { const statePage: number = collection.page + 1; if (page !== statePage || prevProps.location.search !== location.search) { fetchReposByPage(reposLink, page, urls.getQueryStringFromLocation(location)); } } }; render() { const { error, loading, showCreateButton, t } = this.props; 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 loading = isFetchReposPending(state); const error = getFetchReposFailure(state); const page = urls.getPageFromMatch(match); const showCreateButton = isAbleToCreateRepos(state); const reposLink = getRepositoriesLink(state); return { collection, loading, error, page, showCreateButton, reposLink }; }; const mapDispatchToProps = (dispatch: any) => { return { fetchReposByPage: (link: string, page: number, filter?: string) => { dispatch(fetchReposByPage(link, page, filter)); } }; }; export default connect(mapStateToProps, mapDispatchToProps)(withTranslation("repos")(withRouter(Overview)));