3.0.7 • Published 11 months ago

@vivareal/tracking v3.0.7

Weekly downloads
134
License
ISC
Repository
github
Last release
11 months ago

Tracking

A set of tracking helpers based on our schemas repository

Usage

// ../tracking.js
import { Tracking } from '@vivareal/tracking';

export default new Tracking({
  getBaseSchema: () => {
    // get info from base schema
    // ...
    return {
      foo: 'bar',
      bar: 'foo',
    };
  },
});

Options

OptiondefaultDesc
getBaseSchema() => {}Get project base schema info

Use as a Vue plugin

import Vue from 'vue';
import { VueTracking } from '@vivareal/tracking';
import tracking from './tracking';

Vue.use(VueTracking, { tracking });

This will enable your project to use the tracker directly in components in a "Vue-way"

import { favoriteClicked } from '@vivareal/tracking';

// foo.js
export default {
  methods: {
    trackEvent() {
      const schema = this.$tracking.getSchemaData(params, 'renameCollection', favoriteClicked);
      this.$clickstream.trackEvent(schema);
    },
  },
};

Use as module

// foo.js
import tracking from './tracking';
import { favoriteClicked } from '@vivareal/tracking';

const schema = tracking.getSchemaData(data, 'renameCollection', favoriteClicked);

Methods

MethodParamsDesc
getSchemaDatadata: obj, eventAction: String, schema: objCreate desired schema
// schema object example
{
  create: (event, data) => {
    const events = { myCustomEvent: { action: 'myCustomEvent' } };
    return { ...data, ...events[event] };
  },
  rules: {
    required: ['id', 'event'],
    event: 'myCustomEvent'
  }
}

Avaliable Schemas

EventDescriptionUsed In
favoritePanelClickedWhenever the user open/closes the favorites modaloz-assets, don-corleone
favoriteClickedwhenever the user actually take an action on favarite modaloz-assets, don-corleone
favoriteCollectionClickedwhenever the user actually take an action on favorite modal of remove or add a favoriteoz-assets, don-corleone
galleryClickedwhenever the user open/swipes a photo of galleryoz-assets, don-corleone

Run it locally

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Running on local machine

yarn dev

Running the tests

yarn test
yarn test:watch

Build

Build to dist folder

yarn run build

Code Formatting Guidelines

This project relies on prettier to automatically format the code. In the precommit hook, your code will be checked against eslint and prettier rules to avoid sending bad formatted code to production.

Publish a new version

See root's README file

Debug this module with Vscode

Vscode has some issues with debug in the newest version of ECMA Script. So we need to build first the module and call the functions with an entry point.

To debug create a .vscode folder and launch.json

{
  "version": "0.2.0",
  "configurations": [
    {
      "type": "node",
      "request": "launch",
      "name": "Launch Program",
      "skipFiles": ["<node_internals>/**"],
      "program": "${workspaceFolder}/dist/entry-point.js"
    }
  ]
}

And then build your package

yarn build

And now you call the modules inside on entry-point.js at dist folder. eg:

const { Tracking } = require('./tracking');
import { favoriteClicked } from '@vivareal/tracking';

const data = {
 ...
};

const tracking = new Tracking({
  getBaseSchema: () => {
    // ..
  },
 });

tracking.getSchemaData(data, 'renameCollection', favoriteClicked);
3.0.7

11 months ago

3.0.4

1 year ago

3.0.6

1 year ago

3.0.5

1 year ago

3.0.3

2 years ago

3.0.2

4 years ago

3.0.1

4 years ago

3.0.0

4 years ago

2.1.0

4 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago