Skip to content

Tools to collect detailed usage analytics of Idyll articles.

License

Notifications You must be signed in to change notification settings

idyll-lang/idyll-analytics

Repository files navigation

idyll-analytics

Tools to collect detailed usage analytics of Idyll articles. If you use this in academic work, please cite the paper:

@article{2019-idyll-analytics,
 title = {Capture \& Analysis of Active Reading Behaviors for Interactive Articles on the Web},
 author = {Matt Conlen AND Alex Kale AND Jeffrey Heer},
 journal = {Computer Graphics Forum (Proc. EuroVis)},
 year = {2019},
 url = {http://idl.cs.washington.edu/papers/idyll-analytics},
}

Installation

To install the analytics package, run the following in your Idyll project:

$ npm install --save idyll-analytics

Usage

This code is intended to be used as a custom runtime plugin for Idyll. To use it, you need to create a custom context file and import the analytics code there. See the idyll docs for more information on custom contexts.

This plugin relies on Firebase for data storage, and you'll need to have a Firebase database set up and credentials available in order to use it.

Creating a custom context file

Create a new file called context.js in your Idyll project:

const Analytics = require('./index');

// Fill out these credentials.
const firebaseConfig = {
  apiKey: "",
  authDomain: "",
  databaseURL: "",
  projectId: "",
  storageBucket: "",
  messagingSenderId: ""
};

module.exports = (context) => {
  const initialState = context.data();

  // Update this with a relevant identifier for your post.
  const analytics = new Analytics('my-post-title', firebaseConfig);

  analytics.onLoad(() => {
    analytics.updateState(initialState);
    context.onUpdate((newState) => {
      analytics.updateState(newState);
    });
  })
}

Configuring Idyll to use the custom context

In your package.json file, update the idyll option to use your newly created context:

{
  "idyll": {
    "context": "./context.js"
  }
}

About

Tools to collect detailed usage analytics of Idyll articles.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published