import styled from '@emotion/styled'; import ButtonBar from 'sentry/components/buttonBar'; import FieldGroup from 'sentry/components/forms/fieldGroup'; import {t} from 'sentry/locale'; import {space} from 'sentry/styles/space'; import type {TagCollection} from 'sentry/types'; import type {QueryFieldValue} from 'sentry/utils/discover/fields'; import useCustomMeasurements from 'sentry/utils/useCustomMeasurements'; import useOrganization from 'sentry/utils/useOrganization'; import {getDatasetConfig} from 'sentry/views/dashboards/datasetConfig/base'; import type {Widget} from 'sentry/views/dashboards/types'; import {DisplayType} from 'sentry/views/dashboards/types'; import {QueryField} from 'sentry/views/discover/table/queryField'; import {FieldValueKind} from 'sentry/views/discover/table/types'; import {AddButton} from './addButton'; import {DeleteButton} from './deleteButton'; interface Props { aggregates: QueryFieldValue[]; displayType: DisplayType; /** * Fired when aggregates are added/removed/modified/reordered. */ onChange: (aggregates: QueryFieldValue[]) => void; tags: TagCollection; widgetType: Widget['widgetType']; errors?: Record; noFieldsMessage?: string; } export function YAxisSelector({ displayType, widgetType, aggregates, tags, onChange, errors, noFieldsMessage, }: Props) { const organization = useOrganization(); const datasetConfig = getDatasetConfig(widgetType); const {customMeasurements} = useCustomMeasurements(); function handleAddOverlay(event: React.MouseEvent) { event.preventDefault(); const newAggregates = [ ...aggregates, {kind: FieldValueKind.FIELD, field: ''} as QueryFieldValue, ]; onChange(newAggregates); } function handleAddEquation(event: React.MouseEvent) { event.preventDefault(); const newAggregates = [ ...aggregates, {kind: FieldValueKind.EQUATION, field: ''} as QueryFieldValue, ]; onChange(newAggregates); } function handleRemoveQueryField(event: React.MouseEvent, fieldIndex: number) { event.preventDefault(); const newAggregates = [...aggregates]; newAggregates.splice(fieldIndex, 1); onChange(newAggregates); } function handleChangeQueryField(value: QueryFieldValue, fieldIndex: number) { const newAggregates = [...aggregates]; newAggregates[fieldIndex] = value; onChange(newAggregates); } const fieldError = errors?.find(error => error?.aggregates)?.aggregates; const canDelete = aggregates.length > 1; const hideAddYAxisButtons = (DisplayType.BIG_NUMBER === displayType && aggregates.length === 1) || ([DisplayType.LINE, DisplayType.AREA, DisplayType.BAR].includes(displayType) && aggregates.length === 3); return ( {aggregates.map((fieldValue, i) => ( handleChangeQueryField(value, i)} filterPrimaryOptions={datasetConfig.filterYAxisOptions?.(displayType)} filterAggregateParameters={datasetConfig.filterYAxisAggregateParams?.( fieldValue, displayType )} otherColumns={aggregates} noFieldsMessage={noFieldsMessage} /> {aggregates.length > 1 && (canDelete || fieldValue.kind === FieldValueKind.EQUATION) && ( handleRemoveQueryField(event, i)} /> )} ))} {!hideAddYAxisButtons && ( {datasetConfig.enableEquations && ( )} )} ); } const QueryFieldWrapper = styled('div')` display: flex; align-items: center; justify-content: space-between; :not(:last-child) { margin-bottom: ${space(1)}; } > * + * { margin-left: ${space(1)}; } `; const Actions = styled(ButtonBar)` justify-content: flex-start; `;