Day 23: One component! In multiple products!

Today, you’ll start to see the true benefit a centralized component library approach.

I set up a second practice BofA app as part of this demonstration. I followed the same instructions as yesterday to install the component library. I included the <UtilityNav> component above the fake header of my fake site, and voila:

See that top bar? That’s the Utility Nav component, getting pulled in from our design system’s component library.

But here’s where the magic happens: if I need to change the component, I can update it in the component library. Every application that includes it will get that update the next time the update dependencies in the app.

Turns out, I do need to change the component. Applications need to be able to specify which menu item is active.

When I planned my component, my schema called for each item on the nav to be passed as part of the <UtilityNav> tag. However, since then, my imaginary stakeholders told me that they don’t want the links changing from product to product. They want central control over this content since it should only change at the leadership level and should remain the same across all products.

There’s a few ways to tackle this:

  1. I could use the position/index, i.e. if menu item slot = 2, then give that slot an active class in the markup.
  2. I could match the name, i.e. if name specified in prop = the name on a menu item, apply the class.
  3. I could try to set up some logic to figure out what site we’re on and set the active state based on that, but that’s too complicated.

For simplicity’s sake, I’m going to take the name matching route (#3). While I’m at it, I’m also going to update the font to the one I chose in Figma.

Once I’ve made those changes, I commit to Git, publish to npm, and import the updated package into the existing product.

Behold, two instances of a component:

P.S. If you’ve just joined the list, I’m in the middle of a practical design system build. You can catch up at the beginning of the series here.


Cheers,
Jesse Gardner

Up Next: Day 24: Is this enough?

← Full Archives

Design Systems Daily

Sign up to get daily bite-sized insights in your inbox about design systems, product design, and team-building:

New to design systems?
Start with my free 30-day email course →