123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- import {Component, Fragment} from 'react';
- import styled from '@emotion/styled';
- import FeatureBadge from 'sentry/components/featureBadge';
- import SelectControl from 'sentry/components/forms/selectControl';
- import {t} from 'sentry/locale';
- import space from 'sentry/styles/space';
- import {Organization, Project} from 'sentry/types';
- import {
- IssueAlertRuleAction,
- IssueAlertRuleActionTemplate,
- IssueAlertRuleCondition,
- IssueAlertRuleConditionTemplate,
- } from 'sentry/types/alerts';
- import {
- CHANGE_ALERT_CONDITION_IDS,
- COMPARISON_INTERVAL_CHOICES,
- COMPARISON_TYPE_CHOICE_VALUES,
- COMPARISON_TYPE_CHOICES,
- } from 'sentry/views/alerts/utils/constants';
- import {EVENT_FREQUENCY_PERCENT_CONDITION} from 'sentry/views/projectInstall/issueAlertOptions';
- import RuleNode from './ruleNode';
- type Props = {
- disabled: boolean;
- error: React.ReactNode;
- /**
- * actions/conditions that have been added to the rule
- */
- items: IssueAlertRuleAction[] | IssueAlertRuleCondition[];
- /**
- * All available actions or conditions
- */
- nodes: IssueAlertRuleActionTemplate[] | IssueAlertRuleConditionTemplate[] | null;
- onAddRow: (value: string) => void;
- onDeleteRow: (ruleIndex: number) => void;
- onPropertyChange: (ruleIndex: number, prop: string, val: string) => void;
- onResetRow: (ruleIndex: number, name: string, value: string) => void;
- organization: Organization;
- /**
- * Placeholder for select control
- */
- placeholder: string;
- project: Project;
- selectType?: 'grouped';
- };
- class RuleNodeList extends Component<Props> {
- componentWillUnmount() {
- window.clearTimeout(this.propertyChangeTimeout);
- }
- propertyChangeTimeout: number | undefined = undefined;
- getNode = (
- id: string,
- itemIdx: number
- ):
- | IssueAlertRuleActionTemplate
- | IssueAlertRuleConditionTemplate
- | null
- | undefined => {
- const {nodes, items, organization, onPropertyChange} = this.props;
- const node = nodes ? nodes.find(n => n.id === id) : null;
- if (!node) {
- return null;
- }
- if (
- !organization.features.includes('change-alerts') ||
- !CHANGE_ALERT_CONDITION_IDS.includes(node.id)
- ) {
- return node;
- }
- const item = items[itemIdx] as IssueAlertRuleCondition;
- let changeAlertNode: IssueAlertRuleConditionTemplate = {
- ...node,
- label: node.label.replace('...', ' {comparisonType}'),
- formFields: {
- ...node.formFields,
- comparisonType: {
- type: 'choice',
- choices: COMPARISON_TYPE_CHOICES,
- // give an initial value from not among choices so selector starts with none selected
- initial: 'select',
- },
- },
- };
- // item.comparison type isn't backfilled and is missing for old alert rules
- // this is a problem when an old alert is being edited, need to initialize it
- if (!item.comparisonType && item.value && item.name) {
- item.comparisonType = item.comparisonInterval === undefined ? 'count' : 'percent';
- }
- if (item.comparisonType) {
- changeAlertNode = {
- ...changeAlertNode,
- label: changeAlertNode.label.replace(
- '{comparisonType}',
- COMPARISON_TYPE_CHOICE_VALUES[item.comparisonType]
- ),
- };
- if (item.comparisonType === 'percent') {
- if (!item.comparisonInterval) {
- // comparisonInterval value in IssueRuleEditor state
- // is undefined even if initial value is defined
- // can't directly call onPropertyChange, because
- // getNode is called during render
- window.clearTimeout(this.propertyChangeTimeout);
- this.propertyChangeTimeout = window.setTimeout(() =>
- onPropertyChange(itemIdx, 'comparisonInterval', '1w')
- );
- }
- changeAlertNode = {
- ...changeAlertNode,
- formFields: {
- ...changeAlertNode.formFields,
- comparisonInterval: {
- type: 'choice',
- choices: COMPARISON_INTERVAL_CHOICES,
- initial: '1w',
- },
- },
- };
- }
- }
- return changeAlertNode;
- };
- render() {
- const {
- onAddRow,
- onResetRow,
- onDeleteRow,
- onPropertyChange,
- nodes,
- placeholder,
- items,
- organization,
- project,
- disabled,
- error,
- selectType,
- } = this.props;
- const enabledNodes = nodes ? nodes.filter(({enabled}) => enabled) : [];
- const createSelectOptions = (actions: IssueAlertRuleActionTemplate[]) =>
- actions.map(node => {
- const isNew = node.id === EVENT_FREQUENCY_PERCENT_CONDITION;
- if (node.id.includes('NotifyEmailAction')) {
- return {
- value: node.id,
- label: organization.features?.includes('alert-release-notification-workflow')
- ? t('Issue Owners, Team, Member, or Release Members')
- : t('Issue Owners, Team, or Member'),
- };
- }
- return {
- value: node.id,
- label: (
- <Fragment>
- {isNew && <StyledFeatureBadge type="new" noTooltip />}
- {node.prompt?.length ? node.prompt : node.label}
- </Fragment>
- ),
- };
- });
- let options: any = !selectType ? createSelectOptions(enabledNodes) : [];
- if (selectType === 'grouped') {
- const grouped = enabledNodes.reduce(
- (acc, curr) => {
- if (curr.actionType === 'ticket') {
- acc.ticket.push(curr);
- } else if (curr.id.includes('event_frequency')) {
- acc.frequency.push(curr);
- } else if (
- curr.id.includes('sentry.rules.conditions') &&
- !curr.id.includes('event_frequency')
- ) {
- acc.change.push(curr);
- } else if (curr.id.includes('sentry.integrations')) {
- acc.notifyIntegration.push(curr);
- } else if (curr.id.includes('notify_event')) {
- acc.notifyIntegration.push(curr);
- } else {
- acc.notify.push(curr);
- }
- return acc;
- },
- {
- notify: [] as IssueAlertRuleActionTemplate[],
- notifyIntegration: [] as IssueAlertRuleActionTemplate[],
- ticket: [] as IssueAlertRuleActionTemplate[],
- change: [] as IssueAlertRuleConditionTemplate[],
- frequency: [] as IssueAlertRuleConditionTemplate[],
- }
- );
- options = Object.entries(grouped)
- .filter(([_, values]) => values.length)
- .map(([key, values]) => {
- const label = {
- notify: t('Send notification to\u{2026}'),
- notifyIntegration: t('Notify integration\u{2026}'),
- ticket: t('Create new\u{2026}'),
- change: t('Issue state change'),
- frequency: t('Issue frequency'),
- };
- return {label: label[key], options: createSelectOptions(values)};
- });
- }
- return (
- <Fragment>
- <RuleNodes>
- {error}
- {items.map((item, idx) => (
- <RuleNode
- key={idx}
- index={idx}
- node={this.getNode(item.id, idx)}
- onDelete={onDeleteRow}
- onPropertyChange={onPropertyChange}
- onReset={onResetRow}
- data={item}
- organization={organization}
- project={project}
- disabled={disabled}
- />
- ))}
- </RuleNodes>
- <StyledSelectControl
- placeholder={placeholder}
- value={null}
- onChange={obj => onAddRow(obj ? obj.value : obj)}
- options={options}
- disabled={disabled}
- />
- </Fragment>
- );
- }
- }
- export default RuleNodeList;
- const StyledSelectControl = styled(SelectControl)`
- width: 100%;
- `;
- const RuleNodes = styled('div')`
- display: grid;
- margin-bottom: ${space(1)};
- gap: ${space(1)};
- @media (max-width: ${p => p.theme.breakpoints.medium}) {
- grid-auto-flow: row;
- }
- `;
- const StyledFeatureBadge = styled(FeatureBadge)`
- margin: 0 ${space(1)} 0 0;
- `;
|