123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- import {ReactNode, useCallback, useMemo} from 'react';
- import styled from '@emotion/styled';
- import type {Location} from 'history';
- import {PlatformIcon} from 'platformicons';
- import GridEditable, {GridColumnOrder} from 'sentry/components/gridEditable';
- import Link from 'sentry/components/links/link';
- import renderSortableHeaderCell from 'sentry/components/replays/renderSortableHeaderCell';
- import useQueryBasedColumnResize from 'sentry/components/replays/useQueryBasedColumnResize';
- import useQueryBasedSorting from 'sentry/components/replays/useQueryBasedSorting';
- import TextOverflow from 'sentry/components/textOverflow';
- import {Tooltip} from 'sentry/components/tooltip';
- import {IconCursorArrow} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {ColorOrAlias} from 'sentry/utils/theme';
- import {useLocation} from 'sentry/utils/useLocation';
- import useOrganization from 'sentry/utils/useOrganization';
- import useProjects from 'sentry/utils/useProjects';
- import {normalizeUrl} from 'sentry/utils/withDomainRequired';
- import {DeadRageSelectorItem} from 'sentry/views/replays/types';
- export interface UrlState {
- widths: string[];
- }
- export function getAriaLabel(str: string) {
- const pre = str.split('aria="')[1];
- if (!pre) {
- return '';
- }
- return pre.substring(0, pre.lastIndexOf('"]'));
- }
- export function hydratedSelectorData(data, clickType?): DeadRageSelectorItem[] {
- return data.map(d => ({
- ...(clickType
- ? {[clickType]: d[clickType]}
- : {
- count_dead_clicks: d.count_dead_clicks,
- count_rage_clicks: d.count_rage_clicks,
- }),
- dom_element: d.dom_element,
- element: d.dom_element.split(/[#.]+/)[0],
- aria_label: getAriaLabel(d.dom_element),
- project_id: d.project_id,
- }));
- }
- export function transformSelectorQuery(selector: string) {
- return selector
- .replaceAll('"', `\\"`)
- .replaceAll('aria=', 'aria-label=')
- .replaceAll('testid=', 'data-test-id=')
- .replaceAll(':', '\\:')
- .replaceAll('*', '\\*');
- }
- interface Props {
- clickCountColumns: {key: string; name: string}[];
- clickCountSortable: boolean;
- data: DeadRageSelectorItem[];
- isError: boolean;
- isLoading: boolean;
- location: Location<any>;
- title?: ReactNode;
- }
- const BASE_COLUMNS: GridColumnOrder<string>[] = [
- {key: 'project_id', name: 'project'},
- {key: 'element', name: 'element'},
- {key: 'dom_element', name: 'selector'},
- {key: 'aria_label', name: 'aria label'},
- ];
- export function ProjectInfo({id, isWidget}: {id: number; isWidget: boolean}) {
- const {projects} = useProjects();
- const project = projects.find(p => p.id === id.toString());
- const platform = project?.platform;
- const slug = project?.slug;
- return isWidget ? (
- <WidgetProjectContainer>
- <Tooltip title={slug}>
- <PlatformIcon size={16} platform={platform ?? 'default'} />
- </Tooltip>
- </WidgetProjectContainer>
- ) : (
- <IndexProjectContainer>
- <PlatformIcon size={16} platform={platform ?? 'default'} />
- <TextOverflow>{slug}</TextOverflow>
- </IndexProjectContainer>
- );
- }
- export default function SelectorTable({
- clickCountColumns,
- data,
- isError,
- isLoading,
- location,
- title,
- clickCountSortable,
- }: Props) {
- const {currentSort, makeSortLinkGenerator} = useQueryBasedSorting({
- defaultSort: {field: clickCountColumns[0].key, kind: 'desc'},
- location,
- });
- const {columns, handleResizeColumn} = useQueryBasedColumnResize({
- columns: BASE_COLUMNS.concat(clickCountColumns),
- location,
- });
- const renderHeadCell = useMemo(
- () =>
- renderSortableHeaderCell({
- currentSort,
- makeSortLinkGenerator,
- onClick: () => {},
- rightAlignedColumns: [],
- sortableColumns: clickCountSortable ? clickCountColumns : [],
- }),
- [currentSort, makeSortLinkGenerator, clickCountColumns, clickCountSortable]
- );
- const queryPrefix = currentSort.field.includes('count_dead_clicks') ? 'dead' : 'rage';
- const renderBodyCell = useCallback(
- (column, dataRow) => {
- const value = dataRow[column.key];
- switch (column.key) {
- case 'dom_element':
- return (
- <SelectorLink
- value={value}
- selectorQuery={`${queryPrefix}.selector:"${transformSelectorQuery(value)}"`}
- />
- );
- case 'element':
- case 'aria_label':
- return <TextOverflow>{value}</TextOverflow>;
- case 'project_id':
- return <ProjectInfo id={value} isWidget={false} />;
- default:
- return renderClickCount<DeadRageSelectorItem>(column, dataRow);
- }
- },
- [queryPrefix]
- );
- return (
- <GridEditable
- error={isError}
- isLoading={isLoading}
- data={data ?? []}
- columnOrder={columns}
- columnSortBy={[]}
- stickyHeader
- grid={{
- onResizeColumn: handleResizeColumn,
- renderHeadCell,
- renderBodyCell,
- }}
- location={location as Location<any>}
- title={title}
- />
- );
- }
- export function SelectorLink({
- value,
- selectorQuery,
- }: {
- selectorQuery: string;
- value: string;
- }) {
- const organization = useOrganization();
- const location = useLocation();
- return (
- <StyledTextOverflow>
- <Link
- to={{
- pathname: normalizeUrl(`/organizations/${organization.slug}/replays/`),
- query: {
- ...location.query,
- query: selectorQuery,
- cursor: undefined,
- },
- }}
- >
- <StyledTooltip
- position="top-start"
- title={t('Search for replays with clicks on this selector')}
- >
- {value}
- </StyledTooltip>
- </Link>
- </StyledTextOverflow>
- );
- }
- function renderClickCount<T>(column: GridColumnOrder<string>, dataRow: T) {
- const color = column.key === 'count_dead_clicks' ? 'yellow300' : 'red300';
- return (
- <ClickColor color={color}>
- <IconCursorArrow size="xs" />
- {dataRow[column.key]}
- </ClickColor>
- );
- }
- const ClickColor = styled(TextOverflow)<{color: ColorOrAlias}>`
- color: ${p => p.theme[p.color]};
- display: grid;
- grid-template-columns: auto auto;
- gap: ${space(0.75)};
- align-items: center;
- justify-content: start;
- `;
- const StyledTextOverflow = styled(TextOverflow)`
- color: ${p => p.theme.blue300};
- `;
- const StyledTooltip = styled(Tooltip)`
- display: inherit;
- `;
- const WidgetProjectContainer = styled('div')`
- display: flex;
- flex-direction: row;
- align-items: center;
- gap: ${space(0.75)};
- `;
- const IndexProjectContainer = styled(WidgetProjectContainer)`
- padding-right: ${space(1)};
- `;
|