123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380 |
- import {Fragment, memo, useCallback, useMemo, useState} from 'react';
- import {css} from '@emotion/react';
- import styled from '@emotion/styled';
- import {hasEveryAccess} from 'sentry/components/acl/access';
- import {LinkButton} from 'sentry/components/button';
- import ProjectBadge from 'sentry/components/idBadge/projectBadge';
- import {InputGroup} from 'sentry/components/inputGroup';
- import LoadingError from 'sentry/components/loadingError';
- import {PanelTable} from 'sentry/components/panels/panelTable';
- import {Tooltip} from 'sentry/components/tooltip';
- import {IconArrow, IconChevron, IconSettings} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {Project} from 'sentry/types/project';
- import {formatAbbreviatedNumber} from 'sentry/utils/formatters';
- import {formatNumberWithDynamicDecimalPoints} from 'sentry/utils/number/formatNumberWithDynamicDecimalPoints';
- import oxfordizeArray from 'sentry/utils/oxfordizeArray';
- import {useDebouncedValue} from 'sentry/utils/useDebouncedValue';
- import useOrganization from 'sentry/utils/useOrganization';
- import {organizationSamplingForm} from 'sentry/views/settings/dynamicSampling/utils/organizationSamplingForm';
- import {balanceSampleRate} from 'sentry/views/settings/dynamicSampling/utils/rebalancing';
- import {useProjectSampleCounts} from 'sentry/views/settings/dynamicSampling/utils/useProjectSampleCounts';
- const {useFormField} = organizationSamplingForm;
- interface Props {
- period: '24h' | '30d';
- }
- export function ProjectsPreviewTable({period}: Props) {
- const [tableSort, setTableSort] = useState<'asc' | 'desc'>('desc');
- const {value: targetSampleRate, initialValue: initialTargetSampleRate} =
- useFormField('targetSampleRate');
- const {data, isPending, isError, refetch} = useProjectSampleCounts({period});
- const debouncedTargetSampleRate = useDebouncedValue(
- targetSampleRate,
- // For longer lists we debounce the input to avoid too many re-renders
- data.length > 100 ? 200 : 0
- );
- const {balancedItems} = useMemo(() => {
- const targetRate = Math.min(100, Math.max(0, Number(debouncedTargetSampleRate) || 0));
- return balanceSampleRate({
- targetSampleRate: targetRate / 100,
- items: data,
- });
- }, [debouncedTargetSampleRate, data]);
- const initialSampleRatesBySlug = useMemo(() => {
- const targetRate = Math.min(100, Math.max(0, Number(initialTargetSampleRate) || 0));
- const {balancedItems: initialBalancedItems} = balanceSampleRate({
- targetSampleRate: targetRate / 100,
- items: data,
- });
- return initialBalancedItems.reduce((acc, item) => {
- acc[item.id] = item.sampleRate;
- return acc;
- }, {});
- }, [initialTargetSampleRate, data]);
- const handleTableSort = useCallback(() => {
- setTableSort(value => (value === 'asc' ? 'desc' : 'asc'));
- }, []);
- if (isError) {
- return <LoadingError onRetry={refetch} />;
- }
- return (
- <ProjectsTable
- stickyHeaders
- emptyMessage={t('No active projects found in the selected period.')}
- isEmpty={!data.length}
- isLoading={isPending}
- headers={[
- t('Project'),
- <SortableHeader key="spans" onClick={handleTableSort}>
- {t('Spans')}
- <IconArrow direction={tableSort === 'desc' ? 'down' : 'up'} size="xs" />
- </SortableHeader>,
- <RateHeaderCell key="projectedRate">{t('Projected Rate')}</RateHeaderCell>,
- ]}
- >
- {balancedItems
- .toSorted((a, b) => {
- if (tableSort === 'asc') {
- return a.count - b.count;
- }
- return b.count - a.count;
- })
- .map(({id, project, count, ownCount, sampleRate, subProjects}) => (
- <TableRow
- key={id}
- project={project}
- count={count}
- ownCount={ownCount}
- sampleRate={sampleRate}
- initialSampleRate={initialSampleRatesBySlug[project.slug]}
- subProjects={subProjects}
- />
- ))}
- </ProjectsTable>
- );
- }
- interface SubProject {
- count: number;
- slug: string;
- }
- function getSubProjectContent(
- ownSlug: string,
- subProjects: SubProject[],
- isExpanded: boolean
- ) {
- let subProjectContent: React.ReactNode = t('No distributed traces');
- if (subProjects.length > 1) {
- const truncatedSubProjects = subProjects.slice(0, MAX_PROJECTS_COLLAPSED);
- const overflowCount = subProjects.length - MAX_PROJECTS_COLLAPSED;
- const moreTranslation = t('+%d more', overflowCount);
- const stringifiedSubProjects =
- overflowCount > 0
- ? `${truncatedSubProjects.map(p => p.slug).join(', ')}, ${moreTranslation}`
- : oxfordizeArray(truncatedSubProjects.map(p => p.slug));
- subProjectContent = isExpanded ? (
- <Fragment>
- <div>{ownSlug}</div>
- {subProjects.map(subProject => (
- <div key={subProject.slug}>{subProject.slug}</div>
- ))}
- </Fragment>
- ) : (
- t('Including spans in ') + stringifiedSubProjects
- );
- }
- return subProjectContent;
- }
- function getSubSpansContent(
- ownCount: number,
- subProjects: SubProject[],
- isExpanded: boolean
- ) {
- let subSpansContent: React.ReactNode = '';
- if (subProjects.length > 1) {
- const subProjectSum = subProjects.reduce(
- (acc, subProject) => acc + subProject.count,
- 0
- );
- subSpansContent = isExpanded ? (
- <Fragment>
- <div>{formatAbbreviatedNumber(ownCount, 2)}</div>
- {subProjects.map(subProject => (
- <div key={subProject.slug}>{formatAbbreviatedNumber(subProject.count)}</div>
- ))}
- </Fragment>
- ) : (
- formatAbbreviatedNumber(subProjectSum)
- );
- }
- return subSpansContent;
- }
- const MAX_PROJECTS_COLLAPSED = 3;
- const TableRow = memo(function TableRow({
- project,
- count,
- ownCount,
- sampleRate,
- initialSampleRate,
- subProjects,
- }: {
- count: number;
- initialSampleRate: number;
- ownCount: number;
- project: Project;
- sampleRate: number;
- subProjects: SubProject[];
- }) {
- const organization = useOrganization();
- const [isExpanded, setIsExpanded] = useState(false);
- const isExpandable = subProjects.length > 0;
- const hasAccess = hasEveryAccess(['project:write'], {organization, project});
- const subProjectContent = getSubProjectContent(project.slug, subProjects, isExpanded);
- const subSpansContent = getSubSpansContent(ownCount, subProjects, isExpanded);
- return (
- <Fragment key={project.slug}>
- <Cell>
- <FirstCellLine data-has-chevron={isExpandable}>
- <HiddenButton
- disabled={!isExpandable}
- aria-label={isExpanded ? t('Collapse') : t('Expand')}
- onClick={() => setIsExpanded(value => !value)}
- >
- {isExpandable && (
- <StyledIconChevron direction={isExpanded ? 'down' : 'right'} />
- )}
- <ProjectBadge project={project} disableLink avatarSize={16} />
- </HiddenButton>
- {hasAccess && (
- <SettingsButton
- title={t('Open Project Settings')}
- aria-label={t('Open Project Settings')}
- size="xs"
- priority="link"
- icon={<IconSettings />}
- to={`/organizations/${organization.slug}/settings/projects/${project.slug}/performance`}
- />
- )}
- </FirstCellLine>
- <SubProjects>{subProjectContent}</SubProjects>
- </Cell>
- <Cell>
- <FirstCellLine data-align="right">{formatAbbreviatedNumber(count)}</FirstCellLine>
- <SubSpans>{subSpansContent}</SubSpans>
- </Cell>
- <Cell>
- <FirstCellLine>
- <Tooltip
- title={t('To edit project sample rates, switch to manual sampling mode.')}
- >
- <InputGroup
- css={css`
- width: 150px;
- `}
- >
- <InputGroup.Input
- disabled
- size="sm"
- value={formatNumberWithDynamicDecimalPoints(sampleRate * 100, 3)}
- />
- <InputGroup.TrailingItems>
- <TrailingPercent>%</TrailingPercent>
- </InputGroup.TrailingItems>
- </InputGroup>
- </Tooltip>
- </FirstCellLine>
- {sampleRate !== initialSampleRate && (
- <SmallPrint>
- {t(
- 'previous: %s%%',
- formatNumberWithDynamicDecimalPoints(initialSampleRate * 100, 3)
- )}
- </SmallPrint>
- )}
- </Cell>
- </Fragment>
- );
- });
- const ProjectsTable = styled(PanelTable)`
- grid-template-columns: 1fr max-content max-content;
- `;
- const SmallPrint = styled('span')`
- font-size: ${p => p.theme.fontSizeExtraSmall};
- color: ${p => p.theme.subText};
- line-height: 1.5;
- text-align: right;
- `;
- const SortableHeader = styled('button')`
- border: none;
- background: none;
- cursor: pointer;
- display: flex;
- text-transform: inherit;
- align-items: center;
- gap: ${space(0.5)};
- `;
- const RateHeaderCell = styled('div')`
- display: flex;
- justify-content: space-between;
- `;
- const Cell = styled('div')`
- display: flex;
- flex-direction: column;
- gap: ${space(0.25)};
- `;
- const FirstCellLine = styled('div')`
- display: flex;
- align-items: center;
- height: 32px;
- & > * {
- flex-shrink: 0;
- }
- &[data-align='right'] {
- justify-content: flex-end;
- }
- &[data-has-chevron='false'] {
- padding-left: ${space(2)};
- }
- `;
- const SubProjects = styled('div')`
- color: ${p => p.theme.subText};
- font-size: ${p => p.theme.fontSizeSmall};
- margin-left: ${space(2)};
- & > div {
- line-height: 2;
- margin-right: -${space(2)};
- padding-right: ${space(2)};
- margin-left: -${space(1)};
- padding-left: ${space(1)};
- border-top-left-radius: ${p => p.theme.borderRadius};
- border-bottom-left-radius: ${p => p.theme.borderRadius};
- &:nth-child(odd) {
- background: ${p => p.theme.backgroundSecondary};
- }
- }
- `;
- const SubSpans = styled('div')`
- color: ${p => p.theme.subText};
- font-size: ${p => p.theme.fontSizeSmall};
- text-align: right;
- & > div {
- line-height: 2;
- margin-left: -${space(2)};
- padding-left: ${space(2)};
- margin-right: -${space(1)};
- padding-right: ${space(1)};
- border-top-right-radius: ${p => p.theme.borderRadius};
- border-bottom-right-radius: ${p => p.theme.borderRadius};
- &:nth-child(odd) {
- background: ${p => p.theme.backgroundSecondary};
- }
- }
- `;
- const HiddenButton = styled('button')`
- background: none;
- border: none;
- padding: 0;
- cursor: pointer;
- display: flex;
- align-items: center;
- /* Overwrite the platform icon's cursor style */
- &:not([disabled]) img {
- cursor: pointer;
- }
- `;
- const StyledIconChevron = styled(IconChevron)`
- height: 12px;
- width: 12px;
- margin-right: ${space(0.5)};
- color: ${p => p.theme.subText};
- `;
- const SettingsButton = styled(LinkButton)`
- margin-left: ${space(0.5)};
- color: ${p => p.theme.subText};
- visibility: hidden;
- &:focus {
- visibility: visible;
- }
- ${Cell}:hover & {
- visibility: visible;
- }
- `;
- const TrailingPercent = styled('strong')`
- padding: 0 ${space(0.25)};
- `;
|