123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- import {Component} from 'react';
- import styled from '@emotion/styled';
- import ErrorPanel from 'sentry/components/charts/errorPanel';
- import EmptyMessage from 'sentry/components/emptyMessage';
- import IdBadge from 'sentry/components/idBadge';
- import ExternalLink from 'sentry/components/links/externalLink';
- import Link from 'sentry/components/links/link';
- import {Panel} from 'sentry/components/panels';
- import PanelTable from 'sentry/components/panels/panelTable';
- import {IconSettings, IconWarning} from 'sentry/icons';
- import {t, tct} from 'sentry/locale';
- import space from 'sentry/styles/space';
- import {DataCategory, Project} from 'sentry/types';
- import {formatUsageWithUnits} from '../utils';
- const DOCS_URL = 'https://docs.sentry.io/product/accounts/membership/#restricting-access';
- type Props = {
- dataCategory: DataCategory;
- headers: React.ReactNode[];
- usageStats: TableStat[];
- errors?: Record<string, Error>;
- isEmpty?: boolean;
- isError?: boolean;
- isLoading?: boolean;
- };
- export type TableStat = {
- accepted: number;
- dropped: number;
- filtered: number;
- project: Project;
- projectLink: string;
- projectSettingsLink: string;
- total: number;
- };
- class UsageTable extends Component<Props> {
- get formatUsageOptions() {
- const {dataCategory} = this.props;
- return {
- isAbbreviated: dataCategory !== DataCategory.ATTACHMENTS,
- useUnitScaling: dataCategory === DataCategory.ATTACHMENTS,
- };
- }
- getErrorMessage = errorMessage => {
- if (errorMessage.projectStats.responseJSON.detail === 'No projects available') {
- return (
- <EmptyMessage
- icon={<IconWarning color="gray300" legacySize="48px" />}
- title={t(
- "You don't have access to any projects, or your organization has no projects."
- )}
- description={tct('Learn more about [link:Project Access]', {
- link: <ExternalLink href={DOCS_URL} />,
- })}
- />
- );
- }
- return <IconWarning color="gray300" legacySize="48px" />;
- };
- renderTableRow(stat: TableStat & {project: Project}) {
- const {dataCategory} = this.props;
- const {project, total, accepted, filtered, dropped} = stat;
- return [
- <CellProject key={0}>
- <Link to={stat.projectLink}>
- <StyledIdBadge
- avatarSize={16}
- disableLink
- hideOverflow
- project={project}
- displayName={project.slug}
- />
- </Link>
- <SettingsIconLink to={stat.projectSettingsLink}>
- <IconSettings size="sm" />
- </SettingsIconLink>
- </CellProject>,
- <CellStat key={1}>
- {formatUsageWithUnits(total, dataCategory, this.formatUsageOptions)}
- </CellStat>,
- <CellStat key={2}>
- {formatUsageWithUnits(accepted, dataCategory, this.formatUsageOptions)}
- </CellStat>,
- <CellStat key={3}>
- {formatUsageWithUnits(filtered, dataCategory, this.formatUsageOptions)}
- </CellStat>,
- <CellStat key={4}>
- {formatUsageWithUnits(dropped, dataCategory, this.formatUsageOptions)}
- </CellStat>,
- ];
- }
- render() {
- const {isEmpty, isLoading, isError, errors, headers, usageStats} = this.props;
- if (isError) {
- return (
- <Panel>
- <ErrorPanel height="256px">{this.getErrorMessage(errors)}</ErrorPanel>
- </Panel>
- );
- }
- return (
- <StyledPanelTable isLoading={isLoading} isEmpty={isEmpty} headers={headers}>
- {usageStats.map(s => this.renderTableRow(s))}
- </StyledPanelTable>
- );
- }
- }
- export default UsageTable;
- const StyledPanelTable = styled(PanelTable)`
- grid-template-columns: repeat(5, auto);
- @media (min-width: ${p => p.theme.breakpoints.small}) {
- grid-template-columns: 1fr repeat(4, minmax(0, auto));
- }
- `;
- export const CellStat = styled('div')`
- flex-shrink: 1;
- text-align: right;
- font-variant-numeric: tabular-nums;
- `;
- export const CellProject = styled(CellStat)`
- display: flex;
- align-items: center;
- text-align: left;
- `;
- const StyledIdBadge = styled(IdBadge)`
- overflow: hidden;
- white-space: nowrap;
- flex-shrink: 1;
- `;
- const SettingsIconLink = styled(Link)`
- color: ${p => p.theme.gray300};
- align-items: center;
- display: inline-flex;
- justify-content: space-between;
- margin-right: ${space(1.5)};
- margin-left: ${space(1.0)};
- transition: 0.5s opacity ease-out;
- &:hover {
- color: ${p => p.theme.textColor};
- }
- `;
|