Skip to content

Commit e135f01

Browse files
RotationConfigForm: Don't increase priority when editing a rotation
The priority of existing rotations should only be increased when creating a new rotation
1 parent e72f8d7 commit e135f01

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

application/forms/RotationConfigForm.php

+17-15
Original file line numberDiff line numberDiff line change
@@ -280,16 +280,16 @@ public function loadRotation(int $rotationId): self
280280
/**
281281
* Insert a new rotation in the database
282282
*
283-
* @param int $priority The priority of the rotation
283+
* @param ?int $priority The priority of the rotation in case of editing existing one
284284
*
285285
* @return Generator<int, DateTime> The first handoff of the rotation, as value
286286
*/
287-
private function createRotation(int $priority): Generator
287+
private function createRotation(int $priority = null): Generator
288288
{
289289
$data = $this->getValues();
290290
$data['options'] = Json::encode($data['options']);
291291
$data['schedule_id'] = $this->scheduleId;
292-
$data['priority'] = $priority;
292+
$data['priority'] = $priority ?? 0;
293293

294294
$members = array_map(function ($member) {
295295
return explode(':', $member, 2);
@@ -312,17 +312,19 @@ private function createRotation(int $priority): Generator
312312

313313
$changedAt = time() * 1000;
314314

315-
$rotationsToMove = Rotation::on($this->db)
316-
->columns('id')
317-
->filter(Filter::equal('schedule_id', $this->scheduleId))
318-
->orderBy('priority', SORT_DESC);
319-
320-
foreach ($rotationsToMove as $rotation) {
321-
$this->db->update(
322-
'rotation',
323-
['priority' => new Expression('priority + 1'), 'changed_at' => $changedAt],
324-
['id = ?' => $rotation->id]
325-
);
315+
if ($priority === null) {
316+
$rotationsToMove = Rotation::on($this->db)
317+
->columns('id')
318+
->filter(Filter::equal('schedule_id', $this->scheduleId))
319+
->orderBy('priority', SORT_DESC);
320+
321+
foreach ($rotationsToMove as $rotation) {
322+
$this->db->update(
323+
'rotation',
324+
['priority' => new Expression('priority + 1'), 'changed_at' => $changedAt],
325+
['id = ?' => $rotation->id]
326+
);
327+
}
326328
}
327329

328330
$data['changed_at'] = $changedAt;
@@ -395,7 +397,7 @@ public function addRotation(): void
395397
$transactionStarted = $this->db->beginTransaction();
396398
}
397399

398-
$this->createRotation(0)->send(true);
400+
$this->createRotation()->send(true);
399401

400402
if ($transactionStarted) {
401403
$this->db->commitTransaction();

0 commit comments

Comments
 (0)