mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:41:25 +08:00
FIX bugfix: normalizeation bugs
This commit is contained in:
parent
90421c0509
commit
cad9d537a9
@ -2,27 +2,27 @@ import { GetContextNodes, GetMergedSettings } from '../../@types';
|
||||
|
||||
/**
|
||||
* @private
|
||||
* Merges the global (options) and the story (parameters) from a pair of setting;
|
||||
* Merges the top-level (global options) and the story-level (parameters) from a pair of setting;
|
||||
*
|
||||
* @return the normalized definition for a contextual environment (-> node).
|
||||
*/
|
||||
export const _getMergedSettings: GetMergedSettings = (
|
||||
{ icon, title, components = [], params = [], options = {} },
|
||||
{ params: storyParams = [], options: storyOptions = {}, ...story }
|
||||
) => ({
|
||||
nodeId: title || story.title || '',
|
||||
icon: icon || story.icon || '',
|
||||
title: title || story.title || '',
|
||||
components,
|
||||
params: !!(params.length || storyParams.length)
|
||||
? params.concat(storyParams)
|
||||
: [{ name: '', props: {} }],
|
||||
export const _getMergedSettings: GetMergedSettings = (topLevel, storyLevel) => ({
|
||||
nodeId: topLevel.title || storyLevel.title || '',
|
||||
icon: topLevel.icon || storyLevel.icon || '',
|
||||
title: topLevel.title || storyLevel.title || '',
|
||||
components: topLevel.components || storyLevel.components || [],
|
||||
params:
|
||||
topLevel.params || storyLevel.params
|
||||
? Array()
|
||||
.concat(topLevel.params, storyLevel.params)
|
||||
.filter(Boolean)
|
||||
: [{ name: '', props: {} }],
|
||||
options: {
|
||||
deep: false,
|
||||
disable: false,
|
||||
cancelable: false,
|
||||
...options,
|
||||
...storyOptions,
|
||||
...topLevel.options,
|
||||
...storyLevel.options,
|
||||
},
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user