123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- import {Fragment, useEffect} from 'react';
- import styled from '@emotion/styled';
- import {promptsCheck, promptsUpdate} from 'sentry/actionCreators/prompts';
- import Feature from 'sentry/components/acl/feature';
- import {Alert} from 'sentry/components/alert';
- import {LinkButton} from 'sentry/components/button';
- import CreateAlertButton from 'sentry/components/createAlertButton';
- import DeprecatedAsyncComponent from 'sentry/components/deprecatedAsyncComponent';
- import * as Layout from 'sentry/components/layouts/thirds';
- import ExternalLink from 'sentry/components/links/externalLink';
- import PageFiltersContainer from 'sentry/components/organizations/pageFilters/container';
- import Pagination from 'sentry/components/pagination';
- import {PanelTable} from 'sentry/components/panels/panelTable';
- import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
- import {t, tct} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {RouteComponentProps} from 'sentry/types/legacyReactRouter';
- import type {Organization} from 'sentry/types/organization';
- import type {Project} from 'sentry/types/project';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import Projects from 'sentry/utils/projects';
- import FilterBar from '../../filterBar';
- import type {Incident} from '../../types';
- import {getQueryStatus, getTeamParams} from '../../utils';
- import AlertHeader from '../header';
- import Onboarding from '../onboarding';
- import AlertListRow from './row';
- const DOCS_URL =
- 'https://docs.sentry.io/workflow/alerts-notifications/alerts/?_ga=2.21848383.580096147.1592364314-1444595810.1582160976';
- type Props = RouteComponentProps<{}, {}> & {
- organization: Organization;
- };
- type State = {
- incidentList: Incident[];
- /**
- * User has not yet seen the 'alert_stream' welcome prompt for this
- * organization.
- */
- firstVisitShown?: boolean;
- /**
- * Is there at least one alert rule configured for the currently selected
- * projects?
- */
- hasAlertRule?: boolean;
- };
- class IncidentsList extends DeprecatedAsyncComponent<
- Props,
- State & DeprecatedAsyncComponent['state']
- > {
- getEndpoints(): ReturnType<DeprecatedAsyncComponent['getEndpoints']> {
- const {organization, location} = this.props;
- const {query} = location;
- const status = getQueryStatus(query.status);
- return [
- [
- 'incidentList',
- `/organizations/${organization.slug}/incidents/`,
- {
- query: {
- ...query,
- status: status === 'all' ? undefined : status,
- team: getTeamParams(query.team),
- expand: ['original_alert_rule'],
- },
- },
- ],
- ];
- }
- /**
- * If our incidentList is empty, determine if we've configured alert rules or
- * if the user has seen the welcome prompt.
- */
- async onLoadAllEndpointsSuccess() {
- const {incidentList} = this.state;
- if (!incidentList || incidentList.length !== 0) {
- this.setState({hasAlertRule: true, firstVisitShown: false});
- return;
- }
- this.setState({loading: true});
- // Check if they have rules or not, to know which empty state message to
- // display
- const {location, organization} = this.props;
- const alertRules = await this.api.requestPromise(
- `/organizations/${organization.slug}/alert-rules/`,
- {
- method: 'GET',
- query: location.query,
- }
- );
- const hasAlertRule = alertRules.length > 0;
- // We've already configured alert rules, no need to check if we should show
- // the "first time welcome" prompt
- if (hasAlertRule) {
- this.setState({hasAlertRule, firstVisitShown: false, loading: false});
- return;
- }
- // Check if they have already seen the prompt for the alert stream
- const prompt = await promptsCheck(this.api, {
- organization,
- feature: 'alert_stream',
- });
- const firstVisitShown = !prompt?.dismissedTime;
- if (firstVisitShown) {
- // Prompt has not been seen, mark the prompt as seen immediately so they
- // don't see it again
- promptsUpdate(this.api, {
- organization,
- feature: 'alert_stream',
- status: 'dismissed',
- });
- }
- this.setState({hasAlertRule, firstVisitShown, loading: false});
- }
- get projectsFromIncidents() {
- const {incidentList} = this.state;
- return [...new Set(incidentList?.flatMap(({projects}) => projects))];
- }
- handleChangeSearch = (title: string) => {
- const {router, location} = this.props;
- const {cursor: _cursor, page: _page, ...currentQuery} = location.query;
- router.push({
- pathname: location.pathname,
- query: {
- ...currentQuery,
- title,
- },
- });
- };
- handleChangeFilter = (activeFilters: string[]) => {
- const {router, location} = this.props;
- const {cursor: _cursor, page: _page, ...currentQuery} = location.query;
- router.push({
- pathname: location.pathname,
- query: {
- ...currentQuery,
- // Preserve empty team query parameter
- team: activeFilters.length > 0 ? activeFilters : '',
- },
- });
- };
- handleChangeStatus = (value: string): void => {
- const {router, location} = this.props;
- const {cursor: _cursor, page: _page, ...currentQuery} = location.query;
- router.push({
- pathname: location.pathname,
- query: {
- ...currentQuery,
- status: value === 'all' ? undefined : value,
- },
- });
- };
- tryRenderOnboarding() {
- const {firstVisitShown} = this.state;
- const {organization} = this.props;
- if (!firstVisitShown) {
- return null;
- }
- const actions = (
- <Fragment>
- <LinkButton size="sm" external href={DOCS_URL}>
- {t('View Features')}
- </LinkButton>
- <CreateAlertButton
- organization={organization}
- iconProps={{size: 'xs'}}
- size="sm"
- priority="primary"
- referrer="alert_stream"
- >
- {t('Create Alert')}
- </CreateAlertButton>
- </Fragment>
- );
- return <Onboarding actions={actions} />;
- }
- renderLoading() {
- return this.renderBody();
- }
- renderList() {
- const {loading, incidentList, incidentListPageLinks, hasAlertRule} = this.state;
- const {organization} = this.props;
- const checkingForAlertRules =
- incidentList?.length === 0 && hasAlertRule === undefined;
- const showLoadingIndicator = loading || checkingForAlertRules;
- return (
- <Fragment>
- {this.tryRenderOnboarding() ?? (
- <StyledPanelTable
- isLoading={showLoadingIndicator}
- isEmpty={incidentList?.length === 0}
- emptyMessage={t('No incidents exist for the current query.')}
- emptyAction={
- <EmptyStateAction>
- {tct('Learn more about [link:Metric Alerts]', {
- link: <ExternalLink href={DOCS_URL} />,
- })}
- </EmptyStateAction>
- }
- headers={[
- t('Alert Rule'),
- t('Triggered'),
- t('Duration'),
- t('Project'),
- t('Alert ID'),
- t('Team'),
- ]}
- >
- <Projects orgId={organization.slug} slugs={this.projectsFromIncidents}>
- {({initiallyLoaded, projects}) =>
- incidentList.map(incident => (
- <AlertListRow
- key={incident.id}
- projectsLoaded={initiallyLoaded}
- projects={projects as Project[]}
- incident={incident}
- organization={organization}
- />
- ))
- }
- </Projects>
- </StyledPanelTable>
- )}
- <Pagination pageLinks={incidentListPageLinks} />
- </Fragment>
- );
- }
- renderBody() {
- const {organization, router, location} = this.props;
- return (
- <SentryDocumentTitle title={t('Alerts')} orgSlug={organization.slug}>
- <PageFiltersContainer>
- <AlertHeader router={router} activeTab="stream" />
- <Layout.Body>
- <Layout.Main fullWidth>
- {!this.tryRenderOnboarding() && (
- <Fragment>
- <StyledAlert showIcon>
- {t('This page only shows metric alerts.')}
- </StyledAlert>
- <FilterBar
- location={location}
- onChangeFilter={this.handleChangeFilter}
- onChangeSearch={this.handleChangeSearch}
- onChangeStatus={this.handleChangeStatus}
- hasStatusFilters
- />
- </Fragment>
- )}
- {this.renderList()}
- </Layout.Main>
- </Layout.Body>
- </PageFiltersContainer>
- </SentryDocumentTitle>
- );
- }
- }
- function IncidentsListContainer(props: Props) {
- useEffect(() => {
- trackAnalytics('alert_stream.viewed', {
- organization: props.organization,
- });
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, []);
- const renderDisabled = () => (
- <Layout.Body>
- <Layout.Main fullWidth>
- <Alert type="warning">{t("You don't have access to this feature")}</Alert>
- </Layout.Main>
- </Layout.Body>
- );
- return (
- <Feature
- features="incidents"
- hookName="feature-disabled:alerts-page"
- renderDisabled={renderDisabled}
- >
- <IncidentsList {...props} />
- </Feature>
- );
- }
- const StyledPanelTable = styled(PanelTable)`
- font-size: ${p => p.theme.fontSizeMedium};
- & > div {
- padding: ${space(1.5)} ${space(2)};
- }
- `;
- const StyledAlert = styled(Alert)`
- margin-bottom: ${space(1.5)};
- `;
- const EmptyStateAction = styled('p')`
- font-size: ${p => p.theme.fontSizeLarge};
- `;
- export default IncidentsListContainer;
|