Giter Site home page Giter Site logo

morsagmon / ngx-pixel Goto Github PK

View Code? Open in Web Editor NEW

This project forked from onclave/ngx-pixel

0.0 0.0 0.0 889 KB

An Angular library to simplify event tracking using a Facebook Pixel with eventID support.

Home Page: https://www.npmjs.com/package/ngx-pixel

JavaScript 9.17% TypeScript 90.83%

ngx-pixel's Introduction

An Angular library to simplify tracking using a Facebook Pixel with support for the eventID argument.


Introduction

Using a Facebook Pixel is fairly simple. You add the script to the head section of all pages, after which you can use the fbq function. However, in Angular it's not as straight-forward. The main two problems are as follows:

  • Navigation using the Angular Router is not tracked.
  • There are no TypeScript definitions by default, so no Intellisense or linting.

ngx-pixel solves both of these issues. It adds a service that can be used in any component to track events and when enabled, it automatically tracks page views for each router navigation.

By default, ngx-pixel is disabled to make it easier to comply with GDPR and other privacy regulations. The Facebook script is only loaded after ngx-pixel is enabled, which also helps cut down the initial load time of your application. Read here how to enable and disable ngx-pixel.

[Mor Sagmon] This modified version supports Facebook's eventID, which is a possible fourth argument passed to track and trackCustom, fortifying a strong deduplication with the same event as reported from your server (using ConversionsAPI).


Usage

Using ngx-pixel is very simple.

1. Installing the NPM package

You can install the NPM package with npm install ngx-pixel-eventid

2. Add it to your app module / config

If you are using NgModule

Add the library to your app's module, usually app.module.ts. Make sure you use the forRoot() method. Within this method, add your Facebook Pixel ID.

import { PixelModule } from 'ngx-pixel-eventid';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    PixelModule.forRoot({ enabled: true, pixelId: 'YOUR_PIXEL_ID' })
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

For standalone Angular projects

Add the library as an imported provider into the providers array in the app.config.ts file:

import { PixelModule } from 'ngx-pixel-eventid';

export const appConfig: ApplicationConfig = {
  providers: [
    importProvidersFrom(
      PixelModule.forRoot({ enabled: true, pixelId: 'YOUR_PIXEL_ID' }) 
    ),    
  ]
};

NOTE: By default, the library does not start tracking immediately. In most cases this requires user consent to comply with GDPR and other privacy regulations. If you would still like start tracking as soon as your app module loads, include the enabled: true parameter in when you call forRoot().

3. Add it to your components/service

In any component where you would like to track certain events, you can import the ngx-pixel service with import { PixelService } from 'ngx-pixel-eventid'; Then you can inject the service into your component as follows:

export class HomeComponent {

  constructor(
    private pixel: PixelService
  ) { }

}

4. Tracking events

There are two groups of events that you can track, namely Standard events and Custom events.

Standard events

Standard events are common events that Facebook has created. You can find the full list here. You can track a Standard event like this: Track Standard events using ngx-pixel

The first argument is the type of event as defined by Facebook. The optional second argument can be used to pass more information about the event. The optional third argument is the eventID you generated that you also send with the ConversionAPI request call for this event. E.g.:

this.pixel.track('InitiateCheckout', {
  content_ids: ['ABC123', 'XYZ456'],  // Item SKUs
  value: 100,                         // Value of all items
  currency: 'USD'                     // Currency of the value
}, {
  eventID: 'OMG987'
});

Custom events

Tracking Custom events works very similar to tracking Standard events. The only major difference is that there are no TypeScript interfaces and therefore no Intellisense. This is because the event name and optional properties can be anything. Tracking a custom event with ngx-pixel looks like this:

this.pixel.trackCustom('MyCustomEvent');

And just like with Standard events, you can add more properties and the eventID. Adding properties is recommended, since this enables you to create even more specific audiences within Facebook Business Manager. Which properties you add is completely up to you. Here is an example:

this.pixel.trackCustom('MyCustomEvent', {
  platform: 'limewire'
}, {
  eventID: 'OMG987'
})

Enabling and disabling ngx-pixel

ngx-pixel is disabled by default. In many cases, tracking without user consent is not allowed by privacy regulations like the European GDPR. ngx-pixel also doesn't inject the Facebook scripts until it is iniaitlized (upon consent), which helps cut down the initial loading size and time of your application.

Enabling ngx-pixel immediately

It is still possible to initialize ngx-pixel as soon as your app module loads. When adding ngx-pixel to app.module.ts, add the parameter enabled: true.

imports: [
  BrowserModule,
  PixelModule.forRoot({ enabled: true, pixelId: 'YOUR_PIXEL_ID'})
],

Enabling ngx-pixel from a component

You can also enable ngx-pixel from within any of your components, like so:

export class HomeComponent {

  constructor(
    private pixel: PixelService
  ) { }

  onConsent(): void {
    this.pixel.initialize();
  }

}

Enabling with a dynamic Pixel ID

In situations where the Pixel ID needs to be changed dynamically, this can be done using initialize() with the new Pixel ID as an optional argument. Notes:

  • A Pixel ID still needs to be provided when importing ngx-pixel in the module.
  • The previous instance should be removed with remove() before initializing a new Pixel ID.
  • This approach should not be used in combination with serverside rendering (SSR). As the module is initialized on each request, the Pixel script will default to the ID provided in the module.

Disabling ngx-pixel

Disabling works very similar to enabling from within a component and looks like this:

export class HomeComponent {

  constructor(
    private pixel: PixelService
  ) { }

  onRevokeConsent(): void {
    this.pixel.remove();
  }

}

Important notes

  • Backwards compatibility is not guaranteed. ngx-pixel-eventid was developed using Angular 17, which uses the Ivy compiler instead of the older View Engine compiler. If your project uses Angular 8 or earlier, or if you've decided to keep using View Engine with newer Angular versions, ngx-pixel-eventid might not be compatible, although I have not yet tested this to confirm.

Created with ❤️ by Niels Kersic, niels.codes. Updated to Angular 17 by Debabrata Acharya, (https://github.com/onclave). Updated to support Facebook eventID by Mor Sagmon (https://github.com/morsagmon).

ngx-pixel's People

Contributors

nielscodes avatar onclave avatar morsagmon avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.