123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- import {Fragment} from 'react';
- import {RouteComponentProps} from 'react-router';
- import styled from '@emotion/styled';
- import moment from 'moment';
- import {disconnectIdentity} from 'sentry/actionCreators/account';
- import Alert from 'sentry/components/alert';
- import Button from 'sentry/components/button';
- import Confirm from 'sentry/components/confirm';
- import DateTime from 'sentry/components/dateTime';
- import {Panel, PanelBody, PanelHeader, PanelItem} from 'sentry/components/panels';
- import Tag from 'sentry/components/tag';
- import {t, tct} from 'sentry/locale';
- import space from 'sentry/styles/space';
- import {UserIdentityCategory, UserIdentityConfig, UserIdentityStatus} from 'sentry/types';
- import AsyncView from 'sentry/views/asyncView';
- import EmptyMessage from 'sentry/views/settings/components/emptyMessage';
- import IdentityIcon from 'sentry/views/settings/components/identityIcon';
- import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader';
- import TextBlock from 'sentry/views/settings/components/text/textBlock';
- const ENDPOINT = '/users/me/user-identities/';
- type Props = RouteComponentProps<{}, {}>;
- type State = {
- identities: UserIdentityConfig[] | null;
- } & AsyncView['state'];
- class AccountIdentities extends AsyncView<Props, State> {
- getDefaultState() {
- return {
- ...super.getDefaultState(),
- identities: [],
- };
- }
- getEndpoints(): ReturnType<AsyncView['getEndpoints']> {
- return [['identities', ENDPOINT]];
- }
- getTitle() {
- return t('Identities');
- }
- renderItem = (identity: UserIdentityConfig) => {
- return (
- <IdentityPanelItem key={`${identity.category}:${identity.id}`}>
- <InternalContainer>
- <IdentityIcon providerId={identity.provider.key} />
- <IdentityText isSingleLine={!identity.dateAdded}>
- <IdentityName>{identity.provider.name}</IdentityName>
- {identity.dateAdded && <IdentityDateTime date={moment(identity.dateAdded)} />}
- </IdentityText>
- </InternalContainer>
- <InternalContainer>
- <TagWrapper>
- {identity.category === UserIdentityCategory.SOCIAL_IDENTITY && (
- <Tag type="default">{t('Legacy')}</Tag>
- )}
- {identity.category !== UserIdentityCategory.ORG_IDENTITY && (
- <Tag type="default">
- {identity.isLogin ? t('Sign In') : t('Integration')}
- </Tag>
- )}
- {identity.organization && (
- <Tag type="highlight">{identity.organization.slug}</Tag>
- )}
- </TagWrapper>
- {this.renderButton(identity)}
- </InternalContainer>
- </IdentityPanelItem>
- );
- };
- renderButton(identity: UserIdentityConfig) {
- return identity.status === UserIdentityStatus.CAN_DISCONNECT ? (
- <Confirm
- onConfirm={() => this.handleDisconnect(identity)}
- priority="danger"
- confirmText={t('Disconnect')}
- message={
- <Fragment>
- <Alert type="error" showIcon>
- {tct('Disconnect Your [provider] Identity?', {
- provider: identity.provider.name,
- })}
- </Alert>
- <TextBlock>
- {identity.isLogin
- ? t(
- 'After disconnecting, you will need to use a password or another identity to sign in.'
- )
- : t("This action can't be undone.")}
- </TextBlock>
- </Fragment>
- }
- >
- <Button size="sm">{t('Disconnect')}</Button>
- </Confirm>
- ) : (
- <Button
- size="sm"
- disabled
- title={
- identity.status === UserIdentityStatus.NEEDED_FOR_GLOBAL_AUTH
- ? t(
- 'You need this identity to sign into your account. If you want to disconnect it, set a password first.'
- )
- : identity.status === UserIdentityStatus.NEEDED_FOR_ORG_AUTH
- ? t('You need this identity to access your organization.')
- : null
- }
- >
- {t('Disconnect')}
- </Button>
- );
- }
- handleDisconnect = (identity: UserIdentityConfig) => {
- disconnectIdentity(identity, () => this.reloadData());
- };
- itemOrder = (a: UserIdentityConfig, b: UserIdentityConfig) => {
- function categoryRank(c: UserIdentityConfig) {
- return [
- UserIdentityCategory.GLOBAL_IDENTITY,
- UserIdentityCategory.SOCIAL_IDENTITY,
- UserIdentityCategory.ORG_IDENTITY,
- ].indexOf(c.category);
- }
- if (a.provider.name !== b.provider.name) {
- return a.provider.name < b.provider.name ? -1 : 1;
- }
- if (a.category !== b.category) {
- return categoryRank(a) - categoryRank(b);
- }
- if ((a.organization?.name ?? '') !== (b.organization?.name ?? '')) {
- return (a.organization?.name ?? '') < (b.organization?.name ?? '') ? -1 : 1;
- }
- return 0;
- };
- renderBody() {
- const appIdentities = this.state.identities
- ?.filter(identity => identity.category !== UserIdentityCategory.ORG_IDENTITY)
- .sort(this.itemOrder);
- const orgIdentities = this.state.identities
- ?.filter(identity => identity.category === UserIdentityCategory.ORG_IDENTITY)
- .sort(this.itemOrder);
- return (
- <Fragment>
- <SettingsPageHeader title="Identities" />
- <Panel>
- <PanelHeader>{t('Application Identities')}</PanelHeader>
- <PanelBody>
- {!appIdentities?.length ? (
- <EmptyMessage>
- {t(
- 'There are no application identities associated with your Sentry account'
- )}
- </EmptyMessage>
- ) : (
- appIdentities.map(this.renderItem)
- )}
- </PanelBody>
- </Panel>
- <Panel>
- <PanelHeader>{t('Organization Identities')}</PanelHeader>
- <PanelBody>
- {!orgIdentities?.length ? (
- <EmptyMessage>
- {t(
- 'There are no organization identities associated with your Sentry account'
- )}
- </EmptyMessage>
- ) : (
- orgIdentities.map(this.renderItem)
- )}
- </PanelBody>
- </Panel>
- </Fragment>
- );
- }
- }
- const IdentityPanelItem = styled(PanelItem)`
- align-items: center;
- justify-content: space-between;
- `;
- const InternalContainer = styled('div')`
- display: flex;
- flex-direction: row;
- justify-content: center;
- `;
- const IdentityText = styled('div')<{isSingleLine?: boolean}>`
- height: 36px;
- display: flex;
- flex-direction: column;
- justify-content: ${p => (p.isSingleLine ? 'center' : 'space-between')};
- margin-left: ${space(1.5)};
- `;
- const IdentityName = styled('div')`
- font-weight: bold;
- `;
- const IdentityDateTime = styled(DateTime)`
- font-size: ${p => p.theme.fontSizeRelativeSmall};
- color: ${p => p.theme.subText};
- `;
- const TagWrapper = styled('div')`
- display: flex;
- align-items: center;
- justify-content: flex-start;
- flex-grow: 1;
- margin-right: ${space(1)};
- `;
- export default AccountIdentities;
|