ng-at-internet
AT Internet tracking js library wrapper for AngularJS.
Install
Bower
$ bower install ng-at-internet --save
NPM
Available soon
Get the sources
$ git clone https://github.com/ovh-ux/ng-at-internet.git
$ cd ng-at-internet
$ npm install
$ bower install
Getting Started
Before using this component please make sure that ATInternet JS library : smarttag.js is linked in your project.
<script src="angular.js"></script>
<script src="smarttag-yourproject.js"></script>
<script src="ng-at-internet.js"></script>
Documentation
Please see : http://developers.atinternet-solutions.com/accueil/
Provider configuration
Example simple provider configuration
app.config(["atInternetProvider", function(provider) {
provider.setEnabled(true);
provider.setDefaults({ level2: "1"});
}])
Please note that the level2 attribute must be your project ID ; configured in ATInternet manager.
Exemple provider configuration with identifiedVisitor set.
app.config(["atInternetProvider", function(provider) {
provider.setEnabled(true);
provider.setDefaults({ level2: "1",
visitorId: "123"
});
}])
Notice that visitorId is optional and set identifiedVisitor.id ATInternet Tag.
Page tracking
Example of tracking a single page.
atInternet.trackPage({
name: "my-page",
level2: "1",
visitorId: "123"
});
Click tracking
Example of tracking a click action.
atInternet.trackClick({
name: "my-click",
type: "action",
level2: "1",
visitorId: "123"
});
Tracking using the directive :
Attributes
track-on
: event to track (click, onFinish, onchange, etc)track-name
: Name of action (optional) Id will be used if absenttrack-type
: event type (optional) Possible values : action/navigation/download/exit
<button id="btnAction" data-track-on="click"></button>
Tracking result: {name: "btnAction-click", type: "action"...}
<button data-track-on="mouseover" data-track-name="MyAction" data-track-type="navigation"></button>
Tracking result: {name: "MyAction", type: "navigation"...}
Order tracking
Example of tracking a successfull order.
atInternet.trackOrder({
page: "pageName",
name: "my-product",
price: 42,
quantity: 1,
status: 3,
level2: "1",
visitorId: "123"
});
Event tracking
Example of tracking a custom event.
atInternet.trackEvent({
page: "pageName",
event: "eventName",
level2: "1",
visitorId: "123"
});
You can use:
grunt
: to build.grunt watch
: will rebuild your project when a file change. Also re-launch Karma when a spec file change.grunt test
: to test specs files with Karma/Jasmine.grunt release --type=major|minor|patch
: to release your module.
Contributing
You've developed a new cool feature ? Fixed an annoying bug ? We'd be happy
to hear from you !
Have a look in CONTRIBUTING.md
Run the tests
$ npm test
Related links
License
See https://github.com/ovh-ux/ng-at-internet/blob/master/LICENSE