import styled from '@emotion/styled'; import RadioGroup, {RadioGroupProps} from 'sentry/components/forms/controls/radioGroup'; import ExternalLink from 'sentry/components/links/externalLink'; import {t, tct} from 'sentry/locale'; import {space} from 'sentry/styles/space'; import {DisplayType} from 'sentry/views/dashboards/types'; import {DataSet} from '../utils'; import {BuildStep} from './buildStep'; const DATASET_CHOICES: [DataSet, string][] = [ [DataSet.EVENTS, t('Errors and Transactions')], [DataSet.ISSUES, t('Issues (States, Assignment, Time, etc.)')], ]; interface Props { dataSet: DataSet; displayType: DisplayType; hasReleaseHealthFeature: boolean; onChange: (dataSet: DataSet) => void; } export function DataSetStep({ dataSet, onChange, hasReleaseHealthFeature, displayType, }: Props) { const disabledChoices: RadioGroupProps['disabledChoices'] = []; if (displayType !== DisplayType.TABLE) { disabledChoices.push([ DataSet.ISSUES, t('This dataset is restricted to tabular visualization.'), ]); } return ( ), } )} > { onChange(newDataSet as DataSet); }} orientInline /> ); } const DataSetChoices = styled(RadioGroup)` display: flex; flex-wrap: wrap; gap: ${space(2)}; `;