Adobe Experience Platform Launch has been rebranded as a suite of data collection technologies in Adobe Experience Platform. Several terminology changes have rolled out across the product documentation as a result. Please refer to the following document for a consolidated reference of the terminology changes.
In a tag rule, a condition is evaluated after an event has occurred. All conditions must return true in order for the rule to continue processing. Condition types are provided by extensions and evaluate whether something is true or false, returning a boolean value.
As an example, an extension could provide a “viewport contains” condition type wherein the user could specify a CSS selector. When the condition is evaluated on the client’s website, the extension would be able to find elements matching the CSS selector and return whether any of them are contained within the user’s viewport.
This document covers how to define condition types for an edge extension in Adobe Experience Platform.
If you are developing a web extension, see the guide on condition types for web extensions instead.
This document also assumes you are familiar with library modules and how they are integrated in edge extensions. If you require an introduction, see the overview on library module formatting before returning to this guide.
Condition types typically consist of the following:
For example, if you want to evaluate whether the user is on the host example.com
, your module may look like this.
module.exports = (context) => {
const URL = context.arc.event.xdm.web.webpageDetails.URL;
return URL.endsWith("adobelaunch.com");
};
If you want to make the hostname configurable by the user to allow the input of a hostname and save it to the settings object, the object might look similar to this example.
{
"hostname": "example.com"
}
In order to operate on the user-defined hostname, your module would need to change to this:
module.exports = (context) => {
const URL = context.arc.event.xdm.web.webpageDetails.URL;
return URL.endsWith(settings.hostname);
};
The result returned by a condition module can be one of the following:
true
or false
).All condition modules have access to a context
variable that is provided when the module is called. You can learn more here.