mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* rewrite user profile edit to react (#17525) * disableLogin change, still need to fix tooltip * left out disable form for other auth * PR changes - wrapper to render, userId instead of bool, optional user in state, change provider child param order * moved directive to angular_wrappers * catch api error * finally * move user arg back to end- optional * optional type sig
106 lines
3.1 KiB
TypeScript
106 lines
3.1 KiB
TypeScript
import React, { PureComponent, ChangeEvent, MouseEvent } from 'react';
|
|
import { Button, FormLabel, Input, Tooltip } from '@grafana/ui';
|
|
import { User } from 'app/types';
|
|
import config from 'app/core/config';
|
|
import { ProfileUpdateFields } from 'app/core/utils/UserProvider';
|
|
|
|
export interface Props {
|
|
user: User;
|
|
isSavingUser: boolean;
|
|
updateProfile: (payload: ProfileUpdateFields) => void;
|
|
}
|
|
|
|
export interface State {
|
|
name: string;
|
|
email: string;
|
|
login: string;
|
|
}
|
|
|
|
export class UserProfileEditForm extends PureComponent<Props, State> {
|
|
constructor(props: Props) {
|
|
super(props);
|
|
|
|
const {
|
|
user: { name, email, login },
|
|
} = this.props;
|
|
|
|
this.state = {
|
|
name,
|
|
email,
|
|
login,
|
|
};
|
|
}
|
|
|
|
onNameChange = (event: ChangeEvent<HTMLInputElement>) => {
|
|
this.setState({ name: event.target.value });
|
|
};
|
|
|
|
onEmailChange = (event: ChangeEvent<HTMLInputElement>) => {
|
|
this.setState({ email: event.target.value });
|
|
};
|
|
|
|
onLoginChange = (event: ChangeEvent<HTMLInputElement>) => {
|
|
this.setState({ login: event.target.value });
|
|
};
|
|
|
|
onSubmitProfileUpdate = (event: MouseEvent<HTMLInputElement>) => {
|
|
event.preventDefault();
|
|
this.props.updateProfile({ ...this.state });
|
|
};
|
|
|
|
render() {
|
|
const { name, email, login } = this.state;
|
|
const { isSavingUser } = this.props;
|
|
const { disableLoginForm } = config;
|
|
|
|
return (
|
|
<>
|
|
<h3 className="page-sub-heading">Edit Profile</h3>
|
|
<form name="userForm" className="gf-form-group">
|
|
<div className="gf-form max-width-30">
|
|
<FormLabel className="width-8">Name</FormLabel>
|
|
<Input className="gf-form-input max-width-22" type="text" onChange={this.onNameChange} value={name} />
|
|
</div>
|
|
<div className="gf-form max-width-30">
|
|
<FormLabel className="width-8">Email</FormLabel>
|
|
<Input
|
|
className="gf-form-input max-width-22"
|
|
type="text"
|
|
onChange={this.onEmailChange}
|
|
value={email}
|
|
disabled={disableLoginForm}
|
|
/>
|
|
{disableLoginForm && (
|
|
<Tooltip content="Login Details Locked - managed in another system.">
|
|
<i className="fa fa-lock gf-form-icon--right-absolute" />
|
|
</Tooltip>
|
|
)}
|
|
</div>
|
|
<div className="gf-form max-width-30">
|
|
<FormLabel className="width-8">Username</FormLabel>
|
|
<Input
|
|
className="gf-form-input max-width-22"
|
|
type="text"
|
|
onChange={this.onLoginChange}
|
|
value={login}
|
|
disabled={disableLoginForm}
|
|
/>
|
|
{disableLoginForm && (
|
|
<Tooltip content="Login Details Locked - managed in another system.">
|
|
<i className="fa fa-lock gf-form-icon--right-absolute" />
|
|
</Tooltip>
|
|
)}
|
|
</div>
|
|
<div className="gf-form-button-row">
|
|
<Button variant="primary" onClick={this.onSubmitProfileUpdate} disabled={isSavingUser}>
|
|
Save
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default UserProfileEditForm;
|