123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287 |
- import {useCallback, useMemo} from 'react';
- import styled from '@emotion/styled';
- import orderBy from 'lodash/orderBy';
- // eslint-disable-next-line no-restricted-imports
- import {fetchTagValues} from 'sentry/actionCreators/tags';
- import {SearchQueryBuilder} from 'sentry/components/searchQueryBuilder';
- import type {FilterKeySection} from 'sentry/components/searchQueryBuilder/types';
- import SmartSearchBar from 'sentry/components/smartSearchBar';
- import type {SearchGroup} from 'sentry/components/smartSearchBar/types';
- import {ItemType} from 'sentry/components/smartSearchBar/types';
- import {IconStar} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {SavedSearchType, type Tag, type TagCollection} from 'sentry/types/group';
- import type {Organization} from 'sentry/types/organization';
- import {getUtcDateString} from 'sentry/utils/dates';
- import {FieldKind, getFieldDefinition} from 'sentry/utils/fields';
- import useApi from 'sentry/utils/useApi';
- import usePageFilters from 'sentry/utils/usePageFilters';
- import type {WithIssueTagsProps} from 'sentry/utils/withIssueTags';
- import withIssueTags from 'sentry/utils/withIssueTags';
- import {Dataset} from 'sentry/views/alerts/rules/metric/types';
- import {mergeAndSortTagValues} from 'sentry/views/issueDetails/utils';
- import {makeGetIssueTagValues} from 'sentry/views/issueList/utils/getIssueTagValues';
- import {useFetchIssueTags} from 'sentry/views/issueList/utils/useFetchIssueTags';
- const getSupportedTags = (supportedTags: TagCollection): TagCollection => {
- return Object.fromEntries(
- Object.keys(supportedTags).map(key => [
- key,
- {
- ...supportedTags[key],
- kind:
- getFieldDefinition(key)?.kind ??
- (supportedTags[key].predefined ? FieldKind.FIELD : FieldKind.TAG),
- },
- ])
- );
- };
- const getFilterKeySections = (
- tags: TagCollection,
- organization: Organization
- ): FilterKeySection[] => {
- if (!organization.features.includes('issue-stream-search-query-builder')) {
- return [];
- }
- const allTags: Tag[] = Object.values(tags).filter(
- tag => !EXCLUDED_TAGS.includes(tag.key)
- );
- const issueFields = orderBy(
- allTags.filter(tag => tag.kind === FieldKind.ISSUE_FIELD),
- ['key']
- ).map(tag => tag.key);
- const eventFields = orderBy(
- allTags.filter(tag => tag.kind === FieldKind.EVENT_FIELD),
- ['key']
- ).map(tag => tag.key);
- const eventTags = orderBy(
- allTags.filter(tag => tag.kind === FieldKind.TAG),
- ['totalValues', 'key'],
- ['desc', 'asc']
- ).map(tag => tag.key);
- return [
- {
- value: FieldKind.ISSUE_FIELD,
- label: t('Issues'),
- children: issueFields,
- },
- {
- value: FieldKind.EVENT_FIELD,
- label: t('Event Filters'),
- children: eventFields,
- },
- {
- value: FieldKind.TAG,
- label: t('Event Tags'),
- children: eventTags,
- },
- ];
- };
- interface Props extends React.ComponentProps<typeof SmartSearchBar>, WithIssueTagsProps {
- organization: Organization;
- }
- const EXCLUDED_TAGS = ['environment'];
- function IssueListSearchBar({organization, tags, onClose, ...props}: Props) {
- const api = useApi();
- const {selection: pageFilters} = usePageFilters();
- const {tags: issueTags} = useFetchIssueTags({
- org: organization,
- projectIds: pageFilters.projects.map(id => id.toString()),
- keepPreviousData: true,
- enabled: organization.features.includes('issue-stream-search-query-builder'),
- start: pageFilters.datetime.start
- ? getUtcDateString(pageFilters.datetime.start)
- : undefined,
- end: pageFilters.datetime.end
- ? getUtcDateString(pageFilters.datetime.end)
- : undefined,
- statsPeriod: pageFilters.datetime.period,
- });
- const tagValueLoader = useCallback(
- async (key: string, search: string) => {
- const orgSlug = organization.slug;
- const projectIds = pageFilters.projects.map(id => id.toString());
- const endpointParams = {
- start: pageFilters.datetime.start
- ? getUtcDateString(pageFilters.datetime.start)
- : undefined,
- end: pageFilters.datetime.end
- ? getUtcDateString(pageFilters.datetime.end)
- : undefined,
- statsPeriod: pageFilters.datetime.period,
- };
- const fetchTagValuesPayload = {
- api,
- orgSlug,
- tagKey: key,
- search,
- projectIds,
- endpointParams,
- sort: '-count' as const,
- };
- const [eventsDatasetValues, issuePlatformDatasetValues] = await Promise.all([
- fetchTagValues({
- ...fetchTagValuesPayload,
- dataset: Dataset.ERRORS,
- }),
- fetchTagValues({
- ...fetchTagValuesPayload,
- dataset: Dataset.ISSUE_PLATFORM,
- }),
- ]);
- return mergeAndSortTagValues(
- eventsDatasetValues,
- issuePlatformDatasetValues,
- 'count'
- );
- },
- [
- api,
- organization.slug,
- pageFilters.datetime.end,
- pageFilters.datetime.period,
- pageFilters.datetime.start,
- pageFilters.projects,
- ]
- );
- const getTagValues = useMemo(
- () => makeGetIssueTagValues(tagValueLoader),
- [tagValueLoader]
- );
- const recommendedGroup: SearchGroup = {
- title: t('Popular Filters'),
- type: 'header',
- icon: <IconStar size="xs" />,
- childrenWrapper: RecommendedWrapper,
- children: [
- {
- type: ItemType.RECOMMENDED,
- kind: FieldKind.FIELD,
- title: t('Issue Category'),
- value: 'issue.category:',
- },
- {
- type: ItemType.RECOMMENDED,
- kind: FieldKind.FIELD,
- title: t('Error Level'),
- value: 'level:',
- },
- {
- type: ItemType.RECOMMENDED,
- kind: FieldKind.FIELD,
- title: t('Assignee'),
- value: 'assigned_or_suggested:',
- },
- {
- type: ItemType.RECOMMENDED,
- kind: FieldKind.FIELD,
- title: t('Unhandled Events'),
- value: 'error.unhandled:true ',
- },
- {
- type: ItemType.RECOMMENDED,
- kind: FieldKind.FIELD,
- title: t('Latest Release'),
- value: 'release:latest ',
- },
- {
- type: ItemType.RECOMMENDED,
- kind: FieldKind.TAG,
- title: t('Custom Tags'),
- // Shows only tags when clicked
- applyFilter: item => item.kind === FieldKind.TAG,
- },
- ],
- };
- const filterKeySections = useMemo(() => {
- return getFilterKeySections(issueTags, organization);
- }, [organization, issueTags]);
- const onChange = useCallback(
- (value: string) => {
- onClose?.(value, {validSearch: true});
- },
- [onClose]
- );
- if (organization.features.includes('issue-stream-search-query-builder')) {
- return (
- <SearchQueryBuilder
- className={props.className}
- initialQuery={props.query ?? ''}
- getTagValues={getTagValues}
- filterKeySections={filterKeySections}
- filterKeys={issueTags}
- onSearch={props.onSearch}
- onBlur={props.onBlur}
- onChange={onChange}
- searchSource={props.searchSource ?? 'issues'}
- recentSearches={SavedSearchType.ISSUE}
- disallowLogicalOperators
- placeholder={props.placeholder}
- />
- );
- }
- return (
- <SmartSearchBar
- hasRecentSearches
- projectIds={pageFilters.projects}
- savedSearchType={SavedSearchType.ISSUE}
- onGetTagValues={getTagValues}
- excludedTags={EXCLUDED_TAGS}
- maxMenuHeight={500}
- supportedTags={getSupportedTags(tags)}
- defaultSearchGroup={recommendedGroup}
- organization={organization}
- onClose={onClose}
- {...props}
- />
- );
- }
- export default withIssueTags(IssueListSearchBar);
- // Using grid-template-rows to order the items top to bottom, then left to right
- const RecommendedWrapper = styled('div')`
- display: grid;
- grid-template-rows: 1fr 1fr 1fr;
- grid-auto-flow: column;
- gap: ${space(1)};
- padding: ${space(1)};
- text-align: left;
- line-height: 1.2;
- & > li {
- ${p => p.theme.overflowEllipsis}
- border-radius: ${p => p.theme.borderRadius};
- border: 1px solid ${p => p.theme.border};
- padding: ${space(1)} ${space(1.5)};
- margin: 0;
- }
- @media (min-width: ${p => p.theme.breakpoints.small}) {
- grid-template-rows: 1fr 1fr;
- gap: ${space(1.5)};
- padding: ${space(1.5)};
- text-align: center;
- & > li {
- padding: ${space(1.5)} ${space(2)};
- }
- }
- `;
|