Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/Models/Entity.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,13 @@ class Entity extends Eloquent implements EntityInterface
*/
private $isMoved = false;

/**
* Whether this node is newly created.
*
* @var bool
*/
private $created = false;

/**
* Indicates if the model should soft delete.
*
Expand Down Expand Up @@ -289,6 +296,7 @@ public static function boot()
} elseif (!$entity->exists) {
$entity->position = static::getLatestPosition($entity);
}
$entity->created = false;
});

// When entity is created, the appropriate
Expand All @@ -301,10 +309,11 @@ public static function boot()
$ancestor = $entity->parent_id ?? $descendant;

$entity->closure->insertNode($ancestor, $descendant);
$entity->created = true;
});

static::saved(static function (Entity $entity) {
$parentIdChanged = $entity->isDirty($entity->getParentIdColumn());
$parentIdChanged = !$entity->created && $entity->isDirty($entity->getParentIdColumn());

if ($parentIdChanged || $entity->isDirty($entity->getPositionColumn())) {
$entity->reorderSiblings();
Expand Down