import {Fragment} from 'react'; import {browserHistory} from 'react-router'; import styled from '@emotion/styled'; import type {Location} from 'history'; import omit from 'lodash/omit'; import {CompactSelect} from 'sentry/components/compactSelect'; import SearchBar from 'sentry/components/events/searchBar'; import * as Layout from 'sentry/components/layouts/thirds'; import {DatePageFilter} from 'sentry/components/organizations/datePageFilter'; import {EnvironmentPageFilter} from 'sentry/components/organizations/environmentPageFilter'; import PageFilterBar from 'sentry/components/organizations/pageFilterBar'; import {normalizeDateTimeParams} from 'sentry/components/organizations/pageFilters/parse'; import Pagination from 'sentry/components/pagination'; import {space} from 'sentry/styles/space'; import type {Organization} from 'sentry/types'; import {defined} from 'sentry/utils'; import {trackAnalytics} from 'sentry/utils/analytics'; import DiscoverQuery from 'sentry/utils/discover/discoverQuery'; import type EventView from 'sentry/utils/discover/eventView'; import SuspectSpansQuery from 'sentry/utils/performance/suspectSpans/suspectSpansQuery'; import {VisuallyCompleteWithData} from 'sentry/utils/performanceForSentry'; import {decodeScalar} from 'sentry/utils/queryString'; import useProjects from 'sentry/utils/useProjects'; import type {SetStateAction} from '../types'; import OpsFilter from './opsFilter'; import SuspectSpansTable from './suspectSpansTable'; import type {SpanSort, SpansTotalValues} from './types'; import { getSuspectSpanSortFromEventView, getTotalsView, SPAN_RELATIVE_PERIODS, SPAN_RETENTION_DAYS, SPAN_SORT_OPTIONS, SPAN_SORT_TO_FIELDS, } from './utils'; const ANALYTICS_VALUES = { spanOp: (organization: Organization, value: string | undefined) => trackAnalytics('performance_views.spans.change_op', { organization, operation_name: value, }), sort: (organization: Organization, value: string | undefined) => trackAnalytics('performance_views.spans.change_sort', { organization, sort_column: value, }), }; type Props = { eventView: EventView; location: Location; organization: Organization; projectId: string; setError: SetStateAction; transactionName: string; }; function SpansContent(props: Props) { const {location, organization, eventView, projectId, transactionName} = props; const query = decodeScalar(location.query.query, ''); function handleChange(key: string) { return function (value: string | undefined) { ANALYTICS_VALUES[key]?.(organization, value); const queryParams = normalizeDateTimeParams({ ...(location.query || {}), [key]: value, }); // do not propagate pagination when making a new search const toOmit = ['cursor']; if (!defined(value)) { toOmit.push(key); } const searchQueryParams = omit(queryParams, toOmit); browserHistory.push({ ...location, query: searchQueryParams, }); }; } const spanOp = decodeScalar(location.query.spanOp); const spanGroup = decodeScalar(location.query.spanGroup); const sort = getSuspectSpanSortFromEventView(eventView); const spansView = getSpansEventView(eventView, sort.field); const totalsView = getTotalsView(eventView); const {projects} = useProjects(); return ( ({value: opt.field, label: opt.label}))} onChange={opt => handleChange('sort')(opt.value)} triggerProps={{prefix: sort.prefix}} triggerLabel={sort.label} /> {({tableData}) => { const totals: SpansTotalValues | null = (tableData?.data?.[0] as SpansTotalValues | undefined) ?? null; return ( {({suspectSpans, isLoading, pageLinks}) => ( p.id === projectId)} isLoading={isLoading} suspectSpans={suspectSpans ?? []} totals={totals} sort={sort.field} /> )} ); }} ); } function getSpansEventView(eventView: EventView, sort: SpanSort): EventView { eventView = eventView.clone(); const fields = SPAN_SORT_TO_FIELDS[sort]; eventView.fields = fields ? fields.map(field => ({field})) : []; return eventView; } const FilterActions = styled('div')` display: grid; gap: ${space(2)}; margin-bottom: ${space(2)}; @media (min-width: ${p => p.theme.breakpoints.small}) { grid-template-columns: repeat(3, min-content); } @media (min-width: ${p => p.theme.breakpoints.xlarge}) { grid-template-columns: auto auto 1fr auto; } `; const StyledSearchBar = styled(SearchBar)` @media (min-width: ${p => p.theme.breakpoints.small}) { order: 1; grid-column: 1/5; } @media (min-width: ${p => p.theme.breakpoints.xlarge}) { order: initial; grid-column: auto; } `; export default SpansContent;