Skip to content
Advertisement

Typescript dynamically infer type from object

I have a JS Object with React components, indexed by ID.

JavaScript

I would like to have a ModalEntity type which results in this:

JavaScript

My problem is, I want the type to be dynamically generated from the MODAL_ENTITIES object, since I want the process of adding a modal to be as effortlessly as possible.

Is there a way to define this type dynamically? I could do this but I want to avoid generics, I would like T to be inferred:

JavaScript

Advertisement

Answer

I made a mockup. The idea is to get generic T out of your ModalEntity type so that it can be used easily when you add a new modal.

Placeholders for your modals, assuming that each modal has different props:

JavaScript

Then we get the keys from your MODAL_ENTITIES in a dynamic way:

JavaScript

Finally:

JavaScript

The ModalEntity type will look like this and it’s no longer generic. the type of props fields will be inferred dynamically as you requested regardless of different modal props.

JavaScript

You can elaborate more on this idea.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement