An open API service indexing awesome lists of open source software.

https://github.com/airbnb/react-component-variations


https://github.com/airbnb/react-component-variations

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

          

| :exclamation: Deprecation Notice |
|:-|
|We want to express our sincere gratitude for your support and contributions to this open source project. As we are no longer using this technology internally, we have come to the decision to archive this repository. While we won't be providing further updates or support, the existing code and resources will remain accessible for your reference. We encourage anyone interested to fork the repository and continue the project's legacy independently. Thank you for being a part of this journey and for your patience and understanding.|

# react-component-variations

⚠️ **Warning: this project is still very alpha**

This project is:
* A format called "variations" for specifying React component **_examples_** and providing **_documentation_** for them.
* Tools for finding, validating, and iterating over variations.

A variation looks like:

```jsx
// ButtonVariationProvider.jsx

import React from 'react';
import Button from '../components/Button';

export default function ButtonVariationProvider({ action }) {
return {
component: Button,

usage: 'Buttons are things you click on!',

variations: [
{
title: 'Default',
render: () => action('onClick')}>click me!,
},
{
title: 'Disabled',
render: () => Nope
}
],
};
}
```

We also have "consumers" that use the variation provider to perform tasks. Example consumers are:
* Rendering variations in [Storybook](https://storybook.js.org/)
* Running in tests with [Enzyme](https://github.com/airbnb/react-component-variations-consumer-enzyme)
* Taking screenshots with [Happo](https://happo.io/)
* Checking for accessibility violations with [Axe](https://www.deque.com/axe/)

## Contribution Guidelines:

1. Fork this Repo
2. Install dependencies by running `npm install` in the root of the project directory.
3. To run lint and test run locally, in the project root run `npm test`. To run tests only, `npm run tests-only`.

Make sure new helpers and traversal functions have related tests.