diff --git a/code/ui/blocks/src/controls/Boolean.stories.tsx b/code/ui/blocks/src/controls/Boolean.stories.tsx index 7cdfffccf64..b7c3daeb60a 100644 --- a/code/ui/blocks/src/controls/Boolean.stories.tsx +++ b/code/ui/blocks/src/controls/Boolean.stories.tsx @@ -19,8 +19,8 @@ const meta = { return ( <> { updateArgs({ value: newValue }); onChange?.(newValue); diff --git a/code/ui/blocks/src/controls/Color.stories.tsx b/code/ui/blocks/src/controls/Color.stories.tsx index 92f70254a00..6e9ef14cd4f 100644 --- a/code/ui/blocks/src/controls/Color.stories.tsx +++ b/code/ui/blocks/src/controls/Color.stories.tsx @@ -1,57 +1,94 @@ -import React, { useState } from 'react'; +import type { Meta } from '@storybook/react'; +import React from 'react'; +import { useArgs } from '@storybook/addons'; import { ColorControl } from './Color'; export default { title: 'Controls/Color', - component: ColorControl, + // not using component here because we want to define argTypes ourselves + tags: ['docsPage'], + argTypes: { + value: { + description: 'Currently picked color', + control: { + type: 'color', + }, + }, + startOpen: { + description: + 'Whether the color picker should be open by default. Requires remount to see effect.', + defaultValue: false, + + control: { + type: 'boolean', + }, + }, + }, + render: (args) => { + const [, updateArgs] = useArgs(); + const { value, onChange } = args; + + return ( + <> + { + updateArgs({ value: newValue }); + onChange?.(newValue); + }} + name="color" + /> +
{JSON.stringify(value) || 'undefined'}
+ + ); + }, +} as Meta; + +export const Basic = { + args: { + value: '#ff00ff', + }, }; -const Template = ( - initialValue?: string, - presetColors?: Array -) => { - const [value, setValue] = useState(initialValue); - return ( - <> - setValue(newVal)} - presetColors={presetColors} - startOpen - /> -
{JSON.stringify(value) || 'undefined'}
- - ); +export const Undefined = { + args: { + value: undefined, + }, }; -export const Basic = () => Template('#ff0'); +export const WithPresetColors = { + args: { + value: '#00ffff', + presetColors: [ + { color: '#ff4785', title: 'Coral' }, + { color: '#1EA7FD', title: 'Ocean' }, + { color: 'rgb(252, 82, 31)', title: 'Orange' }, + { color: 'RGBA(255, 174, 0, 0.5)', title: 'Gold' }, + { color: 'hsl(101, 52%, 49%)', title: 'Green' }, + { color: 'HSLA(179,65%,53%,0.5)', title: 'Seafoam' }, + { color: '#6F2CAC', title: 'Purple' }, + { color: '#2A0481', title: 'Ultraviolet' }, + { color: 'black' }, + { color: '#333', title: 'Darkest' }, + { color: '#444', title: 'Darker' }, + { color: '#666', title: 'Dark' }, + { color: '#999', title: 'Mediumdark' }, + { color: '#ddd', title: 'Medium' }, + { color: '#EEE', title: 'Mediumlight' }, + { color: '#F3F3F3', title: 'Light' }, + { color: '#F8F8F8', title: 'Lighter' }, + { color: '#FFFFFF', title: 'Lightest' }, + '#fe4a49', + '#FED766', + 'rgba(0, 159, 183, 1)', + 'HSLA(240,11%,91%,0.5)', + 'slategray', + ], + }, +}; -export const Undefined = () => Template(undefined); - -export const WithPresetColors = () => - Template('tan', [ - { color: '#ff4785', title: 'Coral' }, - { color: '#1EA7FD', title: 'Ocean' }, - { color: 'rgb(252, 82, 31)', title: 'Orange' }, - { color: 'RGBA(255, 174, 0, 0.5)', title: 'Gold' }, - { color: 'hsl(101, 52%, 49%)', title: 'Green' }, - { color: 'HSLA(179,65%,53%,0.5)', title: 'Seafoam' }, - { color: '#6F2CAC', title: 'Purple' }, - { color: '#2A0481', title: 'Ultraviolet' }, - { color: 'black' }, - { color: '#333', title: 'Darkest' }, - { color: '#444', title: 'Darker' }, - { color: '#666', title: 'Dark' }, - { color: '#999', title: 'Mediumdark' }, - { color: '#ddd', title: 'Medium' }, - { color: '#EEE', title: 'Mediumlight' }, - { color: '#F3F3F3', title: 'Light' }, - { color: '#F8F8F8', title: 'Lighter' }, - { color: '#FFFFFF', title: 'Lightest' }, - '#fe4a49', - '#FED766', - 'rgba(0, 159, 183, 1)', - 'HSLA(240,11%,91%,0.5)', - 'slategray', - ]); +export const StartOpen = { + args: { + startOpen: true, + }, +};