mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
import React from 'react';
|
|
import { connect, ConnectedProps } from 'react-redux';
|
|
import { useMount } from 'react-use';
|
|
|
|
import { Page } from 'app/core/components/Page/Page';
|
|
import { StoreState } from 'app/types';
|
|
|
|
import { ChangePasswordForm } from './ChangePasswordForm';
|
|
import { changePassword, loadUser } from './state/actions';
|
|
|
|
export interface OwnProps {}
|
|
|
|
function mapStateToProps(state: StoreState) {
|
|
const userState = state.user;
|
|
const { isUpdating, user } = userState;
|
|
return {
|
|
isUpdating,
|
|
user,
|
|
};
|
|
}
|
|
|
|
const mapDispatchToProps = {
|
|
loadUser,
|
|
changePassword,
|
|
};
|
|
|
|
const connector = connect(mapStateToProps, mapDispatchToProps);
|
|
|
|
export type Props = OwnProps & ConnectedProps<typeof connector>;
|
|
|
|
export function ChangePasswordPage({ loadUser, isUpdating, user, changePassword }: Props) {
|
|
useMount(() => loadUser());
|
|
|
|
return (
|
|
<Page navId="profile/password">
|
|
<Page.Contents isLoading={!Boolean(user)}>
|
|
{user ? (
|
|
<>
|
|
<Page.OldNavOnly>
|
|
<h3 className="page-sub-heading">Change Your Password</h3>
|
|
</Page.OldNavOnly>
|
|
<ChangePasswordForm user={user} onChangePassword={changePassword} isSaving={isUpdating} />
|
|
</>
|
|
) : null}
|
|
</Page.Contents>
|
|
</Page>
|
|
);
|
|
}
|
|
|
|
export default connector(ChangePasswordPage);
|