Fix bad merge: initialization of global args per #10085

This commit is contained in:
Michael Shilman 2020-03-11 18:14:16 +08:00
parent a7a932c99b
commit 3ade3a3d17

View File

@ -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 {