mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:51:05 +08:00
Merge pull request #14314 from yngvebn/args-enum-type-mapping
Core: Fix `enum` args parsing from URL
This commit is contained in:
commit
2f26a1674b
@ -4,18 +4,53 @@ import { combineArgs, mapArgsToTypes, validateOptions } from './args';
|
||||
const stringType = { name: 'string' };
|
||||
const numberType = { name: 'number' };
|
||||
const booleanType = { name: 'boolean' };
|
||||
const enumType = { name: 'enum' };
|
||||
const functionType = { name: 'function' };
|
||||
const numArrayType = { name: 'array', value: numberType };
|
||||
const boolObjectType = { name: 'object', value: { bool: booleanType } };
|
||||
|
||||
jest.mock('@storybook/client-logger');
|
||||
|
||||
enum ArgsMapTestEnumWithoutInitializer {
|
||||
EnumValue,
|
||||
EnumValue2,
|
||||
}
|
||||
|
||||
enum ArgsMapTestEnumWithStringInitializer {
|
||||
EnumValue = 'EnumValue',
|
||||
}
|
||||
|
||||
enum ArgsMapTestEnumWithNumericInitializer {
|
||||
EnumValue = 4,
|
||||
}
|
||||
|
||||
describe('mapArgsToTypes', () => {
|
||||
it('maps strings', () => {
|
||||
expect(mapArgsToTypes({ a: 'str' }, { a: { type: stringType } })).toEqual({ a: 'str' });
|
||||
expect(mapArgsToTypes({ a: 42 }, { a: { type: stringType } })).toEqual({ a: '42' });
|
||||
});
|
||||
|
||||
it('maps enums', () => {
|
||||
expect(
|
||||
mapArgsToTypes({ a: ArgsMapTestEnumWithoutInitializer.EnumValue }, { a: { type: enumType } })
|
||||
).toEqual({ a: 0 });
|
||||
expect(
|
||||
mapArgsToTypes({ a: ArgsMapTestEnumWithoutInitializer.EnumValue2 }, { a: { type: enumType } })
|
||||
).toEqual({ a: 1 });
|
||||
expect(
|
||||
mapArgsToTypes(
|
||||
{ a: ArgsMapTestEnumWithStringInitializer.EnumValue },
|
||||
{ a: { type: enumType } }
|
||||
)
|
||||
).toEqual({ a: 'EnumValue' });
|
||||
expect(
|
||||
mapArgsToTypes(
|
||||
{ a: ArgsMapTestEnumWithNumericInitializer.EnumValue },
|
||||
{ a: { type: enumType } }
|
||||
)
|
||||
).toEqual({ a: 4 });
|
||||
});
|
||||
|
||||
it('maps numbers', () => {
|
||||
expect(mapArgsToTypes({ a: '42' }, { a: { type: numberType } })).toEqual({ a: 42 });
|
||||
expect(mapArgsToTypes({ a: 'a' }, { a: { type: numberType } })).toEqual({ a: NaN });
|
||||
|
@ -12,6 +12,8 @@ const map = (arg: unknown, type: ValueType): any => {
|
||||
switch (type.name) {
|
||||
case 'string':
|
||||
return String(arg);
|
||||
case 'enum':
|
||||
return arg;
|
||||
case 'number':
|
||||
return Number(arg);
|
||||
case 'boolean':
|
||||
|
Loading…
x
Reference in New Issue
Block a user