/* * 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 { Route, RouteComponentProps } from "react-router-dom"; import { ExtensionPoint } from "@scm-manager/ui-extensions"; import { User } from "@scm-manager/ui-types"; import { ErrorPage, isMenuCollapsed, Loading, MenuContext, NavLink, Page, SecondaryNavigation, SubNavigation } from "@scm-manager/ui-components"; import { Details } from "./../components/table"; import EditUser from "./EditUser"; import { fetchUserByName, getFetchUserFailure, getUserByName, isFetchUserPending } from "../modules/users"; import { EditUserNavLink, SetPasswordNavLink, SetPermissionsNavLink } from "./../components/navLinks"; import { WithTranslation, withTranslation } from "react-i18next"; import { getUsersLink } from "../../modules/indexResource"; import SetUserPassword from "../components/SetUserPassword"; import SetPermissions from "../../permissions/components/SetPermissions"; import { storeMenuCollapsed } from "@scm-manager/ui-components/src"; type Props = RouteComponentProps & WithTranslation & { name: string; user: User; loading: boolean; error: Error; usersLink: string; // dispatcher function fetchUserByName: (p1: string, p2: string) => void; }; type State = { menuCollapsed: boolean; }; class SingleUser extends React.Component { constructor(props: Props) { super(props); this.state = { menuCollapsed: isMenuCollapsed() }; } componentDidMount() { this.props.fetchUserByName(this.props.usersLink, this.props.name); } stripEndingSlash = (url: string) => { if (url.endsWith("/")) { return url.substring(0, url.length - 2); } return url; }; onCollapseUserMenu = (collapsed: boolean) => { this.setState({ menuCollapsed: collapsed }, () => storeMenuCollapsed(collapsed)); }; matchedUrl = () => { return this.stripEndingSlash(this.props.match.url); }; render() { const { t, loading, error, user } = this.props; const { menuCollapsed } = this.state; if (error) { return ; } if (!user || loading) { return ; } const url = this.matchedUrl(); const extensionProps = { user, url }; return ( this.setState({ menuCollapsed: collapsed }) }} >
} /> } /> } /> } />
this.onCollapseUserMenu(!menuCollapsed)} collapsed={menuCollapsed} >
); } } const mapStateToProps = (state: any, ownProps: Props) => { const name = ownProps.match.params.name; const user = getUserByName(state, name); const loading = isFetchUserPending(state, name); const error = getFetchUserFailure(state, name); const usersLink = getUsersLink(state); return { usersLink, name, user, loading, error }; }; const mapDispatchToProps = (dispatch: any) => { return { fetchUserByName: (link: string, name: string) => { dispatch(fetchUserByName(link, name)); } }; }; export default connect(mapStateToProps, mapDispatchToProps)(withTranslation("users")(SingleUser));