mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 03:01:07 +08:00
Fix bad merge: initialization of global args per #10085
This commit is contained in:
parent
a7a932c99b
commit
3ade3a3d17
@ -9,12 +9,11 @@ export interface SubAPI {
|
||||
updateGlobalArgs: (newGlobalArgs: Args) => void;
|
||||
}
|
||||
|
||||
const initGlobalArgsApi = ({ store }: Module) => {
|
||||
let fullApi: API;
|
||||
const initGlobalArgsApi = ({ store, fullAPI }: Module) => {
|
||||
const updateGlobalArgs = (newGlobalArgs: Args) => {
|
||||
if (!fullApi) throw new Error('Cannot set global args until api has been initialized');
|
||||
if (!fullAPI) throw new Error('Cannot set global args until api has been initialized');
|
||||
|
||||
fullApi.emit(UPDATE_GLOBAL_ARGS, newGlobalArgs);
|
||||
fullAPI.emit(UPDATE_GLOBAL_ARGS, newGlobalArgs);
|
||||
};
|
||||
|
||||
const api: SubAPI = {
|
||||
@ -26,9 +25,8 @@ const initGlobalArgsApi = ({ store }: Module) => {
|
||||
globalArgs: {},
|
||||
};
|
||||
|
||||
const init = ({ api: inputApi }: { api: API }) => {
|
||||
fullApi = inputApi;
|
||||
fullApi.on(GLOBAL_ARGS_UPDATED, (globalArgs: Args) => store.setState({ globalArgs }));
|
||||
const init = () => {
|
||||
fullAPI.on(GLOBAL_ARGS_UPDATED, (globalArgs: Args) => store.setState({ globalArgs }));
|
||||
};
|
||||
|
||||
return {
|
||||
|
Loading…
x
Reference in New Issue
Block a user