Build Decoupled React Components with Inversion of Control

Imagine you’re implementing an e-commerce checkout, and the product manager has temporally chosen PayPal as payment provider. But it’s planned to change the provider for another one, e.g.: Stripe. Looking for small changes in the future, how would you …


This content originally appeared on Bits and Pieces - Medium and was authored by César Felipe

Imagine you’re implementing an e-commerce checkout, and the product manager has temporally chosen PayPal as payment provider. But it’s planned to change the provider for another one, e.g.: Stripe. Looking for small changes in the future, how would you implement this?

Inversion of Control (IoC) probably will help you in this case.

What is IoC?

IoC is a programming principle where you invert the control flow of a program, it’s used to decouple your code. You can read more about here, let’s go code.

You have the checkout.component.tsx that is responsible for creating the checkout flow. It renders the product list, total of payment and the payment form that is provided by PayPal.

The problem here is that your checkout flow knows about PayPal, and that can generate a huge refactor in the future.

To prevent this, you can use ElementType and interfaces.

ProviderProps ensure that any provider will implement the correct methods. ComponentProps forces the checkout flow to receive a provider and mount it, passing the given props.

Now we can create a “dumb” component that knows how to control the screen state, like loading and feedback.

And the responsible for managing the payment with PayPal can be isolated, totally decoupling the code.

Now, you can create a simple container that mount the checkout component and pass the correct props.

You can even create a factory method that returns the correct provider in a scenario you have more than one.

I hope that this article helped you to understand how to use inversion of control with react and how to decouple your code to be more maintainable.

Build with independent components, for speed and scale

Instead of building monolithic apps, build independent components first and compose them into features and applications. It makes development faster and helps teams build more consistent and scalable applications.

OSS Tools like Bit offer a great developer experience for building independent components and composing applications. Many teams start by building their Design Systems or Micro Frontends, through independent components. Give it a try →

An independent product component: watch the auto-generated dependency graph

Build Decoupled React Components with Inversion of Control was originally published in Bits and Pieces on Medium, where people are continuing the conversation by highlighting and responding to this story.


This content originally appeared on Bits and Pieces - Medium and was authored by César Felipe


Print Share Comment Cite Upload Translate Updates
APA

César Felipe | Sciencx (2022-02-03T14:40:30+00:00) Build Decoupled React Components with Inversion of Control. Retrieved from https://www.scien.cx/2022/02/03/build-decoupled-react-components-with-inversion-of-control/

MLA
" » Build Decoupled React Components with Inversion of Control." César Felipe | Sciencx - Thursday February 3, 2022, https://www.scien.cx/2022/02/03/build-decoupled-react-components-with-inversion-of-control/
HARVARD
César Felipe | Sciencx Thursday February 3, 2022 » Build Decoupled React Components with Inversion of Control., viewed ,<https://www.scien.cx/2022/02/03/build-decoupled-react-components-with-inversion-of-control/>
VANCOUVER
César Felipe | Sciencx - » Build Decoupled React Components with Inversion of Control. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/02/03/build-decoupled-react-components-with-inversion-of-control/
CHICAGO
" » Build Decoupled React Components with Inversion of Control." César Felipe | Sciencx - Accessed . https://www.scien.cx/2022/02/03/build-decoupled-react-components-with-inversion-of-control/
IEEE
" » Build Decoupled React Components with Inversion of Control." César Felipe | Sciencx [Online]. Available: https://www.scien.cx/2022/02/03/build-decoupled-react-components-with-inversion-of-control/. [Accessed: ]
rf:citation
» Build Decoupled React Components with Inversion of Control | César Felipe | Sciencx | https://www.scien.cx/2022/02/03/build-decoupled-react-components-with-inversion-of-control/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.