123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- import styled from '@emotion/styled';
- import type {Location} from 'history';
- import {Button} from 'sentry/components/button';
- import type {MenuItemProps} from 'sentry/components/dropdownMenu';
- import {DropdownMenu} from 'sentry/components/dropdownMenu';
- import {IconEllipsis} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {Organization} from 'sentry/types/organization';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import toArray from 'sentry/utils/array/toArray';
- import {browserHistory} from 'sentry/utils/browserHistory';
- import type {EventData} from 'sentry/utils/discover/eventView';
- import type EventView from 'sentry/utils/discover/eventView';
- import {MutableSearch} from 'sentry/utils/tokenizeSearch';
- import {addToFilter, excludeFromFilter} from '../cellAction';
- export enum ContextValueType {
- STRING = 'string',
- NUMBER = 'number',
- DURATION = 'duration',
- }
- enum QueryUpdateActions {
- ADD = 'add',
- EXCLUDE = 'exclude',
- SHOW_MORE_THAN = 'show-more-than',
- SHOW_LESS_THAN = 'show-less-than',
- }
- type Props = {
- contextValueType: ContextValueType;
- dataRow: EventData;
- eventView: EventView;
- location: Location;
- organization: Organization;
- queryKey: string;
- value: React.ReactText | string[];
- };
- function ActionDropDown(props: Props) {
- const menuItems: MenuItemProps[] = [];
- const {location, eventView, queryKey, value, organization, contextValueType, dataRow} =
- props;
- const addAsColumn = () => {
- trackAnalytics('discover_v2.quick_context_add_column', {
- organization,
- column: queryKey,
- });
- const oldField = eventView?.fields.map(field => field.field);
- const newField = toArray(oldField).concat(queryKey);
- browserHistory.push({
- ...location,
- query: {
- ...location?.query,
- field: newField,
- },
- });
- };
- function handleQueryUpdate(actionType: QueryUpdateActions) {
- trackAnalytics('discover_v2.quick_context_update_query', {
- organization,
- queryKey,
- });
- const oldFilters = eventView?.query || '';
- const newFilters = new MutableSearch(oldFilters);
- switch (actionType) {
- case QueryUpdateActions.SHOW_MORE_THAN:
- newFilters.setFilterValues(queryKey, [`>${value}`]);
- break;
- case QueryUpdateActions.SHOW_LESS_THAN:
- newFilters.setFilterValues(queryKey, [`<${value}`]);
- break;
- case QueryUpdateActions.ADD:
- addToFilter(newFilters, queryKey, value);
- break;
- case QueryUpdateActions.EXCLUDE:
- excludeFromFilter(newFilters, queryKey, value);
- break;
- default:
- throw new Error(`Unknown quick context action type. ${actionType}`);
- }
- browserHistory.push({
- ...location,
- query: {
- ...location?.query,
- query: newFilters.formatString(),
- },
- });
- }
- if (!(queryKey in dataRow)) {
- menuItems.push({
- key: 'add-as-column',
- label: t('Add as column'),
- onAction: () => {
- addAsColumn();
- },
- });
- }
- if (
- contextValueType === ContextValueType.NUMBER ||
- contextValueType === ContextValueType.DURATION
- ) {
- menuItems.push(
- {
- key: 'show-more-than',
- label: t('Show values greater than'),
- onAction: () => {
- handleQueryUpdate(QueryUpdateActions.SHOW_MORE_THAN);
- },
- },
- {
- key: 'show-less-than',
- label: t('Show values less than'),
- onAction: () => {
- handleQueryUpdate(QueryUpdateActions.SHOW_LESS_THAN);
- },
- }
- );
- } else {
- menuItems.push(
- {
- key: 'add-to-filter',
- label: t('Add to filter'),
- onAction: () => {
- handleQueryUpdate(QueryUpdateActions.ADD);
- },
- },
- {
- key: 'exclude-from-filter',
- label: t('Exclude from filter'),
- onAction: () => {
- handleQueryUpdate(QueryUpdateActions.EXCLUDE);
- },
- }
- );
- }
- return (
- <DropdownMenu
- items={menuItems}
- trigger={triggerProps => (
- <StyledTrigger
- {...triggerProps}
- aria-label={t('Quick Context Action Menu')}
- data-test-id="quick-context-action-trigger"
- borderless
- size="zero"
- onClick={e => {
- e.stopPropagation();
- e.preventDefault();
- triggerProps.onClick?.(e);
- }}
- icon={<IconEllipsis size="sm" />}
- />
- )}
- />
- );
- }
- const StyledTrigger = styled(Button)`
- margin-left: ${space(0.5)};
- `;
- export default ActionDropDown;
|