fix(controls): handle unsupported values for color matcher

This commit is contained in:
Yann Braga 2021-04-23 19:05:43 +02:00
parent d4c1269784
commit e19c589409
2 changed files with 73 additions and 1 deletions

View File

@ -1,4 +1,5 @@
import { StoryContext } from '@storybook/addons';
import { logger } from '@storybook/client-logger';
import { inferControls } from './inferControls';
const getStoryContext = (customParams = {}): StoryContext => ({
@ -20,6 +21,68 @@ const getStoryContext = (customParams = {}): StoryContext => ({
});
describe('inferControls', () => {
describe('with custom matchers', () => {
let warnSpy: jest.SpyInstance;
beforeEach(() => {
warnSpy = jest.spyOn(logger, 'warn');
warnSpy.mockImplementation(() => {});
});
afterEach(() => {
warnSpy.mockRestore();
});
it('should return color type when matching color', () => {
// passing a string, should return control type color
const inferredControls = inferControls(
getStoryContext({
argTypes: {
background: {
type: {
name: 'string',
value: 'red',
},
name: 'background',
},
},
controls: {
matchers: {
color: /background/,
},
},
})
);
expect(inferredControls.background.control.type).toEqual('color');
});
it('should return inferred type when matches color but arg is not a string', () => {
// passing an object which is unsupported, should infer the type to object
const inferredControls = inferControls(
getStoryContext({
argTypes: {
background: {
type: {
name: 'object',
value: {
rgb: [255, 255, 0],
},
},
name: 'background',
},
},
controls: {
matchers: {
color: /background/,
},
},
})
);
expect(warnSpy).toHaveBeenCalled();
expect(inferredControls.background.control.type).toEqual('object');
});
});
it('should return argTypes as is when no exclude or include is passed', () => {
const controls = inferControls(getStoryContext());
expect(Object.keys(controls)).toEqual(['label', 'labelName', 'borderWidth']);

View File

@ -1,5 +1,7 @@
import mapValues from 'lodash/mapValues';
import { ArgType } from '@storybook/addons';
import { logger } from '@storybook/client-logger';
import { SBEnumType, ArgTypesEnhancer } from './types';
import { combineParameters } from './parameters';
import { filterArgTypes } from './filterArgTypes';
@ -17,7 +19,14 @@ const inferControl = (argType: ArgType, name: string, matchers: ControlsMatchers
// args that end with background or color e.g. iconColor
if (matchers.color && matchers.color.test(name)) {
return { control: { type: 'color' } };
const controlType = typeof argType.type.value;
if (controlType === 'string') {
return { control: { type: 'color' } };
}
logger.warn(
`Addon controls: Control of type color only supports string, received "${controlType}" instead`
);
}
// args that end with date e.g. purchaseDate