@@ -280,16 +280,16 @@ public function loadRotation(int $rotationId): self
280
280
/**
281
281
* Insert a new rotation in the database
282
282
*
283
- * @param int $priority The priority of the rotation
283
+ * @param ? int $priority The priority of the rotation in case of editing existing one
284
284
*
285
285
* @return Generator<int, DateTime> The first handoff of the rotation, as value
286
286
*/
287
- private function createRotation (int $ priority ): Generator
287
+ private function createRotation (int $ priority = null ): Generator
288
288
{
289
289
$ data = $ this ->getValues ();
290
290
$ data ['options ' ] = Json::encode ($ data ['options ' ]);
291
291
$ data ['schedule_id ' ] = $ this ->scheduleId ;
292
- $ data ['priority ' ] = $ priority ;
292
+ $ data ['priority ' ] = $ priority ?? 0 ;
293
293
294
294
$ members = array_map (function ($ member ) {
295
295
return explode (': ' , $ member , 2 );
@@ -312,17 +312,19 @@ private function createRotation(int $priority): Generator
312
312
313
313
$ changedAt = time () * 1000 ;
314
314
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
+ }
326
328
}
327
329
328
330
$ data ['changed_at ' ] = $ changedAt ;
@@ -395,7 +397,7 @@ public function addRotation(): void
395
397
$ transactionStarted = $ this ->db ->beginTransaction ();
396
398
}
397
399
398
- $ this ->createRotation (0 )->send (true );
400
+ $ this ->createRotation ()->send (true );
399
401
400
402
if ($ transactionStarted ) {
401
403
$ this ->db ->commitTransaction ();
0 commit comments