Skip to content

Unbind relations only when the entity is not recently created #254

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
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