123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- import styled from '@emotion/styled';
- import {updateUptimeRule} from 'sentry/actionCreators/uptime';
- import ActorAvatar from 'sentry/components/avatar/actorAvatar';
- import Breadcrumbs from 'sentry/components/breadcrumbs';
- import {LinkButton} from 'sentry/components/button';
- import ButtonBar from 'sentry/components/buttonBar';
- import {SectionHeading} from 'sentry/components/charts/styles';
- import {CodeSnippet} from 'sentry/components/codeSnippet';
- import IdBadge from 'sentry/components/idBadge';
- import {KeyValueTable, KeyValueTableRow} from 'sentry/components/keyValueTable';
- import * as Layout from 'sentry/components/layouts/thirds';
- import LoadingError from 'sentry/components/loadingError';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import {DatePageFilter} from 'sentry/components/organizations/datePageFilter';
- import {EnvironmentPageFilter} from 'sentry/components/organizations/environmentPageFilter';
- import PageFilterBar from 'sentry/components/organizations/pageFilterBar';
- import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
- import {IconEdit} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {RouteComponentProps} from 'sentry/types/legacyReactRouter';
- import getDuration from 'sentry/utils/duration/getDuration';
- import {
- type ApiQueryKey,
- setApiQueryData,
- useApiQuery,
- useQueryClient,
- } from 'sentry/utils/queryClient';
- import useApi from 'sentry/utils/useApi';
- import useOrganization from 'sentry/utils/useOrganization';
- import useProjects from 'sentry/utils/useProjects';
- import type {UptimeRule} from 'sentry/views/alerts/rules/uptime/types';
- import {StatusToggleButton} from './statusToggleButton';
- import {UptimeIssues} from './uptimeIssues';
- interface UptimeAlertDetailsProps
- extends RouteComponentProps<{projectId: string; uptimeRuleId: string}, {}> {}
- export default function UptimeAlertDetails({params}: UptimeAlertDetailsProps) {
- const api = useApi();
- const organization = useOrganization();
- const queryClient = useQueryClient();
- const {projectId, uptimeRuleId} = params;
- const {projects, fetching: loadingProject} = useProjects({slugs: [projectId]});
- const project = projects.find(({slug}) => slug === projectId);
- const queryKey: ApiQueryKey = [
- `/projects/${organization.slug}/${projectId}/uptime/${uptimeRuleId}/`,
- ];
- const {
- data: uptimeRule,
- isPending,
- isError,
- } = useApiQuery<UptimeRule>(queryKey, {staleTime: 0});
- if (isError) {
- return (
- <LoadingError
- message={t('The uptime alert rule you were looking for was not found.')}
- />
- );
- }
- if (isPending || loadingProject) {
- return (
- <Layout.Body>
- <Layout.Main fullWidth>
- <LoadingIndicator />
- </Layout.Main>
- </Layout.Body>
- );
- }
- if (!project) {
- return (
- <LoadingError message={t('The project you were looking for was not found.')} />
- );
- }
- const handleUpdate = async (data: Partial<UptimeRule>) => {
- const resp = await updateUptimeRule(api, organization.slug, uptimeRule, data);
- if (resp !== null) {
- setApiQueryData(queryClient, queryKey, resp);
- }
- };
- return (
- <Layout.Page>
- <SentryDocumentTitle title={`${uptimeRule.name} — Alerts`} />
- <Layout.Header>
- <Layout.HeaderContent>
- <Breadcrumbs
- crumbs={[
- {
- label: t('Alerts'),
- to: `/organizations/${organization.slug}/alerts/rules/`,
- },
- {
- label: t('Uptime Monitor'),
- },
- ]}
- />
- <Layout.Title>
- <IdBadge
- project={project}
- avatarSize={28}
- hideName
- avatarProps={{hasTooltip: true, tooltip: project.slug}}
- />
- {uptimeRule.name}
- </Layout.Title>
- </Layout.HeaderContent>
- <Layout.HeaderActions>
- <ButtonBar gap={1}>
- <StatusToggleButton
- uptimeRule={uptimeRule}
- onToggleStatus={status => handleUpdate({status})}
- size="sm"
- />
- <LinkButton
- size="sm"
- icon={<IconEdit />}
- to={`/organizations/${organization.slug}/alerts/uptime-rules/${project.slug}/${uptimeRuleId}/`}
- >
- {t('Edit Rule')}
- </LinkButton>
- </ButtonBar>
- </Layout.HeaderActions>
- </Layout.Header>
- <Layout.Body>
- <Layout.Main>
- <StyledPageFilterBar condensed>
- <DatePageFilter />
- <EnvironmentPageFilter />
- </StyledPageFilterBar>
- <UptimeIssues project={project} ruleId={uptimeRuleId} />
- </Layout.Main>
- <Layout.Side>
- <SectionHeading>{t('Checked URL')}</SectionHeading>
- <CodeSnippet
- hideCopyButton
- >{`${uptimeRule.method} ${uptimeRule.url}`}</CodeSnippet>
- <SectionHeading>{t('Configuration')}</SectionHeading>
- <KeyValueTable>
- <KeyValueTableRow
- keyName={t('Check Interval')}
- value={t('Every %s', getDuration(uptimeRule.intervalSeconds))}
- />
- <KeyValueTableRow
- keyName={t('Timeout')}
- value={t('After %s', getDuration(uptimeRule.timeoutMs / 1000, 2))}
- />
- <KeyValueTableRow keyName={t('Environment')} value={uptimeRule.environment} />
- <KeyValueTableRow
- keyName={t('Owner')}
- value={
- uptimeRule.owner ? (
- <ActorAvatar actor={uptimeRule.owner} />
- ) : (
- t('Unassigned')
- )
- }
- />
- </KeyValueTable>
- </Layout.Side>
- </Layout.Body>
- </Layout.Page>
- );
- }
- const StyledPageFilterBar = styled(PageFilterBar)`
- margin-bottom: ${space(2)};
- `;
|