polish Color.stories

This commit is contained in:
Jeppe Reinhold 2022-10-28 21:18:13 +02:00
parent e29b04e7c6
commit 446d96eda4
2 changed files with 86 additions and 49 deletions

View File

@ -19,8 +19,8 @@ const meta = {
return (
<>
<BooleanControl
name="boolean"
{...args}
name="boolean"
onChange={(newValue) => {
updateArgs({ value: newValue });
onChange?.(newValue);

View File

@ -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 (
<>
<ColorControl
{...args}
onChange={(newValue) => {
updateArgs({ value: newValue });
onChange?.(newValue);
}}
name="color"
/>
<pre>{JSON.stringify(value) || 'undefined'}</pre>
</>
);
},
} as Meta<typeof ColorControl>;
export const Basic = {
args: {
value: '#ff00ff',
},
};
const Template = (
initialValue?: string,
presetColors?: Array<string | { color: string; title?: string }>
) => {
const [value, setValue] = useState(initialValue);
return (
<>
<ColorControl
name="Color"
value={value}
onChange={(newVal) => setValue(newVal)}
presetColors={presetColors}
startOpen
/>
<pre>{JSON.stringify(value) || 'undefined'}</pre>
</>
);
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,
},
};