April 29, 2020
I had such a great time attending the Women of React conference. What a blast! This is what I learned from it.
There are three easy ways to make components more accessible:
Semantic HTML
They provide meaning to your content and components beyond their visual representations. For example, use appropriate 'button' instead of 'div' or 'span'.
ARIA attributes
ARIA attributes are HTML attributes that help define/enhance the semantics of our components to make them more accessible. The best ARIA is no ARIA at all. They override all the semantic meaning for the elements they’re applied to. It can be applied for roles, states and properties.
Keyboard navigation
How can users interact with our components using only a keyboard? Not everyone uses a mouse to navigate on the web. Each component needs to have keyboard support.
For example :
How to address accessibility to coworkers or PO?
What is the best approach to refactor an existing design system that is in use?
Don’t try to do it all at once. It takes time, especially retroactively. Resolve little errors, and ultimately it will build up into full accessibility support.
When every product team has its own design, the solution is to create a Design System.
It’s important to go see each team and to ask them:
The most importants components of a Design System:
What are some good softwares for automation?
Axe, Lighthouse.
What are the learning keys?
When you have built a website too fast, and you realize that you have 3 styles of button, 2 different colors for links, and a different padding on all pages, what do you do? You assess the problem: inconsistent design, need for refactoring and need for responsive styling.
The solution is to use the Styled-systems by Brent Jackson. They work as a layer of abstraction for CSS in JS libraries.
Advantages:
How to build metaphors?
“Metaphor is just a conduit for the transportation of ideas between minds.” -Tim Rohrer
Instead of using console.log(), use React Dev Tools!
TDD is not the test, the code coverage or the library. It is a process that drives how to write code. Use Jest in VSC.
Eve live coded an App to distribute weight between her backpack and her husband’s when they go hiking.
1. Types of technical interviews
2. What is React?
They already know React is declarative, composable, component-based and reusable. Her best definition is: “It’s a JSX transpiler, a library that lets you build reusable code that manages state, and has the user provided properties.”
3. State VS Props
4. Prop drilling
It is the process of explicitly passing values throughout the view of your application, to pass props down your React DOM tree.
5. React Context API
Context provides a way to pass data through the component tree without having to pass props down manually at every level.
React provides 'createContext' for consumer and provider, and 'useContext' for hook.
6. Lifecycle Hooks or React hooks
7. Making API calls
useState() and useEffect().
8. Async/Await
async before a function means one simple thing: a function always returns a promise. await makes JS wait until that promise settles and returns its result.
9. Set
The Set object lets you store unique values of any type, whether primitive values or object references.
10. Must Know