import styled from '@emotion/styled'; import {Button} from 'sentry/components/button'; import SearchBar from 'sentry/components/events/searchBar'; import {SpanSearchQueryBuilder} from 'sentry/components/performance/spanSearchQueryBuilder'; import {IconAdd, IconClose} from 'sentry/icons'; import {t} from 'sentry/locale'; import {space} from 'sentry/styles/space'; import {SavedSearchType} from 'sentry/types/group'; import {trackAnalytics} from 'sentry/utils/analytics'; import {DiscoverDatasets} from 'sentry/utils/discover/types'; import useOrganization from 'sentry/utils/useOrganization'; import usePageFilters from 'sentry/utils/usePageFilters'; import {useSpanFieldSupportedTags} from 'sentry/views/performance/utils/useSpanFieldSupportedTags'; interface TracesSearchBarProps { handleClearSearch: (index: number) => boolean; handleSearch: (index: number, query: string) => void; queries: string[]; } const getSpanName = (index: number) => { const spanNames = [ t('Find traces where a span is'), t('and another span where'), t('and another span where'), ]; return spanNames[index]; }; export function TracesSearchBar({ queries, handleSearch, handleClearSearch, }: TracesSearchBarProps) { const organization = useOrganization(); const {selection} = usePageFilters(); const canAddMoreQueries = queries.length <= 2; const localQueries = queries.length ? queries : ['']; // Since trace explorer permits cross project searches, // autocompletion should also be cross projects. const supportedTags = useSpanFieldSupportedTags(); return ( {localQueries.map((query, index) => ( {getSpanName(index)} {organization.features.includes('search-query-builder-performance') ? ( handleSearch(index, queryString)} searchSource="trace-explorer" /> ) : ( handleSearch(index, queryString)} placeholder={t('Search for span attributes')} organization={organization} supportedTags={supportedTags} dataset={DiscoverDatasets.SPANS_INDEXED} projectIds={selection.projects} savedSearchType={SavedSearchType.SPAN} /> )} } size="sm" onClick={() => { trackAnalytics('trace_explorer.remove_span_condition', { organization, }); if (queries.length >= 0) { handleClearSearch(index); } }} /> ))} {canAddMoreQueries ? ( ) : null} ); } const TraceSearchBarsContainer = styled('div')` display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: ${space(1)}; `; const TraceBar = styled('div')` display: flex; flex-direction: row; width: 100%; gap: ${space(1)}; `; const SpanLetter = styled('div')` background-color: ${p => p.theme.purple100}; border-radius: ${p => p.theme.borderRadius}; text-align: center; min-width: 220px; color: ${p => p.theme.purple400}; white-space: nowrap; font-weight: ${p => p.theme.fontWeightBold}; align-content: center; `; const StyledSearchBar = styled(SearchBar)` width: 100%; `; const StyledButton = styled(Button)` height: 38px; `;