123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- import {CSSProperties, useCallback, useMemo} from 'react';
- import styled from '@emotion/styled';
- import classNames from 'classnames';
- import beautify from 'js-beautify';
- import {CodeSnippet} from 'sentry/components/codeSnippet';
- import BreadcrumbIcon from 'sentry/components/events/interfaces/breadcrumbs/breadcrumb/type/icon';
- import {getDetails} from 'sentry/components/replays/breadcrumbs/utils';
- import {relativeTimeInMs} from 'sentry/components/replays/utils';
- import {space} from 'sentry/styles/space';
- import useCrumbHandlers from 'sentry/utils/replays/hooks/useCrumbHandlers';
- import type {Extraction} from 'sentry/utils/replays/hooks/useExtractedCrumbHtml';
- import IconWrapper from 'sentry/views/replays/detail/iconWrapper';
- import TimestampButton from 'sentry/views/replays/detail/timestampButton';
- type Props = {
- currentHoverTime: number | undefined;
- currentTime: number;
- mutation: Extraction;
- startTimestampMs: number;
- style: CSSProperties;
- };
- function DomMutationRow({
- currentHoverTime,
- currentTime,
- mutation,
- startTimestampMs,
- style,
- }: Props) {
- const {html, crumb: breadcrumb} = mutation;
- const {handleMouseEnter, handleMouseLeave, handleClick} =
- useCrumbHandlers(startTimestampMs);
- const onClickTimestamp = useCallback(
- () => handleClick(breadcrumb),
- [handleClick, breadcrumb]
- );
- const onMouseEnter = useCallback(
- () => handleMouseEnter(breadcrumb),
- [handleMouseEnter, breadcrumb]
- );
- const onMouseLeave = useCallback(
- () => handleMouseLeave(breadcrumb),
- [handleMouseLeave, breadcrumb]
- );
- const crumbTime = useMemo(
- () => relativeTimeInMs(breadcrumb.timestamp || 0, startTimestampMs),
- [breadcrumb.timestamp, startTimestampMs]
- );
- const hasOccurred = currentTime >= crumbTime;
- const isBeforeHover = currentHoverTime === undefined || currentHoverTime >= crumbTime;
- const {title} = getDetails(breadcrumb);
- return (
- <MutationListItem
- className={classNames({
- beforeCurrentTime: hasOccurred,
- afterCurrentTime: !hasOccurred,
- beforeHoverTime: currentHoverTime !== undefined && isBeforeHover,
- afterHoverTime: currentHoverTime !== undefined && !isBeforeHover,
- })}
- onMouseEnter={onMouseEnter}
- onMouseLeave={onMouseLeave}
- style={style}
- >
- <IconWrapper color={breadcrumb.color} hasOccurred={hasOccurred}>
- <BreadcrumbIcon type={breadcrumb.type} />
- </IconWrapper>
- <List>
- <Row>
- <Title hasOccurred={hasOccurred}>{title}</Title>
- <TimestampButton
- onClick={onClickTimestamp}
- startTimestampMs={startTimestampMs}
- timestampMs={breadcrumb.timestamp || ''}
- />
- </Row>
- <Selector>{breadcrumb.message}</Selector>
- <CodeContainer>
- <CodeSnippet language="html" hideCopyButton>
- {beautify.html(html, {indent_size: 2})}
- </CodeSnippet>
- </CodeContainer>
- </List>
- </MutationListItem>
- );
- }
- const MutationListItem = styled('div')`
- display: flex;
- gap: ${space(1)};
- padding: ${space(1)} ${space(1.5)};
- /* Overridden in TabItemContainer, depending on *CurrentTime and *HoverTime classes */
- border-top: 1px solid transparent;
- border-bottom: 1px solid transparent;
- &:hover {
- background-color: ${p => p.theme.hover};
- }
- /*
- Draw a vertical line behind the breadcrumb icon.
- The line connects each row together, but is truncated for the first and last items.
- */
- position: relative;
- &::after {
- content: '';
- position: absolute;
- top: 0;
- /* $padding + $half_icon_width - $space_for_the_line */
- left: calc(${space(1.5)} + (24px / 2) - 1px);
- width: 1px;
- height: 100%;
- background: ${p => p.theme.gray200};
- }
- &:first-of-type::after {
- top: ${space(1)};
- bottom: 0;
- }
- &:last-of-type::after {
- top: 0;
- height: ${space(1)};
- }
- &:only-of-type::after {
- height: 0;
- }
- `;
- const List = styled('div')`
- display: flex;
- flex-direction: column;
- overflow: hidden;
- width: 100%;
- `;
- const Row = styled('div')`
- display: flex;
- flex-direction: row;
- font-size: ${p => p.theme.fontSizeSmall};
- `;
- const Title = styled('span')<{hasOccurred?: boolean}>`
- color: ${p => (p.hasOccurred ? p.theme.gray400 : p.theme.gray300)};
- font-size: ${p => p.theme.fontSizeMedium};
- font-weight: bold;
- line-height: ${p => p.theme.text.lineHeightBody};
- text-transform: capitalize;
- ${p => p.theme.overflowEllipsis};
- `;
- const Selector = styled('p')`
- color: ${p => p.theme.gray300};
- font-size: ${p => p.theme.fontSizeSmall};
- margin-bottom: 0;
- `;
- const CodeContainer = styled('div')`
- margin-top: ${space(1)};
- max-height: 400px;
- max-width: 100%;
- overflow: auto;
- `;
- export default DomMutationRow;
|