From 140721c03eea113263bc8b7085b1fe21822336df Mon Sep 17 00:00:00 2001 From: Michael Shilman Date: Mon, 15 Mar 2021 17:29:18 +0800 Subject: [PATCH] Document controls sorting --- docs/essentials/controls.md | 70 ++++++++++++------- .../component-story-sort-controls.js.mdx | 11 +++ .../component-story-sort-controls.mdx.mdx | 12 ++++ .../src/blocks/ArgsTable/ArgsTable.tsx | 2 +- 4 files changed, 67 insertions(+), 28 deletions(-) create mode 100644 docs/snippets/common/component-story-sort-controls.js.mdx create mode 100644 docs/snippets/common/component-story-sort-controls.mdx.mdx diff --git a/docs/essentials/controls.md b/docs/essentials/controls.md index 0bbc296af07..8e5b50a6cf4 100644 --- a/docs/essentials/controls.md +++ b/docs/essentials/controls.md @@ -61,7 +61,6 @@ By default, Storybook will render a free text input for the `variant` arg: ![Essential addon Controls using a string](addon-controls-args-variant-string.png) - This works as long as you type a valid string into the auto-generated text control, but it's not the best UI for our scenario, given that the component only accepts `primary` or `secondary` as variants. Let’s replace it with Storybook’s radio component. We can specify which controls get used by declaring a custom [argType](../api/argtypes.md) for the `variant` property. ArgTypes encode basic metadata for args, such as name, description, defaultValue for an arg. These get automatically filled in by Storybook Docs. @@ -87,13 +86,13 @@ This replaces the input with a radio group for a more intuitive experience. For a few types, Controls will automatically infer them by using [regex](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/RegExp). You can change the matchers for a regex that suits you better. -| Data type | Default regex | Description | -| :---------: | :-----------------------: | :-------------------------------------------------------: | -| **color** | `/(background\|color)$/i` | Will display a color picker UI for the args that match it | -| **date** | `/Date$/` | Will display a date picker UI for the args that match it | - +| Data type | Default regex | Description | +| :-------: | :-----------------------: | :-------------------------------------------------------: | +| **color** | `/(background\|color)$/i` | Will display a color picker UI for the args that match it | +| **date** | `/Date$/` | Will display a date picker UI for the args that match it | To do so, use the `matchers` property in `controls` parameter: + + + + +## Sorting controls + +By default, controls are sorted alphabetically by arg name (`alpha`). This can be configured to sort alphabetically required args first (`requiredFirst`), or to not sort at all and use whatever order the args data is processed in (`none`). + +Consider the following snippet to force required args first: + + + + diff --git a/docs/snippets/common/component-story-sort-controls.js.mdx b/docs/snippets/common/component-story-sort-controls.js.mdx new file mode 100644 index 00000000000..6a816951b85 --- /dev/null +++ b/docs/snippets/common/component-story-sort-controls.js.mdx @@ -0,0 +1,11 @@ +```js +// YourComponent.stories.js | YourComponent.stories.ts + +import { YourComponent } from './your-component' + +export default { + title:'My Story', + component: YourComponent, + parameters: { controls: { sort: 'requiredFirst' } }, +}; +``` \ No newline at end of file diff --git a/docs/snippets/common/component-story-sort-controls.mdx.mdx b/docs/snippets/common/component-story-sort-controls.mdx.mdx new file mode 100644 index 00000000000..a5aca9d8750 --- /dev/null +++ b/docs/snippets/common/component-story-sort-controls.mdx.mdx @@ -0,0 +1,12 @@ +```md + + +import { Meta } from '@storybook/addon-docs/blocks'; +import { YourComponent } from './your-component' + + +``` \ No newline at end of file diff --git a/lib/components/src/blocks/ArgsTable/ArgsTable.tsx b/lib/components/src/blocks/ArgsTable/ArgsTable.tsx index 030c723c001..3648ebd5841 100644 --- a/lib/components/src/blocks/ArgsTable/ArgsTable.tsx +++ b/lib/components/src/blocks/ArgsTable/ArgsTable.tsx @@ -346,7 +346,7 @@ export const ArgsTable: FC = (props) => { compact, inAddonPanel, initialExpandedArgs, - sort = 'requiredFirst', + sort = 'alpha', } = props as ArgsTableRowProps; const groups = groupRows(