123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- import styled from '@emotion/styled';
- import {Button} from 'sentry/components/button';
- import DateTime from 'sentry/components/dateTime';
- import {PanelItem} from 'sentry/components/panels';
- import TextCopyInput from 'sentry/components/textCopyInput';
- import {IconSubtract} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {InternalAppApiToken} from 'sentry/types';
- import getDynamicText from 'sentry/utils/getDynamicText';
- type Props = {
- onRemove: (token: InternalAppApiToken) => void;
- token: InternalAppApiToken;
- };
- function ApiTokenRow({token, onRemove}: Props) {
- return (
- <StyledPanelItem>
- <Controls>
- <InputWrapper>
- <TextCopyInput>
- {getDynamicText({value: token.token, fixed: 'CI_AUTH_TOKEN'})}
- </TextCopyInput>
- </InputWrapper>
- <Button
- size="sm"
- onClick={() => onRemove(token)}
- icon={<IconSubtract isCircled size="xs" />}
- >
- {t('Remove')}
- </Button>
- </Controls>
- <Details>
- <ScopesWrapper>
- <Heading>{t('Scopes')}</Heading>
- <ScopeList>{token.scopes.join(', ')}</ScopeList>
- </ScopesWrapper>
- <div>
- <Heading>{t('Created')}</Heading>
- <Time>
- <DateTime
- date={getDynamicText({
- value: token.dateCreated,
- fixed: new Date(1508208080000), // National Pasta Day
- })}
- />
- </Time>
- </div>
- </Details>
- </StyledPanelItem>
- );
- }
- const StyledPanelItem = styled(PanelItem)`
- flex-direction: column;
- padding: ${space(2)};
- `;
- const Controls = styled('div')`
- display: flex;
- align-items: center;
- margin-bottom: ${space(1)};
- `;
- const InputWrapper = styled('div')`
- font-size: ${p => p.theme.fontSizeRelativeSmall};
- flex: 1;
- margin-right: ${space(1)};
- `;
- const Details = styled('div')`
- display: flex;
- margin-top: ${space(1)};
- `;
- const ScopesWrapper = styled('div')`
- flex: 1;
- `;
- const ScopeList = styled('div')`
- font-size: ${p => p.theme.fontSizeRelativeSmall};
- line-height: 1.4;
- `;
- const Time = styled('time')`
- font-size: ${p => p.theme.fontSizeRelativeSmall};
- line-height: 1.4;
- `;
- const Heading = styled('div')`
- font-size: ${p => p.theme.fontSizeMedium};
- text-transform: uppercase;
- color: ${p => p.theme.subText};
- margin-bottom: ${space(1)};
- `;
- export default ApiTokenRow;
|