Full documentation available at: https://wl-orbiter-website.netlify.app/
Adding a new component package involve a few extra steps:
- Understand the components guidelines
- Write storybook stories
- Write tests
- Update the documentation
- Include the component in the bundle
As mentionned in the contributing guide, Storybook is use to develop, document and test a component.
To develop and document, we leverage the CSF and MDX features of Storybook.
To test, we rely on a third party called Chromatic that fully integrate with Storybook to provide visual testing capabilities.
Development stories are written for 2 purposes:
- For the developper to test a component use case in a isolated story during the development lifecycle.
- For the design team to try the component behaviors.
Documentation stories are written... well for documentation purpose!
To define a story once for development and documentation a story must be written with CSF in an *.stories.mdx
file. The name of the file should match the component name.
A story must:
- Be located in the
Components
top level section of the Storybook navigation menu. - The second level segment must be the capitalized name of the component.
Here's an exemple for the button component:
// Button.stories.mdx
<Meta title="Components/Button" />
A component stories must provide:
- A story named default that render the component default state.
The stories must be located in a docs
folder next to the src
folder of your component. Storybook is configured to load the following component stories: packages/components/src/*/docs/**.stories.mdx
.
/packages
/components
/buttons
/docs
Button.stories.mdx
/src
Before reading the following sections, please read our introduction to Orbiter testing practices.
Specific stories for Chromatic are written to validate the specifications of a component with automated visual tests. The specifications stories are validated every night with Chromatic for visual regression issues.
Storybook is a fantastic tool for visual testing because a story is essentially a test specification. When it does make sense, multiple specifications can be bundled together in a story to save on Chromatic snapshots (which are not cheap!).
A specifications story must:
- Be located in the
Chromatic
top level section of the Storybook navigation menu. - The second level segment must be the capitalized name of the component (same as the development stories).
The stories must be located in a tests/chromatic
folder next to the src
folder of your component. Storybook is configured to load the following tests specifications: packages/components/src/*/tests/chromatic/**.stories.tsx
.
/packages
/components
/buttons
/src
/tests
/chromatic
Button.stories.tsx
Every component should have a test for "zoom" and "styling". Have a look at the existing tests to learn more.
For more information about the Storybook automated visual tests workflow, read the following blog post and the following introduction to visual testing.
Since visual testing tools like Chromatic can't help much for interaction testing we rely on Jest](https://jestjs.io/) and React Testing Library for those. Similar to visual testing, interaction tests are validated every night.
NOTE: You should always prefer a visual test with Chromatic over an interaction test with Jest and React Testing Library. Chromatic tests are much quicker to write and easier to maintain.
Interaction tests must:
- Be written in a
*.test.[jsx|tsx]
file. - Be located in a
tests/jest
folder next to thesrc
folder of your component.
/packages
/components
/buttons
/src
/tests
/jest
Button.test.jsx
Here's an example:
// Button.test.jsx
test("call onChange when the button is selected", () => {
....
});
Usually, interaction tests are split into 4 distinct regions: Behaviors, Aria, Api and Refs.
Every Orbiter custom components must share a consistent API and a similar design. Please read carefully the following guidelines before you develop a new component or update an existing one.
All components should:
- Use Orbiter's tokens
- Support Orbiter's color schemes
- Implement Orbiter's style props
- Support Orbiter's responsive styles
All components should be developed as functional components.
All components should leverage React hooks.
An Orbiter component shouldn't use any CSS in JS properties.
All styling should be done with native CSS and use our foundation CSS variables when possible
A component should always be develop to offer a controlled and auto-controlled usage.
A controlled component gives a lot of flexibility to the consumer and is well fit for a lot of use cases but also involve additional code. We believe a component should be flexible but also painless to use. That's why a component should also offer an auto-controlled mode for basic use cases who don't requires controlling the props.
A component shouldn't stop the propagation of an event. Instead, other parts of the code should determine whether or not it should handle the event.
For more information, read the following blog post.
Every component should provide the initiating event as the first argument when calling a user event handler.
const handleChange = event => {
if (!isNil(onValueChange)) {
onValueChange(event, event.target.value);
}
});
Before calling the user event handler always execute all the component logic related to the event.
const handleChange = event => {
const newValue = event.target.value;
// Call setValue before calling onValueChange.
setValue(newValue);
if (!isNil(onValueChange)) {
onValueChange(event, newValue);
}
});
Unhandled props should always be spread on the root element of the component. If it's not practical to spread the props on the root element, consider adding an additional prop for the root element props (like wrapperProps
) and spread those props on the root element.
function MyComponent({ className, children ...rest }) {
return (
<Div className={className} {...rest}>
{children}
</Div>
);
}
All "slotable" components should accept an optionnal slot property.
A component should always accept an as
prop and apply it to the root element of the component. The as
prop allow the consumer to specify the type of the element to render. A default value should always be provided.
The following usage should be possible for all components:
<Button as="link" href="#>Click me!</Button>
This is not true anymore, component public interface doesn't accept
as
prop anymore. Instead, when needed, theas()
function should be used. That being said, since our internals are still dependend on theas
prop, every components should still accept the prop internally.
A component should always accept a ref
prop and apply it to the root element of the component.
If the component have a wrapper element, like the text input component, the ref could instead be rendered on the input element. When the ref is not rendered on the root element, add a
wrapperProps
prop which accept a ref for the wrapper element.
Every component and functions should provide static typings with TypeScript.
Event handler props should be prefix by on
and be in the present tense.
Ex:
- Prefer
onChange
toonChanged
- Prefer
onItemClick
toonItemClicked
A boolean prop shouldn't be prefix with is
.
Ex:
- Prefer
open
toisOpen
- Prefer
disabled
toisDisabled
When there is no possible ambiguities, prefer a simpler prop name.
For example, prefer icon
to inputIcon
.
Auto-controlled components will usually expose initial values props. Those props should be prefix with default
.
Ex:
defaultOpen
defaultStartDate
defaultValues
All components should follow WAI-ARIA practices when applicable.
Copyright © 2023, GSoft inc. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/gsoft-inc/gsoft-license/blob/master/LICENSE.