mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:01:05 +08:00
Merge pull request #18135 from evont/fix-avoid-undefined-args
Controls: Fix undefined args handling
This commit is contained in:
commit
973d335984
@ -64,3 +64,23 @@ DifferentSet.args = {
|
||||
foo: 'bar',
|
||||
bar: 2,
|
||||
};
|
||||
|
||||
export const TestUndefinedArgs = Template.bind({});
|
||||
TestUndefinedArgs.args = {
|
||||
first: 'Bob',
|
||||
last: 'Miller',
|
||||
foo: 'bar',
|
||||
};
|
||||
TestUndefinedArgs.argTypes = {
|
||||
first: {
|
||||
control: { type: 'select' },
|
||||
options: ['Bob', 'Alice'],
|
||||
},
|
||||
last: {
|
||||
control: { type: 'select' },
|
||||
options: ['Miller', 'Meyer'],
|
||||
},
|
||||
foo: {
|
||||
control: { type: 'text' },
|
||||
},
|
||||
};
|
||||
|
@ -226,6 +226,11 @@ describe('validateOptions', () => {
|
||||
expect(validateOptions({ a: 1 }, { a: { options: [1, 2] } })).toStrictEqual({ a: 1 });
|
||||
});
|
||||
|
||||
// https://github.com/storybookjs/storybook/issues/17063
|
||||
it('does not set args to `undefined` if they are unset and there are options', () => {
|
||||
expect(validateOptions({}, { a: { options: [2, 3] } })).toStrictEqual({});
|
||||
});
|
||||
|
||||
it('includes arg if value is undefined', () => {
|
||||
expect(validateOptions({ a: undefined }, { a: { options: [1, 2] } })).toStrictEqual({
|
||||
a: undefined,
|
||||
|
@ -73,21 +73,25 @@ export const combineArgs = (value: any, update: any): Args => {
|
||||
|
||||
export const validateOptions = (args: Args, argTypes: ArgTypes): Args => {
|
||||
return Object.entries(argTypes).reduce((acc, [key, { options }]) => {
|
||||
if (!options) {
|
||||
// Don't set args that are not defined in `args` (they can be undefined in there)
|
||||
// see https://github.com/storybookjs/storybook/issues/15630 and
|
||||
// https://github.com/storybookjs/storybook/issues/17063
|
||||
function allowArg() {
|
||||
if (key in args) {
|
||||
acc[key] = args[key];
|
||||
}
|
||||
return acc;
|
||||
}
|
||||
|
||||
if (!options) return allowArg();
|
||||
|
||||
if (!Array.isArray(options)) {
|
||||
once.error(dedent`
|
||||
Invalid argType: '${key}.options' should be an array.
|
||||
|
||||
More info: https://storybook.js.org/docs/react/api/argtypes
|
||||
`);
|
||||
acc[key] = args[key];
|
||||
return acc;
|
||||
return allowArg();
|
||||
}
|
||||
|
||||
if (options.some((opt) => opt && ['object', 'function'].includes(typeof opt))) {
|
||||
@ -96,8 +100,7 @@ export const validateOptions = (args: Args, argTypes: ArgTypes): Args => {
|
||||
|
||||
More info: https://storybook.js.org/docs/react/writing-stories/args#mapping-to-complex-arg-values
|
||||
`);
|
||||
acc[key] = args[key];
|
||||
return acc;
|
||||
return allowArg();
|
||||
}
|
||||
|
||||
const isArray = Array.isArray(args[key]);
|
||||
@ -105,8 +108,7 @@ export const validateOptions = (args: Args, argTypes: ArgTypes): Args => {
|
||||
const isValidArray = isArray && invalidIndex === -1;
|
||||
|
||||
if (args[key] === undefined || options.includes(args[key]) || isValidArray) {
|
||||
acc[key] = args[key];
|
||||
return acc;
|
||||
return allowArg();
|
||||
}
|
||||
|
||||
const field = isArray ? `${key}[${invalidIndex}]` : key;
|
||||
|
Loading…
x
Reference in New Issue
Block a user