-
Notifications
You must be signed in to change notification settings - Fork 48
Architecture
The project is organized as follows:
- Base Code
- Core
- Components
- Shared utilities and constants
This is the code customers paste directly onto their website, assuming they are not using Adobe Launch. It is run before the Alloy library even begins to load. It sets up a global variable the customer can begin using right away. When customers attempt to execute commands before the Alloy library has finished loading, relevant information is stored in a queue. Once the Alloy library finishes loading, the library processes any queued commands. From that time forward, any time a customer attempts to execute a command, the Alloy library will immediately begin executing the command.
The base code is the only piece of source code that is not included in the produced standalone Alloy library.
Core is the orchestrator of the library. It creates components and manages the lifecycle of the library. Core also provides shared pieces of state and logic to components so they can properly perform their job. Core also exposes a limited number of commands that are fundamental to the library as a whole, like configure
and setDebug
.
Components provide the bulk of functionality. This functionality is typically exposed through commands that customers use to perform their work. Components are organized by areas of concern. For example, Identity and Personalization are different components.
Components are largely decoupled. A component never interacts directly with another component and should never import a module contained within a different component. In fact, components should never import modules contained outside their component directory, with the exception of shared utilities and constants. Any coordination that must exist between components or between a component and Core should be explicitly defined and provided by Core to all instances, either through arguments when Core is creating components or through lifecycle hooks.
Similarly, Core should never import modules contained within components. The only exception to this rule is when Core imports the component factory functions in order to instantiate the components.
Utilities and constants that are not specific to a particular component may reside in src/utils
and src/constants
. These are the only modules that a component may import that reside outside of that component's directory.
A utility or constant does not need to be in active use by more than one component (or Core) for it to be in src/utils
or src/constants
. If it could be reasonably useful (which is subjective) to more than one component, it would qualify. This approach to qualification allows developers to more easily discover utilities and constants that already exist, rather than accidentally creating redundant utilities and constants in different components.
Utilities should never be used to communicate or share state across components.
As mentioned previously, Core is the orchestrator of the library. When a command is executed or a response received from the server, Core ensures all components receive the information they need and take action on that information. Core does this through lifecycle hooks. Notably, components can also trigger lifecycle hooks to coordinate with other components.
Lifecycle hooks must be explicitly declared and exposed by Core to components. This is to ensure all lifecycle hooks are well-known and easily discoverable by developers. Hopefully, it also prompts thorough conversation about cross-component impacts when lifecycle hooks are added, modified, or removed.
Depending on the hook, components may be able to return a value from a callback that has been registered with a lifecycle hook. In many cases, a component may return a promise from a callback that will prevent a particular process from continuing until the promise is resolved.
For example, the Identity component has a callback registered for the onBeforeRequest
lifecycle hook. If the customer attempts to send multiple events to the server before an identity has been established for the current user, the Identity component's onBeforeRequest
lifecycle callback will return a pending promise for all but the first request. This allows only the first request to be sent, while the remaining requests are queued. Once the response from the first request is received and an identity has been established for the user, the Identity component will resolve the promises to allow the queued requests to be sent.
See createLifecycle.js for the current list of lifecycle hooks and their descriptions.