Accessible Tabs in React

with Chance Strickland

There's a lot that goes into building accessible tabs, from keyboard navigation to ARIA to focus management. Join us on Some Antics as Chance Strickland walks us through building accessible tabs of our own in React!

More From Chance

Mentioned Links

Transcript

Ben: [00:00:00] Howdy, howdy, y'all! It's Tuesday, which means it's Some Antics Day! Today I am joined by Chance Strickland. Chance, hello!

Chance: [00:00:09] Hey Ben, how are you?

Ben: [00:00:10] Doing alright! I am super excited for this one. I'm super excited for the patterns that we're going to be talking about, and I'm excited to have you on! I've definitely seen you around Twitter for a while now. Would you like to tell us a bit about yourself, who you are?

Chance: [00:00:28] Sure, yeah. So, hi, I'm Chance. Chance Strickland for the full legal name there. On Twitter, I'm @chancethedev. I feel like that's the more memorable, catchy way to refer to me. So feel free to just call me that if you'd like. And that's how you find me on the internet.

Yeah, I am a React developer. I've been doing that kind of as my main gig for the last several years. Worked in a handful of different projects with different teams. And I'm currently focused on education now, and so I'm working a lot with React Training — Ryan Florence, Michael Jackson, and Brad Westfall, that team. We are available to teach your team how to get better at using React and following all of the latest and greatest in patterns and best practices in Reacting. And yeah, I just really love training folks on how to be better developers and build better UIs.

So, I do a lot of work as well in accessibility, so I'm really a big fan of your show here and your focus on accessibility. I work a lot on an open source library called Reach UI that is all about building really highly accessible, high quality React components with a big focus on that. So, the stuff we're gonna be working on today is inspired a lot by some of our tools in Reach UI, and we'll talk more about that later, I'm sure. But that's a general overview of who I am and the kind of stuff I work on.

Ben: [00:02:02] Awesome. So, Reach UI. What makes it different from other component libraries?

Chance: [00:02:11] Well, there are, no doubt, a lot of component libraries out there, especially for React. So Reach UI, there's a lot of overlap with some libraries and it's very different in a lot of ways from others. We don't do anything as far as, we don't care about the look or feel of your app. We're not trying to build you a design system. We're trying to give you tools, low-level tools to build your design system on top of. So we don't have any opinions as far as what your application looks like, what these components look like. That's up to you.

So what Reach UI is, is a very low-level tool that you can build onto to add your brand, your look and feel, but its focus is on the functionality and the accessibility of those components. With accessibility, it's sort of a mixed bag because there's a lot of stuff that we can do for you by default. But as I'm sure you know, as a lot of folks probably know, the accessibility of your application is largely context-based, so some of the things we can't do, and we try to provide helpful developer experience-type things to sort of guide folks in how to make things more accessible for things like labelling and that sort of thing. But we do everything that we can. For the things that we can't do, we try and help as best we can through documentation and through developer experience tweaks. But yeah, that's kind of what it is.

There's a lot of other component libraries, like, you know, the Material UIs of the world, that are very opinionated with lots of styles baked in and sort of styling mechanisms baked in. We don't do any of that. We have some, like, base-level CSS that we include if you want to use it, but then everything else is sort of up to you to adopt as you need and make it your own thing.

Ben: [00:03:56] Very cool. Yeah, so of all the people who could possibly be talking to us about, like, what we're going to be doing today, which is building accessible tab components, like, you've definitely got a lot of experience in that regard, thanks to your work on Reach UI and beyond.

Chance: [00:04:13] Yeah, I've been working on all of these types of components for a long time. There's a lot of overlap with tabs and a lot of the other components that we use. And I'm really excited to break into it and talk about it because, you know, people reach for tools like Reach UI — and I don't want to convince you not to. As someone who works on Reach UI, I love that people use it. But I also think that sometimes, a lot of these things, we can overcomplicate them in our minds and it's nice to help people demystify what's actually going on and what's important about these tools. So, that's what I'm really stoked to talk about today and sort of break that down. I think we can do a really killer job here in the next hour or so.

Ben: [00:04:52] Yeah! Alright, so let's go ahead and get started. We do have a bit of starter code here that I'm going to send you all the link to, but I've gone ahead and installed everything, set things up locally. You've already gone in and added stuff to a Create React App project. And if I start it, we will see what we've got to start with.

Chance: [00:05:18] I'm just going to go ahead and tell your viewers to watch out for my claps, because—

Ben: [00:05:23] Yes!

Chance: [00:05:23] As we were discussing before, I know this is a live show and all that, but I've been having some issues with my audio. So like, if it just drops out, if I peak my audio it works, so occasionally I'll just clap, and that's what it's for. Or you can, if you're watching and you feel like you said something worth clapping for, maybe you can pretend I'm clapping for you.

Ben: [00:05:42] There we go! There we go. And go ahead and put your clapping emojis in the chat for solidarity, I guess. We need the engagement.

Chance: [00:05:50] That's right.

Ben: [00:05:50] We'll take anything we can get.

Okay, yeah! So you built out this project ahead of time. Would you like to talk us through what we're going to be doing today?

Chance: [00:06:01] Yeah, so this is what we call a tabs component. It's a very familiar UI for a lot of us, I think. But essentially we've got this phony store that I baked up here where you can, I guess, maybe purchase jokes on the joke store. And if you're logged into the joke store and you want to see which jokes you've purchased, that's what we're looking at here. And we've got this tabs component to show our order history, and we're breaking these orders down by different types of orders, categories, what have you. Like, you can see all orders, pending orders, or fulfilled orders, depending on which tab is highlighted.

So if you try and click or activate any of the tabs at the moment, they're not going to actually work. So, what we're going to do is A, make them functional; B, build an actual composable set of components that we can use anywhere in our application when we're using tabs; and C, we're going to make it accessible so that you can activate these tabs with your keyboard, screen reader users have context, and all of the things that are going to make this a really accessible component.

Ben: [00:07:11] That's exciting. I'm so here for this. Okay, so we've got the project running. We've got the code installed. Where would you like us to start, Chance?

Chance: [00:07:23] Yeah, so I normally — We tried this whole Live Share thing, too, and it's another thing that I'm having issues. It's just not wanting to work for me. So I'm going to test my ability to just sort of walk you through everything as best I can.

So where we're going to start is if you go into the src directory, you're going to see all of our application files, all of our components and everything, and what we're going to be looking at — You're more than welcome to start at the <App /> and go down. That's how I get a feel for the app. But what we're looking at is the <Dashboard /> in particular. So at the dashboard path, we are rendering this <Dashboard /> component. And in the <Dashboard /> component, we have this <Orders /> thing.

In the <Orders /> right now, we have all of the markup that is responsible for rendering these tabs that we see. And if you go through, you'll notice that it's just a bunch of <div>s, basically, with containers, with classnames, with styles. And I think this is where a lot of people, when they're building components like this, kind of start and finish. You know, they'll probably add in the functionality — we want functional stuff — but as we're looking at this markup, something that is clear to folks who work on accessibility a lot is that we're missing a lot of context as to what these things actually are and what they do. And this is going to be a problem for our screen reader users, for keyboard users, and lots of other users for that matter. So what we need to do is we need to start working on these tabs to make them accessible, right?

So the way I like to start this exercise and start by building any accessible component is think about the pattern that I'm using and then check to see if WCAG already has a pattern established for us that we can lean on to know what we need to do to make this an accessible component. So the first thing that I'm going to do as a developer is open the WCAG documentation for the ARIA practices page, which I think you might have open already, but might not. I typically look at 1.2 just because ablisthings have tchanged a lot in the past few years, but I think for tabs, it's the same either way if you're looking at 1.1 or 1.2. But yeah, we can take a look. There is a tab panel pattern established.

And so, Ben, do you want to — I'm sure a lot of your users know — but you want to explain what we're looking at here?

Ben: [00:09:36] Yeah, so this is… The World Wide Web Consortium is the organization that puts together all the web standards for HTML and for CSS and for a lot of the, like, accessibility interactions that a website might have. And so some of the specs that they put together are the ARIA specs for using ARIA attributes to curate an accessible experience for assistive technology users, such as people who use screen readers. But there's a lot that goes into ARIA. There's a lot of compatibility stuff and you have to use certain roles and attributes with other roles and attributes. And so you can't just have a page that's just like, "Here's all the roles and here's all the attributes." You have to actually provide some example patterns that you can follow that in theory — and I understand that compatibility isn't always perfect — but in theory, these patterns could get you at least close to good enough most of the time.

Chance: [00:10:35] Yeah, I like to think of it as kind of a shim for what's missing in HTML, right? Like, we have a lot of things baked into HTML that we can use to get a lot of functionality for free. A lot of us are always talking about "Use a <button> instead of a <div>. Use a <button> instead of an anchor tag when you want an action instead of a link," right? And the reason for that is because the <button> is actually a pretty powerful HTML element. It's got a lot of stuff baked in, right? It's got keyboard actions baked into it, so you don't have to wire those up yourself, which is great.

But HTML doesn't have that sort of low-level primitive element for every type of UI, and where those things are missing, we turn to ARIA as guidance for a lot of the more common UIs that we want to build in the web, which is great. It's a really great resource. And as you mentioned, it's not always perfect, but it's going to get us a long way if we follow it pretty closely and then test for our users, right? And so this is what we're going to be using as our guide.

So, if I'm reading the tabs spec, as we call it. We say "spec," but I don't like the word "spec" for this. It's, like, more of a guidance, right? You still need to test.

Ben: [00:11:45] It's a recommendation!

Chance: [00:11:46] Because you still—

[claps] Yep, there we go.

You still want to make sure stuff actually works, which requires testing and all of the things that we know and love to do. But we're going to start here.

If we take a look at this, somewhere along the line, it's going to tell us that there's a couple of different ways we could approach activating tabs. There's this automatic activation, and then there's this idea of manual activation. And generally speaking for tabs, unless you're doing some sort of asynchronous data loading where it takes a long time for individual tab content to load and you need to lazy load it or whatever, generally speaking, automatic is the way to go for user experience.

So, what I'm going to do is, instead of using the spec itself, the guidance itself, I'm going to take a look at this example, the "Tabs with Automatic Activation" example, 'cause this is going to have all of the stuff outlined for us, and I just find these examples a lot easier to follow.

Ben: [00:12:44] Okay.

Chance: [00:12:44] So it actually gives you a working example of the tabs component. It gives you some example code you can use, but of course we're using React, so the mechanisms for dealing with state and those things are maybe a little different for us. But it's a really good start. So if we take a look, we've got some accessibility features, it talks about things like keyboard support, and then we have a table. This is the table I'm going to start with for this exercise that tells us each breakdown of every single part of our tabs component and the HTML attributes that we need for those components.

So, now that we've got this up, what I'm going to ask you to do is take a look at the Reach UI page you've got pulled up in another tab.

Ben: [00:13:29] Yeah.

Chance: [00:13:29] And let's talk a minute about APIs for components. So this is something that we teach a lot with React Training. Selfless— shameless self-plug, I think is what I'm trying to say. I've got a workshop coming up on this exact topic in a few weeks, so we'll have a link to this I'm sure at some point in the stream, but I just want to mention if you're interested in this kind of stuff at all, this is something that I can teach you in much more depth later on. But what we're going to be talking about is API design for our tabs component. Like what is our—

Oh, there we go. Alright. So what is our interface going to look like for the components that consume our tabs? And what I'm going to base this on is this idea of compound components, where we actually have multiple parts as individual components that we can use. And this API is really nice for a lot of reasons.

There's a lot of folks who want to put all of their data at the top and feed everything down through config props, but React gives us these nice composition patterns through the usage of children that we can use to compose our elements in a variety of different ways, like if we wanted the tab list on top, we could put it on top. If we want it on bottom, we could put it on bottom by just simply moving these components around. And so I really like this way of composing my low-level components. And that's how we're going to do this exercise, is we're going to mirror this API. So this is what I ultimately want my tabs API to look like. Okay.

So if we go back into our code, again, we see we've got all this markup, and it's pretty, pretty close to what we're going to be using in tabs. So what I might do here is go into — if you scroll up to the top, you see I've got some import statements pulling in some stuff from this ./Tabs file that I've already started for you, and we can go ahead and take a look at that file.

And so what you see here is just kind of a shell for it, 'cause I just wanted to save some time. Just a couple of things to go over here, anytime I'm creating these types of components, these really low-level components, I want to make them as close to, like, if they were a baked-in HTML component as possible, meaning that I want to be able to pass along any props I want, I want to be able to use refs for DOM refs, and that sort of thing. And it's really helpful to also stick to the whole "one DOM node per component" rule for that sort of reason. So if you're rendering one DOM node in a component, that belongs in one component. So it makes it a lot easier to deal with passing props around to these different parts. Does that make sense?

Ben: [00:16:10] Yeah, I believe so, yeah. I like that modularity there, but yes.

Chance: [00:16:15] Yeah, so we use the React forwardRef API, which if you're not familiar with this, that lets us take refs that's passed into that component and forward it to a very specific DOM node so that we can use DOM refs, if we need them for things like focus management, or measurement, or anything else you might need DOM refs for. We want to forward the ref from the parent component on down to the underlying DOM node that we render. React doesn't do that for you by default. So it's not passed as a regular prop. You have to forward that ref down so that it knows which node to attach to.

So that's what we're looking at here for the most part, and it's pretty much just a shell with a lot of the things that we're going to need already wired up. So we have all of the—

[claps] Alright, this sound thing is fun.

We've got all the parts that we need sort of created here for us. So what we want to do now is we want to go back to our ARIA guidelines and start looking at the different attributes that we need for all of the parts. So I might go into, if you look at the tab list… So the tab list is… we've got a TabList component, so I want to go ahead and start by adding a role to my TabList component to match what the spec tells us, which is just role of "tablist".

Ben: [00:17:38] And there we go. Alright. TabList is up here. Okay, so I would go to… Seems like you're saying role="tablist". Like that?

Chance: [00:17:51] That's the one, yep. Just like that. Yep, and then I would go and take a look. The next thing we need to do to our TabList, I believe, if you go back to the… we had this aria-label, right? Now, aria-label, we don't really know what that's going to be, right? 'Cause that's context-related. We need the context of the application for that. So we actually don't necessarily want to pre-assign an aria-label to our tabs. We just want to pass it along, right? We want to accept it from the parent component and just forward it along. So if we go back to the code, we're just making sure that we're forwarding all of our props down, and we are. We're spreading all of our props in there, which is great.

Ben: [00:18:26] Okay, so the idea is whoever is using the TabList component would provide, as one of the props, aria-label, and that would just get magically forwarded on. Okay.

Chance: [00:18:36] Exactly, we're just passing it along. So that's pretty much done, and I think we're good to move on from that particular component for now. Let me get— I'm trying to pull my reference up separately since my Live Share is not working out.

Ben: [00:18:50] Yeah. So, is there… 'Cause it seems like the aria-label is one of those, like, best practices to have for a tab list like this. Is there a way you would recommend building this API to encourage TabList consumers to provide aria-label?

Chance: [00:19:07] Absolutely. Yeah. So there's a couple ways. First of all, if you're using TypeScript, you could just make it a required prop potentially. I would probably not do that for a couple of reasons. One, an accessible label can be inferred a number of different ways. So we have aria-label or we have aria-labelledby.

Ben: [00:19:24] Ah.

Chance: [00:19:24] Either of those are valid, right? So maybe a better approach to me for this particular case would be to create, like, a useEffect or something that checks these props on every render to make sure that we have one or the other. And then, like, I think in Reach what we do — don't quote me on this, I'd have to check — I think what we might do is we actually do a querySelector to make sure if you have aria-labelledby that it actually can find the right label, right?

Ben: [00:19:51] Ohh.

Chance: [00:19:51] So there's a couple of different ways you could approach that. But I would generally handle it by, A, checking the environment to make sure that we're only, like, tossing warnings and stuff out on dev, and then have just some sort of effect that checks to make sure that we've always got an accessible label there.

Ben: [00:20:10] Interesting, okay. Very cool.

Chance: [00:20:15] Yeah, so I think for TabList… So the next thing that we need to do for TabList — We'll come back to this actually in a little. Let's just go ahead and walk through this table real quick. So the next thing we'll look at is our tab. Our Tab component's gonna have several potential things that we need to do to it. So we need this, first of all, the role, the role of "tab", right?

Ben: [00:20:36] Yep. Alright!

Chance: [00:20:38] Yeah, so add a role of "tab". And another thing we noticed is the tab actually is recommended that we use a button for this. So I might… Something that you'll notice here is that I use this as prop. So if you take a look at the props that I've already set up for all of the elements, and I'm doing this as thing? I like doing this too for a low-level components, and we do this for Reach UI as well, so that you can actually render whatever element you would like under the hood. And even though we have recommended elements — we have things that are better if you use these elements — there are going to be times and contexts in which that might not be appropriate. Maybe for the overall Tabs component, you actually want it to be a <section>. Maybe for individual tabs, maybe there actually are some nested interactive things going on and it needs to be a <div>. So there are times when you need to bail out of the default and do your own thing, which will require some additional work for accessibility in that case.

But for this example, we can keep it simple and just set that default value from "div" to "button". And then when we actually returned and render that tab, it'll just render the element. So now, whatever the Element or the as prop is set to will be rendered by default. We have a <button>, so it's great. It's going to save us a lot of work here.

And let's go check that table again, see what's next.

Alright, so we have a couple of ARIA things: aria-selected, just "true" or "false"; and then tabindex of "-1", but it would be tabindex of "0" for the selected, active tab, if we're working with the active tab; and then we've got some aria-controls things.

Alright, so let's go back to our code real quick and let's just knock these out one at a time. So we've got aria-selected is our first ARIA prop. Let's go ahead and add that.

Ben: [00:22:29] You got it! I'm going to, I think, also break stuff out into multiple lines at this point.

Chance: [00:22:37] Do you have Prettier installed?

Ben: [00:22:39] Yeah.

Chance: [00:22:41] I lean on Prettier so much. There we go. Beautiful.

Ben: [00:22:45] Aha!

Chance: [00:22:46] I can't work without Prettier anymore. I don't know about you, but it's the best.

Ben: [00:22:51] Oh, man. Yeah, I keep forgetting that I have the option to just, like, format in one click.

Chance: [00:22:57] Aw, it's amazing.

Ben: [00:22:58] Yeah.

Chance: [00:22:59] So one thing that I might do here is I would go ahead and say — we'll come back to this, 'cause we haven't got this far yet — but just create a variable right above the return statement. Just call it isActive and set it to false for now. And then aria-selected can just be the value isActive. And so we'll wire all that up later, but now we at least have a reference to that 'cause we're gonna need it in a couple of places.

So, we've got isActive here. We also want to do tabindex. That's something that we saw in the table.

Ben: [00:23:34] Yeah!

Chance: [00:23:34] So do tabIndex. And then if isActive is true, then our tabIndex should be 0. And if it's not true, it should be -1. And the reason for this is because the way that keyboard users are going to want to navigate tabs is with the arrow keys. We're going to have to wire all that up separately. But when you're tabbing through your tabs, the tab order that's suggested by the guidelines here is that your tab from outside the tabs component, when you get to the tabs component, is going to hit the active tab, and then you're going to tab to the tab itself so that you can immediately read that content, because that's kind of like the flow, right? You get the section header, which is the tab and the content. And if you want to change tabs, you actually navigate with the arrow keys.

Ben: [00:24:19] Yeah. So the way I've always thought of it is it's like you're focusing on the tab list as a group.

Chance: [00:24:25] Yeah.

Ben: [00:24:26] And, like, it announces the current tab, but because of that, you don't want, like, every button or every tab to be individually focusable, especially if there's a whole bunch of those tabs.

Chance: [00:24:39] Exactly.

Ben: [00:24:39] So you're just disabling the focus if the tab is inactive. Okay. Very cool.

Chance: [00:24:48] Yeah, so, okay, so we've got a tabIndex wired up, and we've got, I think aria-controls was the other one that I saw. Let's go ahead and take a look at that. So aria-controls, it says it has this IDREF thing. What is that all about? So that refers to the tab panel element associated with the tab. Alright. So: got a couple of things we have to do now.

We have to have a stable identifier for our tab, so that our button can point to it, right? So we've got potentially multiple tabs. We don't know yet because we're just creating a generic wrapper component. We don't know how many tabs there will be. We don't know which tab we're rendering. We do know that we could also have multiple Tabs components on the same page, right? We could have the tabs group here, tabs group there. There could be 20 tabs groups, right? We also know that in HTML, an identifier has to be, you can only have one element of a single ID on a given page at a time, right? So we need all of our tabs to be somewhat uniquely identifiable.

So this is a little tricky. React doesn't give us a lot of guidance here and it's kind of left up to users to implement this on their own. So in Reach UI, we have a hook called useId that helps you generate server-safe unique identifiers. And I don't even know if we render them on the server, now that I'm thinking about it. I don't think we do. There are some other tools out there. Different folks have approached this problem in multiple ways, and eventually I know the React team is going to give us an official hook for this.

Ben: [00:26:22] I've heard that!

Chance: [00:26:22] But at the moment— Yeah, I think it's, like, useOpaqueIdentifier, I think is the experimental API.

Ben: [00:26:29] Which is a wild name!

Chance: [00:26:30] Yeah. Like I get why… Like, if you read the issue that explains it, it does sort of make sense, but it's not intuitive. And I don't know, it might not even stay that way. They may change it again, so who knows? But in the meantime we have to do this ourselves.

So, what I have — Can you hear me?

[claps] There we go. Alright.

So what I have wired up is kind of a naïve implementation of a unique identifier generator, but it'll work for these purposes. Not gonna get into the nuts and bolts, but you can look at it if you'd like. But we've already imported it into Tabs.

So what we're going to do here is a couple things. First, we need a unique identifier for the root Tabs thing itself, right? Because again, we can have multiple Tabs components on the page at a time, and we want each one to have its own kind of instance ID. And so what I want, I don't want to rely on users to have to pass this and keep track of unique IDs on a page. That's kind of a pain.

So what I'm going to do, or ask you to do, is in Tabs, I want you to set a variable of tabsId inside the component. We'll say tabsId is equal to, and we'll call useId. And actually, backspace. Get rid of useId for a minute. We'll actually call, there's a helper function at the bottom called makeId, and we'll call that. I'll explain this in a second.

Ben: [00:27:54] makeId. Okay.

Chance: [00:27:56] Yeah, it's just gonna take a bunch of different parts and string them together.

Ben: [00:28:00] Interesting.

Chance: [00:28:01] It's just a, like, small helper function to expedite the process here. We'll call makeId and we'll say the first argument is the string of "tabs". And the second argument is just, we'll call useId. And so what this is going to do is it's going to create an identifier. It's going to be a "tabs" string, dash, some number that'll be incremented as we render new Tabs components. So we've stamped this tabs component with an ID. It's just a number, right? Make sense?

Ben: [00:28:31] Yes!

Chance: [00:28:32] So if we call useId elsewhere, it's just going to give us a number, but we might want to useId for other types of components, so we want to prepend that "tabs" string to say "This is our Tabs instance."

So we've got a tabsId. And what I want to do here is I want to pass this tabsId through Context.

Ben: [00:28:46] Okay!

Chance: [00:28:46] So I would create some Context here at the top, just call it TabsContext. And I think a lot of folks use Context to do things like global state, and it's great for global state management in React applications. But it's also really great for implicit state when dealing with these sort of compound components where you're always going to use a TabList or a Tab inside of a Tabs component. Like, it doesn't make sense outside of that context. So, in the tabs context, it makes sense that we reach for Context to pass around data implicitly.

Ben: [00:29:25] I cannot believe I've never thought of using Context with composition like this!

Chance: [00:29:30] Aw, it's great, yeah.

Ben: [00:29:31] Aw, that's so good.

Chance: [00:29:33] Yeah. No, I love that. So let's go ahead and wrap our children inside of a Context Provider.

Ben: [00:29:39] Would you want to wrap this whole thing in there, or just the children? Does it matter?

Chance: [00:29:45] Well, technically yes. It doesn't really practically. But when Context changes, it's going to rerender everything underneath it, and we don't necessarily need to rerender that outer component, so we can just pass it to the one right underneath it. But honestly this, in practice, it probably won't make a real difference here.

So we're just going to render our Provider here… and then pop children up in there. And then what we're going to do is we're going to pass a value, and we'll go ahead and just create an object there, and then pass tabsId.

Ben: [00:30:19] Alright!

Chance: [00:30:20] Now we've got some Context wired up. Let's actually go in and use it to do what we were trying to do to begin with. So go back down to our Tab, and what I want to do is I want to get context from useContext. So this,

Ben: [00:30:35] context… There's probably a better name for this here.

Chance: [00:30:42] Nah, it'll work. And so you could also just destructure it if you want, since we know we're going to get an object back.

Ben: [00:30:47] Yeah.

Chance: [00:30:48] But if you wanted to handle errors, if for whatever reason there was no Context, we could potentially throw an error there, a more helpful dev error there. But for this exercise, this should be fine. We'll just use it right.

But we've got our tabsId now. So now what we can do is, we need a pointer for aria-controls to a tab — or a tab panel, rather. So what I'm going to do is say set another variable. We'll call it panelId. And I'm going to call that makeId again, which will just be our helper. So it will ensure that we have a consistent format here. Pass your tabsId. And then pass a string of "panel". And then pass a variable called index, and for now, just set index to 0. We'll come back to the index thing. Actually back up. Let me do something a little different here. Let's not worry about the index. Let's say value.

Our strategy here — So we need some way for our panel and our tab to point to one another. If you look at the API that we're building… so in Reach UI, we don't ask you to pass the value. And that's for convenience, and you really probably don't want to have to pass values all the time. But it's actually more complicated than you think to try and make these associations, since our tabs and our panels are in two separate containers. They don't live in the same container, so we don't have any way to group them naturally. The only way that we group them is by order, right?

Ben: [00:32:22] Yeah!

Chance: [00:32:22] So you could group them by checking the index in each associated list, which also is kind of a struggle to do. But what we're going to do to just simplify the process is make you pass a value prop to both your Tab and your TabPanel, and if those value props match up, then we'll associate those two. So go ahead and accept the value prop from that a props object. Does that make sense, the way I explained that?

Ben: [00:32:52] Yeah. Yes. So you're going to have, whoever's using these tab components, they're going to have to pass, for each Tab, they're going to have to pass a value, and for each TabPanel, they're going to have to pass a value, and a tab and its panel are linked if they share the same value.

Chance: [00:33:09] That's right. And we'll try and, like, talk about that a little more if we have time later, but there's some reasons for this decision, even though it's a probably less than stellar DevX for this particular component. It's going to be good enough for now, and it's not too bad, to be honest with you. I don't really mind it. And most of the time when you're rendering these things, you're going to be iterating through a list anyway, so it's probably not that much work.

But yeah, anyway, so we've got this value prop now. We're making a panel identifier here. Let's go ahead and say aria-controls is equal to that panelId. And so while you have all that code, I would basically copy that panelId from here, and go ahead and pop that in the panel so we don't forget to identify the panel.

Ben: [00:33:57] I dig it!

Chance: [00:33:59] That's the panels group, so down one more.

Ben: [00:34:01] Yes, I guess that makes sense.

Chance: [00:34:05] And so we'll need to get that tabsId. We'll need to get the tabsId from Context there as well, and then also need to get a value prop in our panel.

Perfect. So now we, since our makeId's consistent, pure, and all that stuff, we know that that ID is gonna match so we can just pass it along!

Ben: [00:34:29] Cool!

Chance: [00:34:32] And dig this, we're going to need to do this again, because once we get down to the panel, we're going to see the panel needs to have an aria-labelledby association with the button, so it's a two-way association.

Ben: [00:34:43] Oh!

Chance: [00:34:43] So let's go ahead and create a buttonId right below panelId, and just change out the string of "panel" to "button".

Ben: [00:34:50] You got it!

Chance: [00:34:52] So now we've got IDs that are associated with the unique instance of the tabs based on the unique value that is required for panels and tabs themselves, and then whether or not it's a panel or a button. So it's pretty good chance these are going to be unique, so I feel good about this. So let's go ahead and pass aria-labelledby to our panel here.

Ben: [00:35:14] And so, if you've never seen aria-labelledby, every element needs, especially when they're interactive elements like buttons, needs to have what's called an accessible name. This is how it's identified within assistive technology. This is how it's exposed to assistive technology users. So, like, for buttons, that's typically the contents, the text contents, of that button. So if you want the name of one element to be populated by the contents of another element, like some visible label that you can see on screen, you can use aria-labelledby. So this is taking the ID of our button. It's going to find whatever the text contents of this element, whatever those text contents are, and that's going to become the name of this panel. So when the user navigates to the panel, they'll hear that this is, you know, Jokes or whatever other panels that we got.

Chance: [00:36:14] Yeah, that's right. And this is really important for our panel because our panel is going to be basically like a region. So we have the… The users are going to be able to tab to that panel so that we can read the content from it, and it needs to point back to that button which serves as the label. So that's where the association works for panels specifically.

That's a good explanation, by the way, of the accessible label. I like that. We also could pass an explicit aria-label, which would override aria-labelledby if we wanted to, if we wanted to change that association for whatever reason.

Ben: [00:36:43] Okay, so for instance, maybe the panel's got a full name, right, a long name, but the tab itself is, like, a shortened version of the name.

Chance: [00:36:51] Yeah, exactly. So, in our case, actually I think I'm doing something for that, but I'm using a VisuallyHidden component instead, but you could, instead of the VisuallyHidden component trick, you could also just pass your own aria-label, which would override aria-labelledby. There's a whole algorithm for calculating the accessible name that we'll probably won't get into. But you know, if you have multiple clashes, the browser has a way to figure out what's the right one.

So yeah, I think this is good, but we need to also, let's copy that buttonId and actually assign it to our button as well. Let's not forget that.

Ben: [00:37:25] Makes sense.

Chance: [00:37:29] Alright. I think someone's mowing the lawn outside, so if it got noisy all of a sudden, I apologize.

So we've got our buttonId here on our button. Feel pretty good about that. And let's go back and take a look at that ARIA table again and see what's next. So we've got a tab panel. We did aria-labelledby. So we needed a tabindex of "0" on the active tab panel.

Ben: [00:37:58] Okay. So on the active tab panel.

Chance: [00:38:01] Yeah, so, yes, and we'll check to see if it's active, too. So let's go ahead and, same thing we did above, we'll say isActive and we'll just make it a false for now. And then yeah. So then our tabIndex is going to be "0" if isActive is true. Otherwise…

Ben: [00:38:30] "0"

Chance: [00:38:32] "-1" I think is fine.

Ben: [00:38:34] Yup.

Chance: [00:38:35] Or even undefined is probably fine because it doesn't have any ability to tab by default. So, yep, okay. So let's go ahead and change that <div> actually to our Element thing. It'll render a <div> by default. Might be good to go ahead and do that for everything everywhere we didn't already do that.

Ben: [00:38:54] Yeah. For some reason the Format Document isn't, like, picking up the, like, multiple props. Whatever.

Chance: [00:39:03] Yeah, so I think it depends on your overall line length setting in Prettier, so until it gets to a certain length, it doesn't want to do that.

Ben: [00:39:09] Let me find… Use Element here… Element's being used there. Use Element there. Also Element. That's all of them. Cool!

Chance: [00:39:35] That feels pretty good!

Ben: [00:39:36] Yeah!

Chance: [00:39:36] Cool. So, back to our tab. We have one more thing on our TabPanel, is we want to use a hidden attribute to hide our tab panel if it's not active. So, it's going to have the opposite logic of tabIndex. So go ahead and add a hidden prop. And I would say "if not active" — exactly like that — go ahead and set to true. Otherwise just set it to undefined.

Ben: [00:40:01] Oh, okay. Gotcha.

Chance: [00:40:05] That way it just goes away altogether, because I think most override stylesheets just look to see if the hidden attribute is there at all, and if it is there at all, sometimes it'll hide, so we just want to exclude it.

Ben: [00:40:16] Cool.

Chance: [00:40:17] Okay, cool. So I feel pretty good about our tab panel. Let's go back to our spec. Our guidelines, if you will. And I think I feel pretty good about all that stuff. So let's go back up, and the next thing we need to do is we need to look at this keyboard support.

Ben: [00:40:34] Actually, before we do that, do you mind if we just verify in the live project that, like, all of our attributes are coming across and everything?

Chance: [00:40:42] Yeah, absolutely. So we're not actually rendering anything right now, so this might actually be a good time to render some stuff.

Ben: [00:40:46] Oh, yeah! Let's do that!

Chance: [00:40:47] So, before we do, because this is going to break the way some stuff looks, let's talk about composition a little bit, because we've talked about it already in the context of our components themselves. But we also have to, if we're building these low-level library kind of things like these tabs that we might use in different contexts, we also might want to pass, if we're styling them for example — I'm just using Sass for styling here. So we might want to override some styles, pass our own custom styles, but we still need to bring in the styles that are baked in, right? Because the baked-in styles are also going to be somewhat important for accessibility.

So what I've done here is I've got these internal className variables in every component, just to match up with what I've put in our stylesheets. But we want to also accept classnames from external consumers of this component. So what I'm going to do is pass a className prop to each of my components.

Ben: [00:41:39] Okay. So… we've got a className here…

Chance: [00:41:43] You can do, go back to the top and we'll just do this once and copy-paste everywhere, 'cause it's going to be exactly the same for every component.

Ben: [00:41:50] Cool.

Chance: [00:41:51] So in your Element, where you're rendering your Element, just pass the className. And I'm importing this utility from a library called clsx that's just called, I've called it composeClassNames. And this is going to just take multiple classnames and compose them together so that what we ultimately render is going to be a composed version of our internal classname and whatever comes from our prop. Exactly like that. And we can copy this down all the way down. You may be familiar with this library or another library called classnames that does exactly the same thing. I think this was just slightly faster, and it has TypeScript built in, which is nice. So we'll just go ahead and make sure we implement that everywhere. So now we are composing our internal classnames. This will at least make sure that our tabs still look the same when we start rendering them.

Ben: [00:42:40] Cool.

Chance: [00:42:41] Cool. Alright, so now if we go back to our Dashboard, we can replace a lot of our markup with what we have created here. So at the top where we see className of "Tabs", just wipe out all of that and render <Tabs>.

Ben: [00:42:56] And… </Tabs>.

Chance: [00:42:59] Yup, and do the same thing for <TabList>.

Ben: [00:43:06] There's gotta be a way to just, like, replace this. At some point, I will learn…

Chance: [00:43:11] I have a plugin for that, or an extension in VS Code. I don't know what it's called. But without it, I don't think it will work by default.

Ben: [00:43:18] I will have to look.

Chance: [00:43:19] It is a shame.

Ben: [00:43:20] Yeah. Alright, and these things…

Chance: [00:43:22] Each of those will be a <Tab>, yup. And you can wipe out all of the… We're still going to lose some rendering here, 'cause we haven't wired our isActive thing, but that's okay.

Ben: [00:43:38] Alright, then this would be our <TabPanels>.

Chance: [00:43:41] <TabPanels>.

Ben: [00:43:56] While I'm doing this, how is the weather over there? It's been dreary here all day.

Chance: [00:44:01] Oh, I didn't think to ask. Where are you located?

Ben: [00:44:02] I'm in the DFW area.

Chance: [00:44:04] Oh, cool, okay. I'm in San Diego, so I feel guilty 'cause the weather's always kind of nice. At least it's all relative. People here complain about it when it's, like, even remotely gray outside, but I still love it. I've only lived here for, like, two years or so, but it's nice. I dunno, it's like 70° out, I'm assuming.

Ben: [00:44:23] Alright!

Chance: [00:44:24] I haven't checked. I barely look at the weather anymore. It's kind of tragic.

Ben: [00:44:29] Gotcha. Did you want me to nuke the classnames as well? Because these are the classnames…

Chance: [00:44:32] Yeah, we're already passing those down—

Ben: [00:44:33] Cool.

Chance: [00:44:34] —so we can knock those out.

Ben: [00:44:39] We'll do a bunch of stuff here, and I think we can also nuke the hiddens right?

Chance: [00:44:42] Yeah.

Ben: [00:44:42] 'Cause that's all handled there.

Chance: [00:44:44] Nuke the hiddens. Any of the… I think there's a data-selected on one of them we can get rid of.

Ben: [00:44:47] Yeah, there was one up, yeah.

Chance: [00:44:51] So yeah, I think we — once you have all, yeah, I think we're good.

Ben: [00:44:54] Cool!

Chance: [00:44:54] So, everything else is what's inside the tab panel, so we can keep that as is. And if you save that…

Ben: [00:45:02] Yep.

Chance: [00:45:04] …I suspect we'll not see some stuff because we need to wire up what's actually hidden or not. But it's fine, 'cause we can at least check our markup, right?

Ben: [00:45:13] Yeah! So we've got the role "tab", we've got our ID, we've got the aria-controls, aria-selected, all of that fun stuff.

And then if I dive into… I think we… Wait, no, there is no "tabpanels" role.

Chance: [00:45:30] That's right. So some of these are just presentational wrappers. So our tab panels group is not actually… There's no corresponding thing for us in the spec, but we like it because it helps us with some styling just to have that container there. It's actually the same with our actual top-level wrapper, too, you'll notice. We don't have any sort of role there.

Ben: [00:45:50] Gotcha.

Chance: [00:45:50] We get all of the information we need from the tab list and the individual tabs and individual panels.

Ben: [00:45:54] I did notice that we missed the role="tabpanel".

Chance: [00:46:00] Oh, good call.

Ben: [00:46:09] role is "tabpanel". And that should get us all the way there. And I'll just refresh, just to make sure.

Tabs__panelsrole is "tabpanel". Excellent. And if I go investigate the accessibility tree, we can see that, yeah, it's got all the stuff that we would expect it to expose to assistive technology. So it's going point to #tabs-1-button for its name. It's going to announce that it's a tab panel. Pretty cool!

Chance: [00:46:43] I love that you show that, too. I think a lot of folks miss out on some of the features we have in our devtools these days. It's very nice.

Ben: [00:46:50] Yeah! If you've never seen this before, this is the accessibility tree. So your browser does a lot of magic for you behind the scenes. And one of the things of magic it does is it creates effectively an alternate version of your DOM that's specifically in a format that assistive technologies such as screen readers can parse. And so the accessibility tree is… like, that's what that is. But Chrome, I know Firefox, and Safari I believe, also give, like, a dialog that you can actually, like, navigate the tree and see the representation of your page that screen readers actually receive as well, which is very cool.

Chance: [00:47:30] Yeah, that's great. And we noticed it's not rendered at all cause we've hidden stuff, right? So we need to fix that probably.

Ben: [00:47:36] Yeah!

Chance: [00:47:36] So yeah, let's go ahead and do that too, so we can actually… So let's figure out this isActive thing. So, back up in the top, I'm going to do a couple of things. I'm going to pass something along to my Context at the top level that we created.

Ben: [00:47:52] Okay.

Chance: [00:47:53] I'm going to pass a function— Not to the default value of the Context, but into value itself.

Ben: [00:47:59] Yes.

Chance: [00:47:59] So in that object we're passing tabsId, go ahead and pass a method here, and call it isActive. And let's make it a property, 'cause I actually want to memoize this and send it to useCallback, because if we need to use this for whatever reason, I want to make sure— Anytime I'm using or passing functions via Context, I like to useCallback to memoize them, because oftentimes you need to use those references in, like, a useEffect somewhere, and you don't want that reference changing.

Ben: [00:48:28] Yeah!

Chance: [00:48:28] You don't want to over- or pre-optimize in React too much. But when I'm using Context, I like to try and memoize pretty early for these sort of things, 'cause I almost always need to.

So let me go ahead and wrap that function in React.useCallback(). And go ahead and start with an empty dependency array for that. Perfect. And now in the implementation here, I want this to accept a value, this callback to accept a value. So what we're gonna do is we're just going to have a method for each of our tabs and tab panels to check to see if it's active, right?

Ben: [00:49:05] Okay!

Chance: [00:49:06] And so go ahead and return value === activeValue. Now we're going to create this activeValue thing next. So what I want to do here is I want to create some state now in the top of my tree with useState. And we'll go ahead and the first value of useState will be our activeValue. And then we'll get a setter, setActiveValue. And we'll say the default value of this is going to come from a defaultValue prop. So let's say the default value can potentially be passed as prop. And then the default state will be defaultValue, and if none is set, we'll just default to null. Just nullify.

Alright, so now we have an activeValue potentially. We're going to initialize it potentially. And now let's also pass setActiveValue through Context as well. We can just pass that reference directly. And of course our linter is helping us out here. We need to add that dependency on activeValue. There you go.

Cool. So, feeling pretty good. We've got these things through Context. Now we can go in, where we're setting isActive to false in each of the tabs and tab panel, we can just get that isActive method from Context. And we can actually check based on the value that we get from the value prop.

You'll have to… There's a name clash. I didn't think about that. So maybe rename it to checkIsActive or something like that. Yeah, whatever you gotta do to…

Ben: [00:50:42] Yeah, let's see.

Chance: [00:50:43] You could just say active.

Ben: [00:50:45] Yeah.

I understand parentheses!

Chance: [00:50:51] [laughs] Yeah, there you go. Cool. So, yeah, now just chuck that passed value into isActive() now.

Ben: [00:50:59] Ah, yes. Yes, 'cause we are passing that.

Chance: [00:51:03] Yup, and then do the same in your panel.

Ben: [00:51:06] Copy-paste this into panel.

I understand commas, too, I promise!

Chance: [00:51:20] Alright, there we go. Perfect, perfect, perfect. Cool, cool.

Now go back into your Dashboard and pass a defaultValue at the top level. And we'll need to actually pass values along the way, too. So this is something that you… Like I said, we could build this in a way where you didn't have to explicitly pass this, but it's a lot more involved than you might think. So let's go ahead and say, let's just say "all." We'll say "all," lowercase. And we'll say our first tab is going to have a value of "all." Second will be "pending." Third can be "fulfilled."

And then we can pass the same values to each panel, so now we have a link between our tab and our tab panel.

Alright, alright, alright! There we go.

Ben: [00:52:19] Boom!

Chance: [00:52:19] Alright, cool. Now, fingers crossed, let's go back and take a look at our application and see if we are actually rendering anything.

Ben: [00:52:28] Yes.

Chance: [00:52:30] Ooh, no, we're not. Oh, there we go! Oh, yeah, perfect! So it's still not operable, but currently we are rendering something.

So let's do one more thing. Let's go back to our code, and in Tab, let's set up an onClick handler. So we want to change the tab on click, so go ahead and create this as a constant, and I'll explain why in a second, but just create const handleClick. Or onClick, doesn't matter. Well actually, call it handleClick. I'll tell you why in a second.

Ben: [00:53:02] Yep.

Chance: [00:53:04] And now just set up an event listener, or an event handler rather, just a function. And what we're going to do here is we're just going to say "On click, set active value to this value." And then go ahead and get setActiveValue from our Context.

So we're calling setState at the top. This is gonna set state at the bottom on click. We don't have to check existing state or anything like that, 'cause it's just a string value, and if React detects the string hasn't changed, it won't rerender anyway, so this is perfectly sufficient. So just now pass a prop.

And so… We talked about composition with our classnames. What if a user also wants to pass their own event—

Ben: [00:53:52] Oh, okay!

Chance: [00:53:52] They pass an onClick prop, and now their onClick is called but ours never gets called, right? How do we deal with that? So in handleClick, one thing we could potentially do is we could check the onClick prop. If it was passed, then go ahead and call it first. However, what I'm going to ask you to do instead is where you're calling onClick, go ahead and pass handleClick as the value to a function, and that function is called composeEventHandlers.

Ben: [00:54:21] Okay. composeEventHandlers()

Chance: [00:54:27] Which we'll inspect out here in a second. Now pass — yup. Now before handleClick, I want you to pass a value of onClick that we'll get from props.

Now, take a look at composeEventHandlers real quick. Let's look at the implementation, see what's going on here. So with composeEventHandlers, what we're doing is we're taking two functions and what we're returning is a new function. So we're returning a new event handler. And in that event handler, we're going to go ahead and try to call the external, whatever's passed by the user. And if the user calls event.preventDefault() — we get that with all of our events, right? — the browser is going to set a value from that, and that property is called defaultPrevented. So we can check to see if the user is trying to prevent our default behavior.

Ben: [00:55:17] Ahh.

Chance: [00:55:17] And if they have, we never even bother calling our internal event handler, because they've tried to prevent that, right? So we can bake our custom functionality of our tabs into this whole idea of default behavior.

Ben: [00:55:29] Mm!

Chance: [00:55:29] Which makes sense, 'cause we're kind of creating our own fake DOM element, right?

Ben: [00:55:33] Yeah!

Chance: [00:55:34] So we can wrap all of our event handlers. And this is a really great way to compose event handlers, I think, to check and make sure to give users the opportunity to opt in or out of what we're doing internally, if they need to. So if they try to click a tab that, for whatever reason, is intended to be blocked and we want to show a dialog, right? Instead of activating that tab, we would show a dialog first to tell them something hopefully useful so they can go back and, you know, do something before they're able to actually activate that tab. So yeah, that's what we're doing here under the hood. So we're just composing these event handlers and unifying them into one.

Ben: [00:56:09] Got it!

Chance: [00:56:10] So you can go back into Tabs now. Now save that and let's go check and see if our clicks work.

Ben: [00:56:16] Yeah. I'm just gonna refresh, just in case, and then… Look at that! Oh, I love it.

Chance: [00:56:24] Yeahhh! So we have working tabs, at least for mouse users, right? Feels pretty good.

Ben: [00:56:32] Yeah!

Chance: [00:56:32] But, but, but… Well, here's the cool thing is if you tab to a tab, you can still activate it with your keyboard, right? You can still tab to it and — well, right now you can't, because we have a tabindex of "0" on inactive tabs, but we'll fix that in a sec. But if you were to somehow land focus on a button and use your space bar or your Enter key, then you'd be able to activate that, 'cause we're using a <button>, right? So, free browser behaviors.

But we still need some work for keyboard users, because you can't actually hit these inactive tabs. And like I mentioned earlier, we wanted to do that with our arrow keys. So let's go back to our Tab component. We want to set up a… Well, actually, this will be easier. Let's set up a handleFocus event handler as well. And it can be identical to the handleClick, I believe. 'Cause on focus, we want to automatically activate these tabs.

Ben: [00:57:30] Okay, so can I just do…?

Chance: [00:57:33] You just copy, yep.

Ben: [00:57:34] Yeah.

Chance: [00:57:36] Copy of all of our implementation so far, and just say onClick is onFocus. First argument of that will be onFocus, and we'll get that from props.

Ben: [00:57:45] Oh, I see. Yes.

Chance: [00:57:46] Yep.

Ben: [00:57:51] Alright!

Chance: [00:57:52] And then our second argument to that will be handleFocus, and then we'll just copy of that handleClick and make it handleFocus. Or you could just say handleClick, it doesn't really matter. But we'll just do two separate things, 'cause, you know, maybe down the road we'll want to actually do something different there.

Ben: [00:58:12] You got it!

Chance: [00:58:13] Cool. So we've got — Yeah, that works for me. Go ahead and… I see that we're running up against the clock here. I don't want to, like, keep everyone too long, 'cause we still have a little bit of work to do for keyboard users. But let's go ahead and get focus set up first.

So right now, if you focus an inactive tab for whatever reason, you should set the active value. But right now we can't focus the inactive tab with our keyboard, right? So another thing we want to do is… I know on focus, I'm going to set the active tab, but if a tab becomes active because the user is navigating, presumably via keyboard, which we haven't wired up yet, we want to then assign focus to that tab, if we haven't already, which I know is just a lot of ifs and elses in that statement that are inferred, so we'll try and explain this a little bit. But let's go ahead and create an effect with useEffect.

Ben: [00:59:09] Alright!

Chance: [00:59:18] And right before this, before your effect, I want to go ahead and create a ref and call this ref mounted, because I don't want to do what we're about to do on the initial render, because what we're gonna do is focus management, and it's going to be really weird if the user refreshes their browser and doesn't do anything and focus just goes zap right onto a tab, right? We don't want that. So we're going to track to make sure that we don't do anything on the initial render, but check to say if (!mounted.current).

Ben: [00:59:50] Yeah, I always forget about that .current!

Chance: [00:59:53] No worries. So if this is not set, let's go ahead and set it, mounted.current = true. And then early return. And we'll never touch it again. So this way, we know that the first time we run this effect when we initially render, we're not going to bother with it. Right, we're just skipping that render.

Ben: [01:00:09] This is the total opposite of autofocus!

Chance: [01:00:13] Yeah, kind of, yeah, absolutely. So now what we want to do is, in our dependency array, go ahead and add isActive. So if our isActive property changes and it's not the initial render, it means that the user's navigating somehow, right? And we wanna respond to that by focusing. So what I want to do here is I want to create another if statement. I don't want to double focus, so if it's already focused, because we've created this handleFocus thing that sets the active property. So say if isActive and…

Ben: [01:00:48] Do we want active, not isActive? 'Cause we changed the…

Chance: [01:00:52] Oh, yeah, you're right, you're right. I forgot.

Ben: [01:00:54] Yeah!

Chance: [01:00:54] I forgot. Good call.

So active, and then say "and if document.activeElement is not equal to the ref that we're rendering," but hold on. We've got this forwarded ref situation. I talked about forwardRef, but we also need a ref internally. Because what if the user doesn't pass a ref, right?

Ben: [01:01:15] Okay!

Chance: [01:01:15] They might not pass a ref — they don't always need one — so how do we check this DOM node? Well, we're going to have to create an internal ref. So I'm going to go back up right above where you created mounted and create another variable that's also calling useRef, and call it ownRef. So we're going to create a ref for us to use internally.

Ben: [01:01:33] Alright.

Chance: [01:01:34] And now, when you're checking your activeElement, check to see if it's not equal to ownRef.current.

Now, inside this block, if we're not already focused on this particular DOM node, we want to focus it. So call ownRef.current.

Ben: [01:01:53] Like I said, always forget that current!

Chance: [01:01:55] That's okay, it happens. Yeah, so just focus on that. But we haven't actually set ownRef to anything. So now we have a problem. We have two refs. What on earth do we do with two refs? How do you have two refs?

Ben: [01:02:08] Yeah.

Chance: [01:02:09] If I say it enough, do you think people would just guess? I doubt it. So I'll try and explain it. So what do we do with two refs? Well, how do we deal with this in Reach UI, and how do a lot of libraries deal with this problem? Well, we've composed a lot of other things. Why can't we just compose our refs and try to assign all of these values to the same underlying value? So that's exactly what we're going to do.

Right under this effect, you can define a new variable and call it just ref. And call this hook that we've been imported at the top called useComposedRefs. Now you can check the implementation if you want, but inside of here, we're just going to pass multiple refs, and what we're going to return is a callback ref. So if you aren't familiar with callback refs, you can return a callback function, instead of a ref value, that can also be assigned to a DOM node. And we can do things as a result of assigning that value to this callback. So we can call back after that ref has been assigned.

And so what we're going to do is we're just going to compose all of these things into a singular callback, and then we're going to try and do this assignRef trick, where we try and assign each ref that we've passed. So if it's a forwarded ref, we can pass it the way you would pass a forwarded ref. If it's a ref object internally, we're going to create that. So all of these refs are gonna ultimately point to that same exact value.

Ben: [01:03:30] Interesting!

Chance: [01:03:32] So we're just composing these down into a singular callback function, very similar to how we did our event handler!

Ben: [01:03:40] Alright!

Chance: [01:03:42] Now we have this, but we actually need to pass our refs. So pass in ownRef and pass in forwardedRef. So now, we can assign our ref. Oh no, he had it.

Ben: [01:03:56] Well, I was going to move it up.

Chance: [01:03:57] Okay, that's fine.

Ben: [01:03:58] Keep everything collected.

Okay. So assign ownRef to…

Chance: [01:04:04] No. Yeah, go down into where we're rendering the Element and we want to assign the Element's ref to that ref variable.

Ben: [01:04:10] Ah. okay.

Chance: [01:04:11] Instead of forwardedRef.

Ben: [01:04:13] Very cool. Alright.

Chance: [01:04:14] So now we have, we're doing both, we're magically composing our refs, right? We're doubling up our efforts. The user can pass a ref and do their own imperative stuff. We can use a ref internally and do our own imperative stuff. Everyone's happy. Even though it is kind of a little wacky. That's how we got to do it until we have something built in to do it better for us.

Alright! So now, what we should be able to do is focus these things and, in response to that focus, set the active value. But of course, we still have some pretty gnarly work ahead of us to set up keyboard navigation. We're almost done, everyone, bear with us.

So in our Tab, we also want a handleKeyDown event handler.

Ben: [01:04:57] Alright.

Chance: [01:04:58] And we need to respond to a keydown event. Go ahead and set that. We're gonna also compose this the same way we do all the others.

Ben: [01:05:08] Okay!

Chance: [01:05:09] So go ahead and take an onKeyDown prop from our parent, or from our component.

Ben: [01:05:16] I apologize for all of the ordering. I know you had it lovely and alphabetized.

Chance: [01:05:21] You missed a capital D in "Down."

Ben: [01:05:24] Oh, okay. Got it.

Chance: [01:05:26] There you go. Cool.

Ben: [01:05:27] Yeah. I'll be consistent, I suppose.

[snarkily] I suppose, if I have to!

Chance: [01:05:32] [snarkily] I suppose!

[laughs] Yeah, consistency's alright. It's overrated.

Ben: [01:05:37] Heh. Consistency is sometimes overrated, but not all the time.

Chance: [01:05:44] As in everything in life, it's just nuance. But I'm not a stickler for it.

Ben: [01:05:51] There we go.

Chance: [01:05:52] Alright, so we've got some functions. Cool, so let's go ahead and set up a quick switch here, and let's switch on a few things, 'cause we're gonna… I'm not gonna make you go back and reference the chart again, 'cause I know we're running low on time. So let's just knock this out. Let's go and look at…

So when focus is on a tab, we need to respond to keydown events depending on which direction we're trying to navigate. What we're trying to wire up here is navigation.

Ben: [01:06:16] Mhmm.

Chance: [01:06:16] 'Cause we can't tab to those inactive panels. We have to get to them by our other keyboard commands. So switch on event.key. And in response to this, we want to do some things. So go ahead and make a case for "ArrowDown," a case for "ArrowUp" — I'm sorry, not "ArrowDown." "ArrowLeft" or "ArrowRight," since these are horizontal tabs.

Ben: [01:06:35] Camelcase…?

Chance: [01:06:37] No, capital A.

Ben: [01:06:40] I gotcha.

Chance: [01:06:41] Yeah. And then go ahead and set up a case for "ArrowRight" now. There is an ARIA prop or attribute called aria-orientation that you could put on the TabList component. By default, it assumes that we're rendering horizontal tabs. But in the event that you want to do vertical tabs, you would use aria-orientation on the tab list, and then we would also change these to "ArrowUp" and "ArrowDown" to respond to that, so that when a screen reader user hears that announcement it tells them what the visual orientation of our tabs is so that they can adjust their keyboard expectations.

Ben: [01:07:16] Oh, interesting!

Chance: [01:07:17] So now your keyboard behavior would always align to the visual representation, and your screen reader users would know that, right?

Ben: [01:07:23] I always assumed it would be just more like a radio button implementation, where radios, you can use, like, left or up to go backwards, or you could use down or right to go forwards. It's a thing that they give you that, like, layout option there, the orientation.

Chance: [01:07:41] I'm strictly following WCAG on this, where they only tell you to worry about left and right in the guidance, and then they tell you to swap orientations if you have that prop. But I don't necessarily think it would be terrible to just go ahead and add up and down here if you wanted to. But we'll stick to the guidelines for now.

Ben: [01:08:02] Alright!

Chance: [01:08:02] Also add a case for "Home" and "End," because we want to be able to navigate quickly to the first or last panel as well.

Ben: [01:08:08] Ooh, okay! Also, is the first letter capitalized?

Chance: [01:08:12] Yep.

Ben: [01:08:13] Cool.

Chance: [01:08:13] Looks good. And then go ahead and for default, go ahead and just return.

Alright. Let's go back to our table real quick just to make sure I got all these. I think I did. I think that's all we need for tabs.

There's Delete. Tab's gonna work no matter what, so we don't have to do. Deletes, we're not going to worry about cause we don't have any editable tabs. That's only if tabs are editable and…

Ben: [01:08:42] Interesting.

Chance: [01:08:43] …you can remove them. So we're not gonna build that. So we're good for now.

Alright, so let's go back to our code. And what I want to do is on the case of "ArrowLeft," I want to set active value. I don't know what I'm passing in yet, so just go ahead and return after that.

Ben: [01:09:03] Oh, return after…

Chance: [01:09:05] Yeah, just return. Don't pass anything yet. Return, and then copy that exact same thing down on each line, 'cause after each case, we are going to set our active value and then return.

But we need to figure out what to pass. So we need to get the index here. I'm not going to go into a long diatribe on finding indexes in child lists in React, because we'd be here all day. But take a look at this — I sent you a link to this documentation for one of our tools in Reach called the descendants hook.

Ben: [01:09:32] Yeah!

Chance: [01:09:32] If you go and take a look at that — and you can post the link for that for users — it explains the problem in great detail. Basically the problem is we need to figure out where our tab exists in context of its parent component. And since we're enabling a lot of composition patterns, these compound components, we can't simply have an array of things. We don't know until render time what this item is and where it lives in a list, right? So we've got this tool that we built in Reach to deal with this, and it handles lots and lots of messy edge cases. So I would take a link to this and share it for your viewers here to read this in their own time.

But for now we have a pretty quick and dirty implementation. It's going to skip a lot of the edge cases implemented down below. So, at the top level in Tabs, go ahead and pass another Context Provider.

Ben: [01:10:24] In Tabs, okay.

Mhmm.

We're going to have another Context Provider.

Chance: [01:10:28] Yep. Go ahead and pass it right after your TabsContext Provider. It doesn't really matter.

Ben: [01:10:37] Alright.

Chance: [01:10:38] And it's called DescendantProvider. We created it down below.

Ben: [01:10:42] Okay, got it. Cool.

Chance: [01:10:43] No, no, just DescendantProvider.

Ben: [01:10:46] Descendant… Oh.

Chance: [01:10:47] Yeah, I've already created the Provider as a separate component, I believe. I think I did. I hope I did.

Ben: [01:10:53] Let's find out!

Chance: [01:10:54] Yeah. Is it defined? Yeah, it is! Perfect!

Ben: [01:10:56] Looks like it is! Cool.

Chance: [01:10:57] Yeah, I thought I did that for you. So what this is going to do is it's going to start basically keeping count of all of our children, but we have to register our tabs as we create them. So now go down into your Tab component.

Ben: [01:11:10] Yes.

Chance: [01:11:11] And we are going to register this tab as a descendant. That way, we have some way to keep track of it. So go ahead and call useDescendants.

Ben: [01:11:24] Yeah.

Chance: [01:11:24] Yeah, you do want to get a value from this.

Ben: [01:11:26] Okay!

Chance: [01:11:26] So go ahead and get a value, and it will be a destructured object.

Ben: [01:11:29] Is it "Descendants" plural?

Chance: [01:11:34] Yep. We always have issues spelling "descendants" internally because the actual English word "descendants" is spelled differently from the punk band Descendents. And I used to be a big fan of the Descendents, the punk band, and so I've never got the spelling right in the actual English word.

So, what we're going to do here is we're going to, from this object, we're going to get a method called getIndex. We're gonna get another method called register and another method called keys. Oh, sorry, and then a method called deregister as well.

Alright, now go ahead and call useEffect, another useEffect.

Ben: [01:12:16] Alright.

Chance: [01:12:17] And what we're gonna do is on render, when we render this tab, we will register it as a descendant, so we have an index in our keys. And so in the effect, go ahead and call register(). And then pass the value. And then return a cleanup function that is going to deregister, so if this thing leaves the tree for whatever reason. And you need to pass a new method, so return…

Ben: [01:12:47] Oh, right, yes.

Chance: [01:12:48] …a new function that calls deregister(). There you go. Perfect. So on cleanup, when we unmount this component, we get rid of all that. And go ahead and put the value as your dependency.

Ben: [01:12:59] Is it value that…? Yeah.

Chance: [01:13:01] Yeah, it's gonna still complain at you, but just leave it for now. We don't need to worry about the others. The others should be stable anyway. I think I stabilized them, but just didn't want to go down a debugging nightmare.

Ben: [01:13:13] Sure.

Chance: [01:13:13] Alright, so, cool. So we've registered this as a thing, and now we need to figure out our index. So we're going to do a little bit of math in our handleKeyDown thing. So I'm going to handleKeyDown, and go in and create a variable called index.

I don't think I've ever, like, talked someone through coding quite this much.

Ben: [01:13:32] Ha! You're doing great!

Chance: [01:13:33] It's more challenging than you would think.

You're doing great!

Ben: [01:13:35] So, like, the goal right now is we have, like, these values that are just, like, the strings, and we're trying to, like, map them back into their index so that we can decide basically go…

Chance: [01:13:45] "What's next?"

Ben: [01:13:46] index - 1, or index + 1.

Chance: [01:13:47] Yeah, exactly. Exactly. So where are we now in the context of our list? If I navigate to the right, what's next? If I navigate to the left, what's last? All this song and dance is ultimately to get us to that. And so, call getIndex() and pass the value. So we're going to get our index from our descendants list here.

Calculate the last index with a new variable we're gonna call lastIndex. And go ahead and call keys.length - 1. It's just the last index in that array. And then a new variable called nextIndex. And we're going to call this clamp() function. That's just a mathematical thing that clamps between two values. And go ahead and say index + 1. Our minimum value will be 0, because that's the smallest index we can have. And our max value can be a lastIndex. There you go, perfect. And then do another for previousIndex… and then same thing, clamp(), but we're going to just do index - 1.

Ben: [01:14:50] And 0, lastIndex.

Chance: [01:14:52] Yep, there you go.

Alright, so now we've got our indexes for each item in our array here. Let's go and on the "ArrowLeft" case, what we're going to do is set the value — Not previousIndex, but the value of our keys array.

Ben: [01:15:07] Oh!

Chance: [01:15:07] So we've got this keys thing coming from our DescendantsContext as well. So I'd say keys, and get the previousIndex. There you go.

Ben: [01:15:15] Got it!

Chance: [01:15:15] And then for "ArrowLeft," nextIndex. For "Home," just index 0.

Ben: [01:15:22] And then keys[lastIndex].

Chance: [01:15:24] There you go.

Ben: [01:15:25] Cool!

Chance: [01:15:25] That's the money right there. So now, if all this works, which I'm not even sure if I got to test this at this point, so hopefully, fingers crossed!

Ben: [01:15:33] Oh, man.

Chance: [01:15:34] Drum roll! If all this works, when you land focus on your active tab, and you arrow to the right or left, you should be able to navigate your tabs.

Ben: [01:15:44] Yes!

Chance: [01:15:45] Oh my [claps] gosh! Money!

Ben: [01:15:46] Woo!

Chance: [01:15:46] I love it when it works in the first try!

Ben: [01:15:48] Oh man, that feels good.

Chance: [01:15:49] Yeah!

Ben: [01:15:49] That feels so good.

Chance: [01:15:50] That's what I'm talking about. Look at that! Keyboard navigation! I love it!

Ben: [01:15:58] Oh, that's so good. That's so good. I'm going to real quickly turn on VoiceOver so we can get us a bit of screen reader experience with this, too, just 'cause I think that would be a good thing to do before we—

Chance: [01:16:12] Absolutely.

Ben: [01:16:12] —before we start spinning down!

Chance: [01:16:14] Can we get some, like, explosions in the chat, or some sort of emojis that explain how good it feels when you save some code and it just works on that first try? 'Cause there's nothing better.

Ben: [01:16:26] Yeah, emotes in the chat, please.

Chance: [01:16:28] I want the chat to go bonkers with that—

Ben: [01:16:30] Go haywire.

Chance: [01:16:31] —for my own ego here.

Ben: [01:16:34] Alright.

Chance: [01:16:34] That never happens. I just, I'm always having problems, so…

Ben: [01:16:42] Yeah!

VoiceOver always seems to take — Whenever I'm streaming, VoiceOver is like, "I'm going to wait, like, a minute before starting up."

Chance: [01:16:49] We'll get there.

Ben: [01:16:50] Whereas every other time, it's like all too quick to pop up . Come on, Voice— Ooh. Ooh. I froze!

Chance: [01:16:59] Come on, VoiceOver, do your thing. Nope!

Ben: [01:17:03] My whole machine has frozen.

Chance: [01:17:05] Oh, no!

Ben: [01:17:05] Fantastic! I don't know if you can even still see me moving, but you can still hear me. I can hear you.

Chance: [01:17:11] Yeah, I can hear you and see you.

Ben: [01:17:13] Amazing! Amazing. I'm not even going to be able to — Ah, there we go. We're alright.

VoiceOver: [01:17:18] VoiceOver off.

Ben: [01:17:20] Oh, VoiceOver off just now.

Chance: [01:17:21] You got it. VoiceOver. [mimes explosion]

Ben: [01:17:23] Alright. VoiceOver… Yes!

VoiceOver: [01:17:26] VoiceOver on System Preferences.

Ben: [01:17:27] There we go.

Chance: [01:17:28] I think one thing we didn't do that you might want to do is pass an aria-label to your actual tab list.

Ben: [01:17:34] Oh, okay!

Chance: [01:17:35] Because, remember we talked about labeling. So I can't remember if we did that, so it might affect your VoiceOver experience here.

Ben: [01:17:41] Yeah.

VoiceOver: [01:17:42] Chrome, React app, Google Chrome. Some Antics, window (1). StoreDashboard — Fulfilled Orders, selected, tab, 3 of 3, main. Pending Orders, selected, tab, 2 of 3. All Orders. Link, Jokes list, 2 items. Chrome has new window.

Chance: [01:17:55] So if you tab to the right, you know that you're at the last tab, right?

Ben: [01:17:58] Yeah!

VoiceOver: [01:17:58] All Orders. Pending Orders. Fulfilled Orders. Fulfilled Orders and one more item, tabpanel. You are currently on a tabpanel. To interact with items—

Ben: [01:18:08] Nice! Oh, that's such a good, good experience there, I think.

Chance: [01:18:12] Love it. So yeah, I feel really good about our tabs here. This is a much simpler version of what we have in Reach UI, so if you're really interested in how we sort of handle, like, a more broad set of use cases, Reach UI's a codebase that you can look through. And it's written very much like what we just wrote. Very similar in a lot of ways. So there's some abstractions here and there, but for the most part, it's very similar. So feel free to dive deep, to get some of that nuance down and try and figure this out.

And if you're interested in these general patterns, this is what I'm building a workshop around in a few weeks. So back to that workshop I mentioned earlier, if you really want to learn this stuff in depth, go deep on, like, the composition and all of the things that we've talked about it at a much deeper level for the whole day, I'll be doing this for a whole day, and I would love for you to join me. Buy tickets.

Ben: [01:19:02] I will absolutely share the link, but first I have to—

VoiceOver: [01:19:04] System Preferences, Accessibility, window, Accessibility features.

Ben: [01:19:09] I always feel like—

VoiceOver: [01:19:10] VoiceOver, selected.

Ben: [01:19:11] VoiceOver, off, please! There we go. Thank you. VoiceOver is, like, the worst pair for a stream, 'cause it's always like, "I want to like talk and then I don't want to turn off in a quiet way," so I'm going to have to interrupt someone.

But yes, please, please go sign up for Chance's workshop here. This is fantastic. If you want to learn how to do composition like this, Chance is your guy!

Yeah. So Chance, I'm going to go ahead and start wrapping up, but this has been fantastic. I loved one comment from Michael in the chat which is, "Can you guys cover every component in Reach UI now? A two-month series," and honestly, I wouldn't turn that down.

Chance: [01:19:58] Have a spinoff stream called the Reach UI Breakdown.

Ben: [01:20:04] There we go! I'd be so here for it.

Y'all, go follow Chance on Twitter. And while you're at it, while you're following people on Twitter, go follow me. Next week, we have Lucia Cerchie coming on. She's going to be showing us how to get started with — Ooh! We got some thunder here! We're going to be showing you how to get started with using automated accessibility testing, using tools like Axe and Lighthouse, and integrating those into your workflows. So it's going to be tons of fun. I'm super excited for that.

Y'all thank you for joining us this stream, and I will see you next week. Bye!

Chance: [01:20:38] Ben, thank you so much. Thanks, everyone.

Ben: [01:20:40] Thank you, Chance.