-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathruleDetails.tsx
388 lines (359 loc) · 11.4 KB
/
ruleDetails.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
import type {RouteComponentProps} from 'react-router';
import styled from '@emotion/styled';
import pick from 'lodash/pick';
import moment from 'moment';
import Access from 'sentry/components/acl/access';
import {Alert} from 'sentry/components/alert';
import SnoozeAlert from 'sentry/components/alerts/snoozeAlert';
import Breadcrumbs from 'sentry/components/breadcrumbs';
import {Button} from 'sentry/components/button';
import ButtonBar from 'sentry/components/buttonBar';
import type {DateTimeObject} from 'sentry/components/charts/utils';
import ErrorBoundary from 'sentry/components/errorBoundary';
import IdBadge from 'sentry/components/idBadge';
import * as Layout from 'sentry/components/layouts/thirds';
import Link from 'sentry/components/links/link';
import LoadingError from 'sentry/components/loadingError';
import LoadingIndicator from 'sentry/components/loadingIndicator';
import PageFiltersContainer from 'sentry/components/organizations/pageFilters/container';
import {normalizeDateTimeParams} from 'sentry/components/organizations/pageFilters/parse';
import {ChangeData} from 'sentry/components/organizations/timeRangeSelector';
import PageTimeRangeSelector from 'sentry/components/pageTimeRangeSelector';
import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
import {IconCopy, IconEdit} from 'sentry/icons';
import {t, tct} from 'sentry/locale';
import {space} from 'sentry/styles/space';
import type {DateString} from 'sentry/types';
import type {IssueAlertRule} from 'sentry/types/alerts';
import {RuleActionsCategories} from 'sentry/types/alerts';
import {trackAnalytics} from 'sentry/utils/analytics';
import {
ApiQueryKey,
setApiQueryData,
useApiQuery,
useQueryClient,
} from 'sentry/utils/queryClient';
import useRouteAnalyticsEventNames from 'sentry/utils/routeAnalytics/useRouteAnalyticsEventNames';
import useRouteAnalyticsParams from 'sentry/utils/routeAnalytics/useRouteAnalyticsParams';
import useOrganization from 'sentry/utils/useOrganization';
import useProjects from 'sentry/utils/useProjects';
import {findIncompatibleRules} from 'sentry/views/alerts/rules/issue';
import {ALERT_DEFAULT_CHART_PERIOD} from 'sentry/views/alerts/rules/metric/details/constants';
import {getRuleActionCategory} from 'sentry/views/alerts/rules/utils';
import {IssueAlertDetailsChart} from './alertChart';
import AlertRuleIssuesList from './issuesList';
import Sidebar from './sidebar';
interface AlertRuleDetailsProps
extends RouteComponentProps<{projectId: string; ruleId: string}, {}> {}
const PAGE_QUERY_PARAMS = [
'pageStatsPeriod',
'pageStart',
'pageEnd',
'pageUtc',
'cursor',
];
const getIssueAlertDetailsQueryKey = ({
orgSlug,
projectSlug,
ruleId,
}: {
orgSlug: string;
projectSlug: string;
ruleId: string;
}): ApiQueryKey => [
`/projects/${orgSlug}/${projectSlug}/rules/${ruleId}/`,
{query: {expand: 'lastTriggered'}},
];
function AlertRuleDetails({params, location, router}: AlertRuleDetailsProps) {
const queryClient = useQueryClient();
const organization = useOrganization();
const {projects, fetching: projectIsLoading} = useProjects();
const project = projects.find(({slug}) => slug === params.projectId);
const {projectId: projectSlug, ruleId} = params;
const {
data: rule,
isLoading,
isError,
} = useApiQuery<IssueAlertRule>(
getIssueAlertDetailsQueryKey({orgSlug: organization.slug, projectSlug, ruleId}),
{staleTime: 0}
);
useRouteAnalyticsEventNames(
'issue_alert_rule_details.viewed',
'Issue Alert Rule Details: Viewed'
);
useRouteAnalyticsParams({rule_id: parseInt(params.ruleId, 10)});
function getDataDatetime(): DateTimeObject {
const query = location?.query ?? {};
const {
start,
end,
statsPeriod,
utc: utcString,
} = normalizeDateTimeParams(query, {
allowEmptyPeriod: true,
allowAbsoluteDatetime: true,
allowAbsolutePageDatetime: true,
});
if (!statsPeriod && !start && !end) {
return {period: ALERT_DEFAULT_CHART_PERIOD};
}
// Following getParams, statsPeriod will take priority over start/end
if (statsPeriod) {
return {period: statsPeriod};
}
const utc = utcString === 'true';
if (start && end) {
return utc
? {
start: moment.utc(start).format(),
end: moment.utc(end).format(),
utc,
}
: {
start: moment(start).utc().format(),
end: moment(end).utc().format(),
utc,
};
}
return {period: ALERT_DEFAULT_CHART_PERIOD};
}
function setStateOnUrl(nextState: {
cursor?: string;
pageEnd?: DateString;
pageStart?: DateString;
pageStatsPeriod?: string | null;
pageUtc?: boolean | null;
team?: string;
}) {
return router.push({
...location,
query: {
...location.query,
...pick(nextState, PAGE_QUERY_PARAMS),
},
});
}
function onSnooze({
snooze,
snoozeCreatedBy,
snoozeForEveryone,
}: {
snooze: boolean;
snoozeCreatedBy?: string;
snoozeForEveryone?: boolean;
}) {
setApiQueryData<IssueAlertRule>(
queryClient,
getIssueAlertDetailsQueryKey({orgSlug: organization.slug, projectSlug, ruleId}),
alertRule => ({...alertRule, snooze, snoozeCreatedBy, snoozeForEveryone})
);
}
function handleUpdateDatetime(datetime: ChangeData) {
const {start, end, relative, utc} = datetime;
if (start && end) {
const parser = utc ? moment.utc : moment;
return setStateOnUrl({
pageStatsPeriod: undefined,
pageStart: parser(start).format(),
pageEnd: parser(end).format(),
pageUtc: utc ?? undefined,
cursor: undefined,
});
}
return setStateOnUrl({
pageStatsPeriod: relative || undefined,
pageStart: undefined,
pageEnd: undefined,
pageUtc: undefined,
cursor: undefined,
});
}
if (isLoading || projectIsLoading) {
return (
<Layout.Body>
<Layout.Main fullWidth>
<LoadingIndicator />
</Layout.Main>
</Layout.Body>
);
}
if (!rule || isError) {
return (
<StyledLoadingError
message={t('The alert rule you were looking for was not found.')}
/>
);
}
if (!project) {
return (
<StyledLoadingError
message={t('The project you were looking for was not found.')}
/>
);
}
const isSnoozed = rule.snooze;
const ruleActionCategory = getRuleActionCategory(rule);
const duplicateLink = {
pathname: `/organizations/${organization.slug}/alerts/new/issue/`,
query: {
project: project.slug,
duplicateRuleId: rule.id,
createFromDuplicate: true,
referrer: 'issue_rule_details',
},
};
function renderIncompatibleAlert() {
const incompatibleRule = findIncompatibleRules(rule);
if (incompatibleRule.conditionIndices || incompatibleRule.filterIndices) {
return (
<Alert type="error" showIcon>
{tct(
'The conditions in this alert rule conflict and might not be working properly. [link:Edit alert rule]',
{
link: (
<Link
to={`/organizations/${organization.slug}/alerts/rules/${projectSlug}/${ruleId}/`}
/>
),
}
)}
</Alert>
);
}
return null;
}
const {period, start, end, utc} = getDataDatetime();
const {cursor} = location.query;
return (
<PageFiltersContainer
skipInitializeUrlParams
skipLoadLastUsed
shouldForceProject
forceProject={project}
>
<SentryDocumentTitle
title={rule.name}
orgSlug={organization.slug}
projectSlug={projectSlug}
/>
<Layout.Header>
<Layout.HeaderContent>
<Breadcrumbs
crumbs={[
{
label: t('Alerts'),
to: `/organizations/${organization.slug}/alerts/rules/`,
},
{
label: rule.name,
to: null,
},
]}
/>
<Layout.Title>
<IdBadge
project={project}
avatarSize={28}
hideName
avatarProps={{hasTooltip: true, tooltip: project.slug}}
/>
{rule.name}
</Layout.Title>
</Layout.HeaderContent>
<Layout.HeaderActions>
<ButtonBar gap={1}>
<Access access={['alerts:write']}>
{({hasAccess}) => (
<SnoozeAlert
isSnoozed={isSnoozed}
onSnooze={onSnooze}
ruleId={rule.id}
projectSlug={projectSlug}
ruleActionCategory={ruleActionCategory}
hasAccess={hasAccess}
type="issue"
/>
)}
</Access>
<Button size="sm" icon={<IconCopy />} to={duplicateLink}>
{t('Duplicate')}
</Button>
<Button
size="sm"
icon={<IconEdit />}
to={`/organizations/${organization.slug}/alerts/rules/${projectSlug}/${ruleId}/`}
onClick={() =>
trackAnalytics('issue_alert_rule_details.edit_clicked', {
organization,
rule_id: parseInt(ruleId, 10),
})
}
>
{t('Edit Rule')}
</Button>
</ButtonBar>
</Layout.HeaderActions>
</Layout.Header>
<Layout.Body>
<Layout.Main>
{renderIncompatibleAlert()}
{isSnoozed && (
<Alert showIcon>
{ruleActionCategory === RuleActionsCategories.NO_DEFAULT
? tct(
"[creator] muted this alert so these notifications won't be sent in the future.",
{creator: rule.snoozeCreatedBy}
)
: tct(
"[creator] muted this alert[forEveryone]so you won't get these notifications in the future.",
{
creator: rule.snoozeCreatedBy,
forEveryone: rule.snoozeForEveryone ? ' for everyone ' : ' ',
}
)}
</Alert>
)}
<StyledPageTimeRangeSelector
organization={organization}
relative={period ?? ''}
start={start ?? null}
end={end ?? null}
utc={utc ?? null}
onUpdate={handleUpdateDatetime}
/>
<ErrorBoundary>
<IssueAlertDetailsChart
project={project}
rule={rule}
period={period ?? ''}
start={start ?? null}
end={end ?? null}
utc={utc ?? null}
/>
</ErrorBoundary>
<AlertRuleIssuesList
organization={organization}
project={project}
rule={rule}
period={period ?? ''}
start={start ?? null}
end={end ?? null}
utc={utc ?? null}
cursor={cursor}
/>
</Layout.Main>
<Layout.Side>
<Sidebar rule={rule} projectSlug={project.slug} teams={project.teams} />
</Layout.Side>
</Layout.Body>
</PageFiltersContainer>
);
}
export default AlertRuleDetails;
const StyledPageTimeRangeSelector = styled(PageTimeRangeSelector)`
margin-bottom: ${space(2)};
`;
const StyledLoadingError = styled(LoadingError)`
margin: ${space(2)};
`;