Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 283d33d

Browse files
committedApr 24, 2024·
Make fields for incident age condition intuitive
1 parent 5a0ac30 commit 283d33d

File tree

4 files changed

+40
-21
lines changed

4 files changed

+40
-21
lines changed
 

‎application/forms/EventRuleConfigElements/EscalationCondition.php

+18-20
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ protected function assemble(): void
106106
]
107107
);
108108

109+
$valUnit = null;
109110
switch ($this->getPopulatedValue('column_' . $i)) {
110111
case 'incident_severity':
111112
$val = $this->createElement(
@@ -130,28 +131,21 @@ protected function assemble(): void
130131
break;
131132
case 'incident_age':
132133
$val = $this->createElement(
133-
'text',
134+
'number',
134135
$valName,
135136
[
136137
'required' => true,
137-
'class' => ['autosubmit', 'right-operand'],
138-
'validators' => [
139-
new CallbackValidator(function ($value, $validator) {
140-
if (! preg_match('~^\d+(?:\.?\d*)?[hms]{1}$~', $value)) {
141-
$validator->addMessage(
142-
$this->translate(
143-
'Only numbers with optional fractions (separated by a dot)'
144-
. ' and one of these suffixes are allowed: h, m, s'
145-
)
146-
);
147-
148-
return false;
149-
}
150-
151-
$validator->clearMessages();
152-
return true;
153-
})
154-
]
138+
'class' => 'right-operand',
139+
'value' => 1
140+
]
141+
);
142+
143+
$valUnit = $this->createElement(
144+
'select',
145+
'age_unit_' . $i,
146+
[
147+
'options' => ['s' => 's', 'm' => 'm', 'h' => 'h'],
148+
'class' => 'age-unit'
155149
]
156150
);
157151

@@ -167,6 +161,9 @@ protected function assemble(): void
167161
$this->registerElement($col);
168162
$this->registerElement($op);
169163
$this->registerElement($val);
164+
if ($valUnit) {
165+
$this->registerElement($valUnit);
166+
}
170167

171168
(new EventRuleDecorator())->decorate($val);
172169
$this->conditions[$i] = new EscalationConditionListItem($col, $op, $val, $this->createRemoveButton($i));
@@ -268,7 +265,8 @@ public function getCondition(): string
268265

269266
$filterStr = $chosenType
270267
. $this->getValue('operator_' . $count)
271-
. ($this->getValue('val_' . $count) ?? ($chosenType === 'incident_severity' ? 'ok' : ''));
268+
. ($this->getValue('val_' . $count) ?? ($chosenType === 'incident_severity' ? 'ok' : ''))
269+
. $this->getValue('age_unit_' . $count, '');
272270

273271
$filter->add(QueryString::parse($filterStr));
274272
}

‎application/forms/EventRuleConfigForm.php

+10-1
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,16 @@ public function populate($values): self
333333
}
334334

335335
$conditionFormValues['operator_' . $count] = QueryString::getRuleSymbol($filter);
336-
$conditionFormValues['val_' . $count] = $filter->getValue();
336+
$conditionValue = $filter->getValue();
337+
if (
338+
preg_match('~^(\d+(?:\.?\d*))?([hms])$~', $conditionValue, $matches)
339+
&& count($matches) === 3
340+
) {
341+
$conditionFormValues['val_' . $count] = $matches[1];
342+
$conditionFormValues['age_unit_' . $count] = $matches[2];
343+
} else {
344+
$conditionFormValues['val_' . $count] = $conditionValue;
345+
}
337346
}
338347

339348
$formValues['escalation-condition_' . bin2hex($position)] = $conditionFormValues;

‎library/Notifications/Widget/ItemList/EscalationConditionListItem.php

+6
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,20 @@ class EscalationConditionListItem extends BaseHtmlElement
2626
/** @var FormElement Condition value */
2727
public $conditionVal;
2828

29+
/** @var ?FormElement Condition value */
30+
public $conditionUnit;
31+
2932
public function __construct(
3033
FormElement $conditionType,
3134
FormElement $operator,
3235
FormElement $conditionVal,
36+
?FormElement $conditionUnit,
3337
?SubmitButtonElement $removeButton
3438
) {
3539
$this->conditionType = $conditionType;
3640
$this->operator = $operator;
3741
$this->conditionVal = $conditionVal;
42+
$this->conditionUnit = $conditionUnit;
3843
$this->removeButton = $removeButton;
3944
}
4045

@@ -44,6 +49,7 @@ protected function assemble(): void
4449
$this->conditionType,
4550
$this->operator,
4651
$this->conditionVal,
52+
$this->conditionUnit,
4753
$this->removeButton
4854
]);
4955
}

‎public/css/event-rule-config.less

+6
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,12 @@
178178
margin: 0;
179179
}
180180

181+
.age-unit {
182+
border-radius: 0.4em;
183+
min-width: 3.5em;
184+
margin-left: 1px;
185+
}
186+
181187
.errors + .remove-button {
182188
margin: 0;
183189
}

0 commit comments

Comments
 (0)
Please sign in to comment.