import styled from '@emotion/styled'; import {AreaChart} from 'sentry/components/charts/areaChart'; import ChartZoom from 'sentry/components/charts/chartZoom'; import {HeaderTitleLegend, SectionHeading} from 'sentry/components/charts/styles'; import type {DateTimeObject} from 'sentry/components/charts/utils'; import Panel from 'sentry/components/panels/panel'; import PanelBody from 'sentry/components/panels/panelBody'; import PanelFooter from 'sentry/components/panels/panelFooter'; import Placeholder from 'sentry/components/placeholder'; import {t} from 'sentry/locale'; import {space} from 'sentry/styles/space'; import type {IssueAlertRule, ProjectAlertRuleStats} from 'sentry/types/alerts'; import type {Project} from 'sentry/types/project'; import getDynamicText from 'sentry/utils/getDynamicText'; import {useApiQuery} from 'sentry/utils/queryClient'; import useOrganization from 'sentry/utils/useOrganization'; import useRouter from 'sentry/utils/useRouter'; import RouteError from 'sentry/views/routeError'; interface IssueAlertDetailsProps extends DateTimeObject { project: Project; rule: IssueAlertRule; } export function IssueAlertDetailsChart({ project, period, start, end, utc, rule, }: IssueAlertDetailsProps) { const organization = useOrganization(); const router = useRouter(); const { data: ruleFireHistory, isLoading, isError, error, } = useApiQuery( [ `/projects/${organization.slug}/${project.slug}/rules/${rule.id}/stats/`, { query: { ...(period && {statsPeriod: period}), start, end, utc, }, }, ], {staleTime: 30000} ); const totalAlertsTriggered = ruleFireHistory?.reduce((acc, curr) => acc + curr.count, 0) ?? 0; if (isError) { return ; } return ( {t('Alerts Triggered')} {getDynamicText({ value: isLoading ? ( ) : ( {zoomRenderProps => ( ({ name: alert.date, value: alert.count, })) ?? [], emphasis: { disabled: true, }, }, ]} /> )} ), fixed: , })} {t('Total Alerts')} {isLoading ? ( ) : ( totalAlertsTriggered.toLocaleString() )} ); } const ChartHeader = styled('div')` margin-bottom: ${space(3)}; `; const ChartFooter = styled(PanelFooter)` display: flex; align-items: center; padding: ${space(1)} 20px; `; const FooterHeader = styled(SectionHeading)` display: flex; align-items: center; margin: 0; font-weight: bold; font-size: ${p => p.theme.fontSizeMedium}; line-height: 1; `; const FooterValue = styled('div')` display: flex; align-items: center; margin: 0 ${space(1)}; `; /* Override padding to make chart appear centered */ const StyledPanelBody = styled(PanelBody)` padding-right: 6px; `;