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},
}
To install the analytics package, run the following in your Idyll project:
$ npm install --save idyll-analytics
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.
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);
});
})
}
In your package.json file, update the idyll
option to use your newly created context:
{
"idyll": {
"context": "./context.js"
}
}