123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- 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 (
- <TraceSearchBarsContainer>
- {localQueries.map((query, index) => (
- <TraceBar key={index}>
- <SpanLetter>{getSpanName(index)}</SpanLetter>
- {organization.features.includes('search-query-builder-performance') ? (
- <SpanSearchQueryBuilder
- projects={selection.projects}
- initialQuery={query}
- onSearch={(queryString: string) => handleSearch(index, queryString)}
- searchSource="trace-explorer"
- />
- ) : (
- <StyledSearchBar
- searchSource="trace-explorer"
- query={query}
- onSearch={(queryString: string) => handleSearch(index, queryString)}
- placeholder={t('Search for span attributes')}
- organization={organization}
- supportedTags={supportedTags}
- dataset={DiscoverDatasets.SPANS_INDEXED}
- projectIds={selection.projects}
- savedSearchType={SavedSearchType.SPAN}
- />
- )}
- <StyledButton
- aria-label={t('Remove Span')}
- icon={<IconClose size="sm" />}
- size="sm"
- onClick={() => {
- trackAnalytics('trace_explorer.remove_span_condition', {
- organization,
- });
- if (queries.length >= 0) {
- handleClearSearch(index);
- }
- }}
- />
- </TraceBar>
- ))}
- {canAddMoreQueries ? (
- <Button
- aria-label={t('Add Query')}
- icon={<IconAdd size="xs" isCircled />}
- size="sm"
- onClick={() => {
- trackAnalytics('trace_explorer.add_span_condition', {
- organization,
- });
- handleSearch(localQueries.length, '');
- }}
- >
- {t('Add Another Span')}
- </Button>
- ) : null}
- </TraceSearchBarsContainer>
- );
- }
- 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;
- `;
|