
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@orbit-ui/transition-components
Advanced tools
Full documentation available at: https://wl-orbiter-website.netlify.app/
Adding a new component package involve a few extra steps:
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:
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:
Components top level section of the Storybook navigation menu.Here's an exemple for the button component:
// Button.stories.mdx
<Meta title="Components/Button" />
A component stories must provide:
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:
Chromatic top level section of the Storybook navigation menu.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:
*.test.[jsx|tsx] file.tests/jest folder next to the src 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:
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
asprop anymore. Instead, when needed, theas()function should be used. That being said, since our internals are still dependend on theasprop, 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
wrapperPropsprop 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:
onChange to onChangedonItemClick to onItemClickedA boolean prop shouldn't be prefix with is.
Ex:
open to isOpendisabled to isDisabledWhen 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:
defaultOpendefaultStartDatedefaultValuesAll 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.
FAQs
Orbiter components
We found that @orbit-ui/transition-components demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.