123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- import {Component} from 'react';
- import styled from '@emotion/styled';
- import Feature from 'sentry/components/acl/feature';
- import SelectControl from 'sentry/components/forms/controls/selectControl';
- import Input from 'sentry/components/input';
- import NumberDragControl from 'sentry/components/numberDragControl';
- import {Tooltip} from 'sentry/components/tooltip';
- import {t, tct, tn} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {
- AlertRuleComparisonType,
- AlertRuleThresholdType,
- ThresholdControlValue,
- } from 'sentry/views/alerts/rules/metric/types';
- type Props = ThresholdControlValue & {
- comparisonType: AlertRuleComparisonType;
- disableThresholdType: boolean;
- disabled: boolean;
- onChange: (value: ThresholdControlValue, e: React.FormEvent) => void;
- onThresholdPeriodChange: (value: number) => void;
- onThresholdTypeChange: (thresholdType: AlertRuleThresholdType) => void;
- placeholder: string;
- thresholdPeriod: number | null;
- type: string;
- hideControl?: boolean;
- };
- type State = {
- currentValue: string | null;
- };
- class ThresholdControl extends Component<Props, State> {
- state: State = {
- currentValue: null,
- };
- handleThresholdChange = (e: React.ChangeEvent<HTMLInputElement>) => {
- const {value} = e.target;
- // Only allow number and partial number inputs
- if (!/^[0-9]*\.?[0-9]*$/.test(value)) {
- return;
- }
- const {onChange, thresholdType} = this.props;
- // Empty input
- if (value === '') {
- this.setState({currentValue: null});
- onChange({thresholdType, threshold: ''}, e);
- return;
- }
- // Only call onChange if the new number is valid, and not partially typed
- // (eg writing out the decimal '5.')
- if (/\.+0*$/.test(value)) {
- this.setState({currentValue: value});
- return;
- }
- const numberValue = Number(value);
- this.setState({currentValue: null});
- onChange({thresholdType, threshold: numberValue}, e);
- };
- /**
- * Coerce the currentValue to a number and trigger the onChange.
- */
- handleThresholdBlur = (e: React.FocusEvent<HTMLInputElement>) => {
- if (this.state.currentValue === null) {
- return;
- }
- const {onChange, thresholdType} = this.props;
- onChange({thresholdType, threshold: Number(this.state.currentValue)}, e);
- this.setState({currentValue: null});
- };
- handleTypeChange = ({value}) => {
- const {onThresholdTypeChange} = this.props;
- onThresholdTypeChange(value);
- };
- handleDragChange = (delta: number, e: React.MouseEvent) => {
- const {onChange, thresholdType, threshold} = this.props;
- const currentValue = threshold || 0;
- onChange({thresholdType, threshold: currentValue + delta}, e);
- };
- handleThresholdPeriodChange = ({value}) => {
- this.props.onThresholdPeriodChange(value);
- };
- render() {
- const {currentValue} = this.state;
- const {
- thresholdPeriod,
- thresholdType,
- comparisonType,
- hideControl,
- threshold,
- placeholder,
- type,
- onChange: _,
- onThresholdTypeChange: __,
- disabled,
- disableThresholdType,
- } = this.props;
- return (
- <Wrapper>
- <Container comparisonType={comparisonType}>
- <SelectContainer>
- <SelectControl
- isDisabled={disabled || disableThresholdType}
- name={`${type}ThresholdType`}
- value={thresholdType}
- options={[
- {
- value: AlertRuleThresholdType.BELOW,
- label:
- comparisonType === AlertRuleComparisonType.COUNT
- ? hideControl
- ? t('When below Critical or Warning')
- : t('Below')
- : hideControl
- ? t('When lower than Critical or Warning')
- : t('Lower than'),
- },
- {
- value: AlertRuleThresholdType.ABOVE,
- label:
- comparisonType === AlertRuleComparisonType.COUNT
- ? hideControl
- ? t('When above Critical or Warning')
- : t('Above')
- : hideControl
- ? t('When higher than Critical or Warning')
- : t('Higher than'),
- },
- ]}
- components={disableThresholdType ? {DropdownIndicator: null} : undefined}
- styles={
- disableThresholdType
- ? {
- control: provided => ({
- ...provided,
- cursor: 'not-allowed',
- pointerEvents: 'auto',
- }),
- }
- : undefined
- }
- onChange={this.handleTypeChange}
- />
- </SelectContainer>
- {!hideControl && (
- <ThresholdContainer comparisonType={comparisonType}>
- <ThresholdInput>
- <Input
- size="md"
- disabled={disabled}
- name={`${type}Threshold`}
- data-test-id={`${type}-threshold`}
- placeholder={placeholder}
- value={currentValue ?? threshold ?? ''}
- onChange={this.handleThresholdChange}
- onBlur={this.handleThresholdBlur}
- // Disable lastpass autocomplete
- data-lpignore="true"
- />
- <DragContainer>
- <Tooltip
- title={tct(
- 'Drag to adjust threshold[break]You can hold shift to fine tune',
- {
- break: <br />,
- }
- )}
- >
- <NumberDragControl
- step={5}
- axis="y"
- onChange={this.handleDragChange}
- />
- </Tooltip>
- </DragContainer>
- </ThresholdInput>
- {comparisonType === AlertRuleComparisonType.CHANGE && (
- <PercentWrapper>%</PercentWrapper>
- )}
- </ThresholdContainer>
- )}
- </Container>
- {!hideControl && (
- <Feature features={['metric-alert-threshold-period']}>
- <SelectContainer>
- <SelectControl
- isDisabled={disabled}
- name="thresholdPeriod"
- value={thresholdPeriod}
- options={[1, 2, 5, 10, 20].map(value => ({
- value,
- label: tn('For %s minute', 'For %s minutes', value),
- }))}
- onChange={this.handleThresholdPeriodChange}
- />
- </SelectContainer>
- </Feature>
- )}
- </Wrapper>
- );
- }
- }
- const Wrapper = styled('div')`
- display: flex;
- align-items: center;
- gap: ${space(1)};
- `;
- const Container = styled('div')<{comparisonType: AlertRuleComparisonType}>`
- flex: 2;
- display: flex;
- align-items: center;
- flex-direction: ${p =>
- p.comparisonType === AlertRuleComparisonType.COUNT ? 'row' : 'row-reverse'};
- gap: ${space(1)};
- `;
- const SelectContainer = styled('div')`
- flex: 1;
- `;
- const ThresholdContainer = styled('div')<{comparisonType: AlertRuleComparisonType}>`
- flex: 1;
- display: flex;
- flex-direction: row;
- align-items: center;
- `;
- const ThresholdInput = styled('div')`
- position: relative;
- display: flex;
- flex-direction: row;
- align-items: center;
- `;
- const PercentWrapper = styled('div')`
- margin-left: ${space(1)};
- `;
- const DragContainer = styled('div')`
- position: absolute;
- top: 4px;
- right: 12px;
- `;
- export default ThresholdControl;
|