feat(atomic): add @watch decorator for Lit components #4875
+52
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently, there is no equivalent in Lit for Stencil’s Watch Decorator. Without this feature, monitoring changes to specific properties and triggering methods in response requires more boilerplate in Lit components.
Stencil Example with @watch
Using Stencil’s
@Watch
decorator, the code to monitor properties and invoke corresponding methods is concise:Equivalent Code in Lit Components
In Lit, achieving the same functionality requires additional logic in the willUpdate lifecycle method, as shown below:
Introducing the
@watch
DecoratorTo avoid the extra code, I added
@watch
decorator for Lit components that replicates the functionality of Stencil’s@Watch
.Cons
The decorator requires us to overwrite the
willUpdate
method which is considered protected.Let me know if you think we should go with it?
Bonus of the watch decorator
Autocomplete Support: The decorator provides autocompletion for property names, enhancing developer experience.
https://coveord.atlassian.net/browse/KIT-3860