React is a flexible system, and there are many options for the architecture of components. When implementing new HIG React components it is required to create components which follow these architecture guidelines.
Weave React supports React 18.0.0 and above.
We require stateless components when possible. All data needed to render a component should be passed in properties passed in to the component at runtime. Components that take user input, like Input and Dropdown should provide callback properties that notify clients when the input has changed. This common pattern for React components makes them easier to write, maintain, test and can have better performance. For more information see:
- React Functional or Class Components: Everything you need to know
- React Stateless Functional Components: Nine Wins You Might Have Overlooked
- Stateful vs Stateless React Components
- Uncontrolled Components
Although most current components in Weave React are class-based, we prefer functional components for future contributions. However, even the class-based components are stateless, since they don't declare a state member. Some older legacy code, like Slider is a stateful component, but that is the exception. The Input component is a great example of a stateless, functional component that handles user input.
Of course, some functionality does require state to render correctly, such as implementing support for behaviors like rollover highlighting. For cases like this, it is best to attach state to a components with reusable stateful components. The HoverBehavior class is a good example of this. It is used to attach rollover highlighting to components in a reusable way. The ControlBehavior class adds Focus, Hover and Pressed behaviors to a component in a reusable way.
The Behavior classes mentioned above use Render Props to pass state from the behavior class to the components they are attached to. This passes the hover state to the stateless rendering methods of the attached components. The components themselves use these properties to render the state in a way that is appropriate for that component. For an example of the use of render props when attaching standard control behaviors, see the Input component.
All Weave React components are required to support theme data. If new theme data is required for a component, adding that data should be coordinated with Bryan Young on the Weave team.
To implement theme support, components are required to use the ThemeContext class.
Every Weave React component should support passing in custom style overrides as a prop. The "stylesheet" prop is a function that returns a JSON style object. TextArea has a good example of a stylesheet function. HIG components use emotion as their css JavaScript library: .