-
-
Notifications
You must be signed in to change notification settings - Fork 354
[LiveComponent] add LiveProp name to modifier function #2652
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
base: 2.x
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -135,7 +135,7 @@ public function withModifier(object $component): self | |
throw new \LogicException(\sprintf('Method "%s::%s()" given in LiveProp "modifier" does not exist.', $component::class, $modifier)); | ||
} | ||
|
||
$modifiedLiveProp = $component->{$modifier}($this->liveProp); | ||
$modifiedLiveProp = $component->{$modifier}($this->liveProp, $this->getName()); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For a change like this, a test would be needed. Especially for things related to query, URL, etc. (The fact tests do pass after your changes does not proves it does work (nor that our current suite of test is good enough, to be fair)) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added to the existing test, I don't see the need to make a separate test for just this param unless there are some edge cases that aren't entirely obvious to me at this time. |
||
if (!$modifiedLiveProp instanceof LiveProp) { | ||
throw new \LogicException(\sprintf('Method "%s::%s()" should return an instance of "%s" (given: "%s").', $component::class, $modifier, LiveProp::class, get_debug_type($modifiedLiveProp))); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This'd have to be updated to the actual release version, I just took the next one.