Skip to content

Commit 51a6f2b

Browse files
author
Eunjae Lee
authoredSep 7, 2021
fix(insights): handle multiple setUserToken call before search.start() (#4897)
* fix(insights): apply the last userToken before search.start() * types: make renderState optional * fix WIP * fix: renderState always exists. It's just its child might not exist. * chore: remove comment
1 parent 7d99ab9 commit 51a6f2b

File tree

2 files changed

+36
-8
lines changed

2 files changed

+36
-8
lines changed
 

‎src/middlewares/__tests__/createInsightsMiddleware.ts

+31
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,37 @@ See documentation: https://www.algolia.com/doc/guides/building-search-ui/going-f
342342
expect(getUserToken()).toEqual('token-from-queue-before-init');
343343
});
344344

345+
it('handles multiple setUserToken calls before search.start()', () => {
346+
const { insightsClient } = createInsights();
347+
const indexName = 'my-index';
348+
const instantSearchInstance = instantsearch({
349+
searchClient: createSearchClient({
350+
// @ts-expect-error only available in search client v4
351+
transporter: {
352+
headers: {
353+
'x-algolia-application-id': 'myAppId',
354+
'x-algolia-api-key': 'myApiKey',
355+
},
356+
},
357+
}),
358+
indexName,
359+
});
360+
361+
const middleware = createInsightsMiddleware({
362+
insightsClient,
363+
});
364+
instantSearchInstance.use(middleware);
365+
366+
insightsClient('setUserToken', 'abc');
367+
insightsClient('setUserToken', 'def');
368+
369+
instantSearchInstance.start();
370+
371+
const helper = instantSearchInstance.mainIndex.getHelper();
372+
// @ts-expect-error `userToken` exists in only search client v4
373+
expect(helper.state.userToken).toEqual('def');
374+
});
375+
345376
describe('umd', () => {
346377
it('applies userToken from queue if exists', () => {
347378
const {

‎src/middlewares/createInsightsMiddleware.ts

+5-8
Original file line numberDiff line numberDiff line change
@@ -105,15 +105,12 @@ export const createInsightsMiddleware: CreateInsightsMiddleware = (props) => {
105105

106106
const setUserTokenToSearch = (userToken?: string) => {
107107
if (configureUserToken) {
108-
instantSearchInstance.renderState[
109-
instantSearchInstance.indexName
110-
].configure!.refine({ userToken });
111-
} else {
112-
configureUserToken = createWidget({
113-
searchParameters: { userToken },
114-
});
115-
instantSearchInstance.addWidgets([configureUserToken]);
108+
instantSearchInstance.removeWidgets([configureUserToken]);
116109
}
110+
configureUserToken = createWidget({
111+
searchParameters: { userToken },
112+
});
113+
instantSearchInstance.addWidgets([configureUserToken]);
117114
};
118115

119116
const anonymousUserToken = getInsightsAnonymousUserTokenInternal();

0 commit comments

Comments
 (0)
Please sign in to comment.