123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- import {Fragment} from 'react';
- import styled from '@emotion/styled';
- import {addErrorMessage} from 'sentry/actionCreators/indicator';
- import {RequestOptions} from 'sentry/api';
- import AlertLink from 'sentry/components/alertLink';
- import {Button} from 'sentry/components/button';
- import ButtonBar from 'sentry/components/buttonBar';
- import DeprecatedAsyncComponent from 'sentry/components/deprecatedAsyncComponent';
- import Form, {FormProps} from 'sentry/components/forms/form';
- import JsonForm from 'sentry/components/forms/jsonForm';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import Panel from 'sentry/components/panels/panel';
- import PanelBody from 'sentry/components/panels/panelBody';
- import PanelHeader from 'sentry/components/panels/panelHeader';
- import PanelItem from 'sentry/components/panels/panelItem';
- import Tag from 'sentry/components/tag';
- import accountEmailsFields from 'sentry/data/forms/accountEmails';
- import {IconDelete, IconStack} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {UserEmail} from 'sentry/types';
- import DeprecatedAsyncView from 'sentry/views/deprecatedAsyncView';
- import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader';
- const ENDPOINT = '/users/me/emails/';
- type Props = DeprecatedAsyncView['props'];
- type State = DeprecatedAsyncView['state'] & {
- emails: UserEmail[];
- };
- class AccountEmails extends DeprecatedAsyncView<Props, State> {
- getTitle() {
- return t('Emails');
- }
- getEndpoints() {
- return [];
- }
- handleSubmitSuccess: FormProps['onSubmitSuccess'] = (_change, model, id) => {
- if (id === undefined) {
- return;
- }
- model.setValue(id, '');
- this.remountComponent();
- };
- renderBody() {
- return (
- <Fragment>
- <SettingsPageHeader title={t('Email Addresses')} />
- <EmailAddresses />
- <Form
- apiMethod="POST"
- apiEndpoint={ENDPOINT}
- saveOnBlur
- allowUndo={false}
- onSubmitSuccess={this.handleSubmitSuccess}
- >
- <JsonForm forms={accountEmailsFields} />
- </Form>
- <AlertLink to="/settings/account/notifications" icon={<IconStack />}>
- {t('Want to change how many emails you get? Use the notifications panel.')}
- </AlertLink>
- </Fragment>
- );
- }
- }
- export default AccountEmails;
- export class EmailAddresses extends DeprecatedAsyncComponent<Props, State> {
- getEndpoints(): ReturnType<DeprecatedAsyncView['getEndpoints']> {
- return [['emails', ENDPOINT]];
- }
- doApiCall(endpoint: string, requestParams: RequestOptions) {
- this.setState({loading: true, emails: []}, () =>
- this.api
- .requestPromise(endpoint, requestParams)
- .then(() => this.remountComponent())
- .catch(err => {
- this.remountComponent();
- if (err?.responseJSON?.email) {
- addErrorMessage(err.responseJSON.email);
- }
- })
- );
- }
- handleSetPrimary = (email: string) =>
- this.doApiCall(ENDPOINT, {
- method: 'PUT',
- data: {email},
- });
- handleRemove = (email: string) =>
- this.doApiCall(ENDPOINT, {
- method: 'DELETE',
- data: {email},
- });
- handleVerify = (email: string) =>
- this.doApiCall(`${ENDPOINT}confirm/`, {
- method: 'POST',
- data: {email},
- });
- render() {
- const {emails, loading} = this.state;
- const primary = emails?.find(({isPrimary}) => isPrimary);
- const secondary = emails?.filter(({isPrimary}) => !isPrimary);
- if (loading) {
- return (
- <Panel>
- <PanelHeader>{t('Email Addresses')}</PanelHeader>
- <PanelBody>
- <LoadingIndicator />
- </PanelBody>
- </Panel>
- );
- }
- return (
- <Panel>
- <PanelHeader>{t('Email Addresses')}</PanelHeader>
- <PanelBody>
- {primary && (
- <EmailRow
- onRemove={this.handleRemove}
- onVerify={this.handleVerify}
- {...primary}
- />
- )}
- {secondary?.map(emailObj => (
- <EmailRow
- key={emailObj.email}
- onSetPrimary={this.handleSetPrimary}
- onRemove={this.handleRemove}
- onVerify={this.handleVerify}
- {...emailObj}
- />
- ))}
- </PanelBody>
- </Panel>
- );
- }
- }
- type EmailRowProps = {
- email: string;
- onRemove: (email: string, e: React.MouseEvent) => void;
- onVerify: (email: string, e: React.MouseEvent) => void;
- hideRemove?: boolean;
- isPrimary?: boolean;
- isVerified?: boolean;
- onSetPrimary?: (email: string, e: React.MouseEvent) => void;
- };
- function EmailRow({
- email,
- onRemove,
- onVerify,
- onSetPrimary,
- isVerified,
- isPrimary,
- hideRemove,
- }: EmailRowProps) {
- return (
- <EmailItem>
- <EmailTags>
- {email}
- {!isVerified && <Tag type="warning">{t('Unverified')}</Tag>}
- {isPrimary && <Tag type="success">{t('Primary')}</Tag>}
- </EmailTags>
- <ButtonBar gap={1}>
- {!isPrimary && isVerified && (
- <Button size="sm" onClick={e => onSetPrimary?.(email, e)}>
- {t('Set as primary')}
- </Button>
- )}
- {!isVerified && (
- <Button size="sm" onClick={e => onVerify(email, e)}>
- {t('Resend verification')}
- </Button>
- )}
- {!hideRemove && !isPrimary && (
- <Button
- aria-label={t('Remove email')}
- data-test-id="remove"
- priority="danger"
- size="sm"
- icon={<IconDelete />}
- onClick={e => onRemove(email, e)}
- />
- )}
- </ButtonBar>
- </EmailItem>
- );
- }
- const EmailTags = styled('div')`
- display: grid;
- grid-auto-flow: column;
- gap: ${space(1)};
- align-items: center;
- `;
- const EmailItem = styled(PanelItem)`
- justify-content: space-between;
- `;
|