DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
View Events Video Library
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Integrating PostgreSQL Databases with ANF: Join this workshop to learn how to create a PostgreSQL server using Instaclustr’s managed service

Mobile Database Essentials: Assess data needs, storage requirements, and more when leveraging databases for cloud and edge applications.

Monitoring and Observability for LLMs: Datadog and Google Cloud discuss how to achieve optimal AI model performance.

Automated Testing: The latest on architecture, TDD, and the benefits of AI and low-code tools.

Related

  • Unleashing the Power of React Hooks
  • Utilizing Database Hooks Like a Pro in Node.js
  • In-Depth Guide to Using useMemo() Hook in React
  • Build Your Own Shopping Cart With React Hooks

Trending

  • Securing Your Applications With Spring Security
  • The Ultimate Guide to API vs. SDK: What’s the Difference and How To Use Them
  • Message Construction: Enhancing Enterprise Integration Patterns
  • New Free Tool From Contrast Security Makes API Security Testing Fast and Easy
  1. DZone
  2. Software Design and Architecture
  3. Integration
  4. ̶R̶e̶a̶c̶t̶ VUE Context Provider Pattern With Custom Hooks

̶R̶e̶a̶c̶t̶ VUE Context Provider Pattern With Custom Hooks

Learn how to use React context provider pattern with Vue Composition API. Find out the benefits and advantages of this pattern using code examples inside the sandbox.

Eugene Sincovschi user avatar by
Eugene Sincovschi
·
Nov. 17, 21 · Tutorial
Like (1)
Save
Tweet
Share
2.63K Views

Join the DZone community and get the full member experience.

Join For Free

The Problem

Vue has lots of tools out of the box that makes our life easier, e.g Vuex and Vue-router. But, it still relies too much on magical connections, which makes code hard to understand. In order to help IDE and future me with code readability, I've started to think about hooks and patterns that come along with them.

The Code

In this sandbox, you can find React's Context Provider Pattern applied to Vue's Composition API provide and inject methods.

The Conclusion

Vue has a very powerful plugin Vuex for state management. But, often, you are unable to share the state in a simpler way or to multiply the same state functionality. Therefore, you have two standard solutions, props drilling and provide/inject. Drilling is good as long it's no deeper than 3 levels. But provide/inject, in their raw form, are relying too much on magic for my taste.

An important note: This pattern is not intended to replace Vuex, but to complement it. The rule of thumb here is to have the Vuex store for the global state and the Context state for a group of components. For E.g, Vuex is used to bring userData inside the Header Component, closer to the User Menu. And the User Menu Root Component is passing data from Store to its atomic components via Context Provider pattern using under the hood provide and inject.

This gives us Decoupled Components that are easy to run and test separately with Storybook, Mocks, Jest Snapshot, etc.

The Takeaway

If Composition API borrows so much from React already, why not keep that in mind and make Vue more lovable by combining the best of both worlds? Don't be afraid to experiment by mixing features and patterns for the greater good.

Hook

Published at DZone with permission of Eugene Sincovschi. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Unleashing the Power of React Hooks
  • Utilizing Database Hooks Like a Pro in Node.js
  • In-Depth Guide to Using useMemo() Hook in React
  • Build Your Own Shopping Cart With React Hooks

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends: