-
Notifications
You must be signed in to change notification settings - Fork 12.5k
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
pick types from class by specific decorator #48413
Comments
Note, unlike #4881, I don't want mutate the class type. I just want to know which properties were decorated with a decorator in order to derive types from the class. |
Another use case is using an entity object from the server side for the client applications. For example, exclude or pick some properties from the original class for safety purposes. |
Looks like ES decorators are here to stay and they're looking good! The good thing is not much has changed as far as how end users use decorators, so it is possible to implement new features like in this thread without a big risk of having to totally change it later. |
Great, I need exactly this and while this is not available in ts itself, you can generate those types with babel, no human error, but still headache :) |
That's a great idea! Will finally make angular ngOnChanges fully typed. |
I would love to see this feature for easily generating props types for JSX elements from the props in the class. |
I am aware that decorators can not currently modify the type of a class and this is not a feature request for that.
Suggestion
🔍 Search Terms
typescript pick properties by decorator
✅ Viability Checklist
My suggestion meets these guidelines:
⭐ Suggestion
This is a feature request to be able to pick properties from a class type based on a particular decorator or set of decorators.
This would probably have to be a type with an intrinsic implementation.
📃 Motivating Example
The ability to do something this:
💻 Use Cases
Makes it easier to do things, for example pick properties that represent attributes for use in JSX.
Here's an example of a Custom Element for use in some hypothetical JSX framework, and we want only certain properties to be available via JSX:
Without such a tool, we must resort to more repetitive code, with the opportunity for human error. In the following snippet, the user has to remember to keep the list of strings up to date with the decorator properties; which leads to more work, and easy to get it wrong:
Note that if the class has 20 properties decorated with
@prop
, they have to make sure they list the same 20 properties in the string list. They could accidentally also include the wrong properties, like so:The text was updated successfully, but these errors were encountered: