123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import {useMemo} from 'react';
- import * as Sentry from '@sentry/react';
- import type {MenuItemProps} from 'sentry/components/dropdownMenu';
- import {DropdownMenu} from 'sentry/components/dropdownMenu';
- import {IconClose, IconCopy, IconEllipsis} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import {hasDDMFeature} from 'sentry/utils/metrics/features';
- import useOrganization from 'sentry/utils/useOrganization';
- import {useDDMContext} from 'sentry/views/ddm/context';
- type ContextMenuProps = {
- widgetIndex: number;
- };
- export function MetricFormulaContextMenu({widgetIndex}: ContextMenuProps) {
- const organization = useOrganization();
- const {removeWidget, duplicateWidget, widgets} = useDDMContext();
- const canDelete = widgets.length > 1;
- const items = useMemo<MenuItemProps[]>(
- () => [
- {
- leadingItems: [<IconCopy key="icon" />],
- key: 'duplicate',
- label: t('Duplicate'),
- onAction: () => {
- trackAnalytics('ddm.widget.duplicate', {
- organization,
- });
- Sentry.metrics.increment('ddm.widget.duplicate');
- duplicateWidget(widgetIndex);
- },
- },
- {
- leadingItems: [<IconClose key="icon" />],
- key: 'delete',
- label: t('Remove Query'),
- disabled: !canDelete,
- onAction: () => {
- Sentry.metrics.increment('ddm.widget.delete');
- removeWidget(widgetIndex);
- },
- },
- ],
- [canDelete, organization, duplicateWidget, widgetIndex, removeWidget]
- );
- if (!hasDDMFeature(organization)) {
- return null;
- }
- return (
- <DropdownMenu
- items={items}
- triggerProps={{
- 'aria-label': t('Widget actions'),
- size: 'md',
- showChevron: false,
- icon: <IconEllipsis direction="down" size="sm" />,
- }}
- position="bottom-end"
- />
- );
- }
|