import styled from '@emotion/styled'; import {Button} from 'sentry/components/button'; import DateTime from 'sentry/components/dateTime'; import PanelItem from 'sentry/components/panels/panelItem'; 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 ( {getDynamicText({value: token.token, fixed: 'CI_AUTH_TOKEN'})}
{t('Scopes')} {token.scopes.join(', ')}
{t('Created')}
); } 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;