You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
There appears to be inconsistency in the search events when customers attempt to find a product. Below is the user journey outlining this issue discovered by the analytic department:
Search -> enter a search text -> populate the list of items -> click on a single item -> move to PDP
The events generated by the UI do not represent this journey.
a. ✅ {"name":"select_item","params":{"items":[{"item_id":"19","item_name":"ADIDAS HALFSHELLS NEW YORK","item_brand":"Test Brand name","item_variant":"7","index":0,"price":49.99,"discount":0,"currency":"USD","item_variant_name":"ADIDAS HALFSHELLS NEW YORK","product_reference_id":"MKLC_SKU_1695388120746"}]}}
The following events are also being sent after along the item selected
b. ❌ {"name":"search_select_item","params":{"url":"http://localhost:3000/","items":[{"item_id":"19","item_variant":"7","index":0}]}}
c.❌ {"name":"search","params":{"search_term":"ADIDAS HALFSHELLS NEW YORK"}}
d.❌ {"name":"intelligent_search_query","params":{"locale":"en-US","term":"ADIDAS HALFSHELLS NEW YORK","url":"http://localhost:3000/","logicalOperator":"and","isTermMisspelled":false,"totalCount":1}}
Additionally, when the user lands on PDP there's no event view_item fired
Representation of the events:
The text was updated successfully, but these errors were encountered:
Describe the bug
There appears to be inconsistency in the search events when customers attempt to find a product. Below is the user journey outlining this issue discovered by the analytic department:
Search -> enter a search text -> populate the list of items -> click on a single item -> move to PDP
The events generated by the UI do not represent this journey.
This is the event received from the previous flow
{"name":"intelligent_search_query","params":{"locale":"en-US","term":"adi","url":"http://localhost:3000/","logicalOperator":"or","isTermMisspelled":true,"totalCount":0}}
{"name":"intelligent_search_query","params":{"locale":"en-US","term":"adida","url":"http://localhost:3000/","logicalOperator":"and","isTermMisspelled":false,"totalCount":3}}
a. ✅
{"name":"select_item","params":{"items":[{"item_id":"19","item_name":"ADIDAS HALFSHELLS NEW YORK","item_brand":"Test Brand name","item_variant":"7","index":0,"price":49.99,"discount":0,"currency":"USD","item_variant_name":"ADIDAS HALFSHELLS NEW YORK","product_reference_id":"MKLC_SKU_1695388120746"}]}}
The following events are also being sent after along the item selected
b. ❌
{"name":"search_select_item","params":{"url":"http://localhost:3000/","items":[{"item_id":"19","item_variant":"7","index":0}]}}
c.❌
{"name":"search","params":{"search_term":"ADIDAS HALFSHELLS NEW YORK"}}
d.❌
{"name":"intelligent_search_query","params":{"locale":"en-US","term":"ADIDAS HALFSHELLS NEW YORK","url":"http://localhost:3000/","logicalOperator":"and","isTermMisspelled":false,"totalCount":1}}
Additionally, when the user lands on PDP there's no event
view_item
firedRepresentation of the events:
The text was updated successfully, but these errors were encountered: