import {updateUser} from 'sentry/actionCreators/account'; import {APIRequestMethod} from 'sentry/api'; import AvatarChooser from 'sentry/components/avatarChooser'; import Form from 'sentry/components/forms/form'; import JsonForm from 'sentry/components/forms/jsonForm'; import accountDetailsFields from 'sentry/data/forms/accountDetails'; import accountPreferencesFields from 'sentry/data/forms/accountPreferences'; import {t} from 'sentry/locale'; import {User} from 'sentry/types'; import AsyncView from 'sentry/views/asyncView'; import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader'; const ENDPOINT = '/users/me/'; class AccountDetails extends AsyncView { getEndpoints(): ReturnType { // local state is NOT updated when the form saves return [['user', ENDPOINT]]; } handleSubmitSuccess = (user: User) => { // the updateUser method updates our Config Store // No components listen to the ConfigStore, they just access it directly updateUser(user); // We need to update the state, because AvatarChooser is using it, // otherwise it will flick this.setState({ user, }); }; renderBody() { const user = this.state.user as User; const formCommonProps: Partial = { apiEndpoint: ENDPOINT, apiMethod: 'PUT' as APIRequestMethod, allowUndo: true, saveOnBlur: true, onSubmitSuccess: this.handleSubmitSuccess, }; return (
{ this.handleSubmitSuccess(resp as User); }} isUser />
); } } export default AccountDetails;