This commit is contained in:
Gert Hengeveld 2021-10-26 13:09:36 +02:00
parent b36d6ac473
commit 05284d996e
2 changed files with 10 additions and 4 deletions

View File

@ -164,8 +164,7 @@ export const init: ModuleFn = ({ store, navigate, state, provider, fullAPI, ...r
return acc;
}, queryParams),
};
const equal = deepEqual(customQueryParams, update);
if (!equal) {
if (!deepEqual(customQueryParams, update)) {
store.setState({ customQueryParams: update });
fullAPI.emit(UPDATE_QUERY_PARAMS, update);
}

View File

@ -1,6 +1,6 @@
import qs from 'qs';
import { SET_CURRENT_STORY, GLOBALS_UPDATED } from '@storybook/core-events';
import { SET_CURRENT_STORY, GLOBALS_UPDATED, UPDATE_QUERY_PARAMS } from '@storybook/core-events';
import { init as initURL } from '../modules/url';
@ -147,11 +147,18 @@ describe('queryParams', () => {
},
getState: () => state,
};
const { api } = initURL({ state: { location: { search: '' } }, navigate: jest.fn(), store });
const fullAPI = { emit: jest.fn() };
const { api } = initURL({
state: { location: { search: '' } },
navigate: jest.fn(),
store,
fullAPI,
});
api.setQueryParams({ foo: 'bar' });
expect(api.getQueryParam('foo')).toEqual('bar');
expect(fullAPI.emit).toHaveBeenCalledWith(UPDATE_QUERY_PARAMS, { foo: 'bar' });
});
});