import {updateUser} from 'sentry/actionCreators/account'; import {APIRequestMethod} from 'sentry/api'; import AvatarChooser from 'sentry/components/avatarChooser'; import Form, {FormProps} from 'sentry/components/forms/form'; import JsonForm from 'sentry/components/forms/jsonForm'; import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle'; import accountDetailsFields from 'sentry/data/forms/accountDetails'; import accountPreferencesFields from 'sentry/data/forms/accountPreferences'; import {t} from 'sentry/locale'; import {Organization, User} from 'sentry/types'; import withOrganization from 'sentry/utils/withOrganization'; import DeprecatedAsyncView, {AsyncViewProps} from 'sentry/views/deprecatedAsyncView'; import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader'; const ENDPOINT = '/users/me/'; interface Props extends AsyncViewProps { organization: Organization; } class AccountDetails extends DeprecatedAsyncView { 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 withOrganization(AccountDetails);