123456789101112131415161718192021222324252627282930313233343536 |
- import styled from '@emotion/styled';
- import ErrorBoundary from 'sentry/components/errorBoundary';
- import getBadge from './getBadge';
- type Props = React.ComponentProps<typeof getBadge> & Record<string, any>;
- /**
- * Public interface for all "id badges":
- * Organization, project, team, user
- */
- const IdBadge = (props: Props) => {
- const componentBadge = getBadge(props);
- if (!componentBadge) {
- throw new Error(
- 'IdBadge: required property missing (organization, project, team, member, user) or misconfigured'
- );
- }
- return <InlineErrorBoundary mini>{componentBadge}</InlineErrorBoundary>;
- };
- export default IdBadge;
- const InlineErrorBoundary = styled(ErrorBoundary)`
- background-color: transparent;
- border-color: transparent;
- display: flex;
- align-items: center;
- margin-bottom: 0;
- box-shadow: none;
- padding: 0; /* Because badges don't have any padding, so this should make the boundary fit well */
- `;
|