![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@adobe/magento-storefront-event-collector
Advanced tools
Event Collectors for Adobe Commerce storefronts
This package listens for and handles events published by the Adobe Commerce Events SDK to the adobeDataLayeracdl. It runs as a side effect and is meant to be a convenience for users who want to send event data to Adobe Commerce.
The collector can be used as a hosted script, or bundled in a JavaScript application. The script version is hosted on jsdelivr, and the bundled version is hosted on npm.
To load the Collector as a script, use the following snippet.
<script src="https://cdn.jsdelivr.net/npm/@adobe/commerce-events-collectors/dist/index.js"></script>
To install the script as a dependency, run this command.
npm install @adobe/commerce-events-collectors
After loading the collector script, or importing the package as shown below, there is nothing else that needs to be done.
import "@adobe/commerce-events-collectors";
The collector listens for the following events.
pageView
addToCart
productPageView
shoppingCartView
initiateCheckout
openCart
placeOrder
recsItemAddToCartClick
recsItemClick
recsRequestSent
recsResponseReceived
recsUnitRender
recsUnitView
removeFromCart
searchCategoryClick
searchProductClick
searchRequestSent
searchResponseReceived
searchResultsView
categoryResultsView
searchSuggestionClick
createAccount
editAccount
signIn
signOut
custom
B2B events
createRequisitionList
deleteRequisitionList
addToRequisitionList
removeFromRequisitionList
The handlers forward events to two edges:
Adobe Commerce Data Services (maintained by Adobe Engineering and used to power merchant performance dashboards)
Required contexts:
StorefrontInstance
Events not forwarded to Adobe Commerce:
createAccount
editAccount
openCart
removeFromCart
signIn
signOut
custom
B2B events:
createRequisitionList
deleteRequisitionList
addToRequisitionList
removeFromRequisitionList
Adobe Experience Platform (AEP) (requires a subscription and additional merchant setup; data can be used by merchants inside the Adobe Experience Platform for detailed analytics, targeted merchandising, real time customer data profiles, and more)
Required contexts:
AEP
EventForwarding.aep: true
Events not forwarded to AEP Edge:
recsItemAddToCartClick
recsItemClick
recsRequestSent
searchResponseReceived
searchCategoryClick
searchProductClick
searchResultsView
categoryResultsView
searchSuggestionClick
Events are sent to Adobe Commerce Data Services by default. To turn collection off collection, set EventForwarding.commerce: false
.
Events are not set to AEP Edge unless explicitly configured (EventForwarding.aep: true
);
Custom events are supported for the Adobe Experience Platform only. Custom data will not be forwarded to Adobe Commerce dashboards and metrics trackers.
For any custom
event, the collector:
identityMap
with ECID
as a primary identityemail
in identityMap
as a secondary identity if personalEmail.address
is set in the eventxdm
object before forwarding to the EdgeExample:
Custom event published through MSE SDK:
mse.publish.custom({
commerce: {
saveForLaters: {
value: 1,
},
},
});
In AEP Edge:
{
xdm: {
identityMap: {
ECID: [
{
id: 'ecid1234',
primary: true
}
],
email: [
{
id: "runs@safari.ke",
primary: false
}
]
},
commerce: {
saveForLaters: {
value: 1
}
}
}
}
note Using custom events may affect OOTB Adobe Analytics reports.
Attribute overrides for standard events are supported for the Experience Platform only. Custom data will not be forwarded to Commerce dashboards and metrics trackers.
For any event with a set customContext
, the collector overrides joins fields set in the relevant contexts with fields in customContext
. The use case for overrides is when a developer wants to reuse and extend contexts set by other parts of the page in already supporte events.
Note when overriding custom events, event forwarding to AEP should be turned off for that event type in order to avoid-double counting.
Example:
Product view with Adobe Commerce overrides published though MSE SDK:
Product context (set by another script on the page):
{
}
mse.publish.productPageView({
productListItems: [
{
productCategories: [
{
categoryID: "cat_15",
categoryName: "summer pants",
categoryPath: "pants/mens/summer",
},
],
},
],
});
In AEP Edge:
{
xdm: {
eventType: 'commerce.productViews',
identityMap: {
ECID: [
{
id: 'ecid1234',
primary: true,
}
]
},
commerce: {
productViews: {
value : 1,
}
},
productListItems: [{
SKU: "1234",
name: "leora summer pants",
productCategories: [{
categoryID: "cat_15",
categoryName: "summer pants",
categoryPath: "pants/mens/summer",
}],
}],
}
}
Note Overriding events with custom attributes may affect OOTB Adobe Analytics reports.
The "mg_dnt" cookie is used by Product Recommendations to restrict data collection.
when the cookie restriction mode is enabled, data services will set the "mg_dnt" cookie to true.
const listenForCookieEvents = ($) => {
const DNT_COOKIE = "mg_dnt";
let userAllowedSaveCookie = !!$.mage.cookies.get("user_allowed_save_cookie");
if (userAllowedSaveCookie) {
$.mage.cookies.clear(DNT_COOKIE);
} else {
$.mage.cookies.set(DNT_COOKIE, true);
}
};
By default, the user consent preference in AEP is set to "opt in", unless the cookie restriction mode is enabled and the "mg_dnt" cookie is present.
The script will keep polling to check for any changes and send the updated preference to AEP.
const doNotTrackCookie = document.cookie.indexOf("mg_dnt") !== -1;
alloy("setConsent", {
consent: [
{
standard: "Adobe",
version: "1.0",
value: {
general: doNotTrackCookie ? "out" : "in",
},
},
],
});
setInterval(setConsent, 1000);
The following events forward a user's email as PII data to AEP:
createAccount
editAccount
signIn
If you have any questions or encounter any issues, please reach out at these locations.
FAQs
Event Collectors for Adobe Commerce storefronts
We found that @adobe/magento-storefront-event-collector demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.