1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { RootState } from 'store/store';
6 import { compose, Dispatch } from 'redux';
7 import { reduxForm, isPristine, isValid } from 'redux-form';
8 import { connect } from 'react-redux';
9 import { UserResource } from 'models/user';
10 import { getUserProfileIsInaccessible, saveEditedUser } from 'store/user-profile/user-profile-actions';
11 import { UserProfilePanelRoot, UserProfilePanelRootDataProps } from 'views/user-profile-panel/user-profile-panel-root';
12 import { USER_PROFILE_FORM } from "store/user-profile/user-profile-actions";
13 import { matchUserProfileRoute } from 'routes/routes';
14 import { openUserContextMenu } from 'store/context-menu/context-menu-actions';
16 const mapStateToProps = (state: RootState): UserProfilePanelRootDataProps => {
17 const pathname = state.router.location ? state.router.location.pathname : '';
18 const match = matchUserProfileRoute(pathname);
19 const uuid = match ? match.params.id : state.auth.user?.uuid || '';
22 isAdmin: state.auth.user!.isAdmin,
23 isSelf: state.auth.user!.uuid === uuid,
24 isPristine: isPristine(USER_PROFILE_FORM)(state),
25 isValid: isValid(USER_PROFILE_FORM)(state),
26 isInaccessible: getUserProfileIsInaccessible(state.properties) || false,
27 localCluster: state.auth.localCluster,
29 resources: state.resources,
30 userProfileFormMessage: state.auth.config.clusterConfig.Workbench.UserProfileFormMessage,
34 const mapDispatchToProps = (dispatch: Dispatch) => ({
35 handleContextMenu: (event, resource: UserResource) => dispatch<any>(openUserContextMenu(event, resource)),
38 export const UserProfilePanel = compose(
39 connect(mapStateToProps, mapDispatchToProps),
41 form: USER_PROFILE_FORM,
42 onSubmit: (data, dispatch) => {
43 dispatch(saveEditedUser(data));
45 }))(UserProfilePanelRoot);