File tree 2 files changed +36
-8
lines changed
2 files changed +36
-8
lines changed Original file line number Diff line number Diff line change @@ -342,6 +342,37 @@ See documentation: https://www.algolia.com/doc/guides/building-search-ui/going-f
342
342
expect ( getUserToken ( ) ) . toEqual ( 'token-from-queue-before-init' ) ;
343
343
} ) ;
344
344
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
+
345
376
describe ( 'umd' , ( ) => {
346
377
it ( 'applies userToken from queue if exists' , ( ) => {
347
378
const {
Original file line number Diff line number Diff line change @@ -105,15 +105,12 @@ export const createInsightsMiddleware: CreateInsightsMiddleware = (props) => {
105
105
106
106
const setUserTokenToSearch = ( userToken ?: string ) => {
107
107
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 ] ) ;
116
109
}
110
+ configureUserToken = createWidget ( {
111
+ searchParameters : { userToken } ,
112
+ } ) ;
113
+ instantSearchInstance . addWidgets ( [ configureUserToken ] ) ;
117
114
} ;
118
115
119
116
const anonymousUserToken = getInsightsAnonymousUserTokenInternal ( ) ;
You can’t perform that action at this time.
0 commit comments