UNPKG

@adobe/adobe-client-data-layer

Version:
98 lines (83 loc) 3.14 kB
/* Copyright 2020 Adobe. All rights reserved. This file is licensed to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ const DataLayerManager = require('./dataLayerManager'); /** * Data Layer. * * @type {Object} */ const DataLayer = { Manager: DataLayerManager }; window.adobeDataLayer = window.adobeDataLayer || []; // If data layer has already been initialized, do not re-initialize. if (window.adobeDataLayer.version) { console.warn( `Adobe Client Data Layer v${window.adobeDataLayer.version} has already been imported/initialized on this page. You may be erroneously loading it a second time.` ); } else { DataLayer.Manager({ dataLayer: window.adobeDataLayer }); } /** * @typedef {Object} ListenerOnConfig * @property {String} on Name of the event to bind to. * @property {String} [path] Object key in the state to bind to. * @property {ListenerScope} [scope] Scope of the listener. * @property {Function} handler Handler to execute when the bound event is triggered. */ /** * @typedef {Object} ListenerOffConfig * @property {String} off Name of the event to unbind. * @property {String} [path] Object key in the state to bind to. * @property {ListenerScope} [scope] Scope of the listener. * @property {Function} [handler] Handler for a previously attached event to unbind. */ /** * @typedef {Object} DataConfig * @property {Object} data Data to be updated in the state. */ /** * @typedef {Object} EventConfig * @property {String} event Name of the event. * @property {Object} [eventInfo] Additional information to pass to the event handler. * @property {DataConfig.data} [data] Data to be updated in the state. */ /** * @typedef {DataConfig | EventConfig | ListenerOnConfig | ListenerOffConfig} ItemConfig */ /** * Triggered when there is change in the data layer state. * * @event DataLayerEvent.CHANGE * @type {Object} * @property {Object} data Data pushed that caused a change in the data layer state. */ /** * Triggered when an event is pushed to the data layer. * * @event DataLayerEvent.EVENT * @type {Object} * @property {String} name Name of the committed event. * @property {Object} eventInfo Additional information passed with the committed event. * @property {Object} data Data that was pushed alongside the event. */ /** * Triggered when an arbitrary event is pushed to the data layer. * * @event <custom> * @type {Object} * @property {String} name Name of the committed event. * @property {Object} eventInfo Additional information passed with the committed event. * @property {Object} data Data that was pushed alongside the event. */ module.exports = DataLayer;