Bits and Pieces

Insightful articles, step-by-step tutorials, and the latest news on full-stack composable software development

Follow publication

Designing Reusable React Components

Fernando Doglio
Bits and Pieces
Published in
7 min readJan 20, 2020

--

Image by Bessi from Pixabay

Designing for reuse is getting more useful

React app with components
// clone the project
$ git clone https://github.com/teambit/react-demo-app.git
$ cd react-demo-app
$ yarn
// install Bit & initialize a workspace in the project's directory
$ yarn global add bit-bin
$ bit init --package-manager yarn
// login (after creating an account and collection in bit.dev)
$ bit login
// add all components
$ bit add src/components/*
// configure a compiler (to decouple the components from your env)
$ bit import bit.envs/compilers/react --compiler
// tag & export
$ bit tag --all
$ bit export user-name.collection-name
// take a few mintues to write examples for them in bit.dev and you're done :)
The To-Do app’s shared components

Easy cross-repo collaboration

If cross-repo collaboration brings to your mind authoring and consuming externally packaged bundles of code — you’re thinking of the wrong thing.

// create an example project & initilize a Bit workspace
$ npx create-react-app example-app
$ cd example-app
$ bit init
// import the component
$ bit import user-name.collection-name/removable-list-item
// modify the component located at components/removable-list-item/RemovableListItem.js - notice it is in the root directory, not in the "src" directory)// tag & export it back
$ bit tag user-name.collection-name/removable-list-item
$ bit export

Maximizing code reuse…

Designing context-agnostic components

Wrong styling

Using global state

$ bit init # <-- this will initialize a Bit workspace in your project's directory$ bit add src/theme-toggler-button.js # <--- this will prepare the component to be exported$ bit status # <-- let's check how we're doing

Conclusion

Learn More

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in Bits and Pieces

Insightful articles, step-by-step tutorials, and the latest news on full-stack composable software development

Written by Fernando Doglio

I write about technology, freelancing and more. Check out my FREE newsletter if you’re into Software Development: https://fernandodoglio.substack.com/

No responses yet

Write a response