This repository is a self-contained module library for Tidepool's timeline-style diabetes data visualization(s).
This module is currently under construction; check back often for updates!
More information is also available in the wiki.
Fonts: Tideline should be used with the Open Sans font (see example/
for one way to make it available in a web app).
Development-only dependencies: See the package.json
.
Install using:
$ npm install --save tideline
You can use the library directly with Webpack:
var tideline = require('tideline');
// load styles
require('tideline/css/tideline.less');
For information on building charts using tideline components, see Using Tideline.
To run the example and run the tests you will need to have a couple of tools installed. Everything you need can be installed via npm
:
$ npm install
To build and serve up the assets in the example/
directory, run:
$ npm start
You can then view the example at http://localhost:8081/
.
If you want to run the example with real data to view instead of the demo data generated from the Python script in dev/demodata/
, you'll need the following:
- A file of real data exported from blip by entering
window.downloadInputData()
in the console after data successfully loads and saving the resulting file namedblip-input.json
inexample/data/
. - Set your
$DATA
environment variable to the filename withexport DATA='blip-input.json'
. - Start the tideline example with
npm start
as usual.
To run the tests in Chrome using Mocha and the [testem](https://github.com/airportyh/testem 'Test'em') test runner:
$ npm test
Run JSHint with:
$ npm run jshint
You can also watch files for changes and re-run automatically by starting:
$ npm run jshint-watch
Tideline is designed to be highly modular and framework-independent. It is currently being used in conjunction with React in Tidepool's first application blip.
The main functionality tideline provides is modules for building out various visualizations of multi-typed data sets aligned on various timescales. At present, there is a module (oneday.js
) for creating a horizontal scrolling timeline that shows twenty-four hours of data at a time, a module (twoweek.js
) for creating a vertical scrolling timeline that shows two weeks of data at a time, and a module (settings.js
) for creating an HTML table view of insulin pump settings.
Jargon: The horizontal sections comprising sub-units of visualization plotted against the same x-axis are referred to in this repository as pools.
Almost all of the main tideline components (found in js/
) hew to at least some (but rarely all) of the suggestions in Mike Bostock's Towards Reusable Charts. The data-type specific plotting functions (found in js/plot/
) hew most closely to the suggested pattern, while the higher-level components (i.e., oneday.js
, twoweek.js
, settings.js
) do not, as their tasks are not quite the same.
The plotting functions in js/plot/
critically depend on D3's enter and exit selections. If you need it, this tutorial by Mike Bostock includes a good introduction to these.
While tideline is quite specific to diabetes at the moment, it is designed to be as flexible and modular as possible. We plan to integrate data types not specific to diabetes (e.g., activity tracker data, calendar events, etc.), and it should be possible to create a visualization of any multi-typed dataset using a combination of the higher-level components and additional plotting modules. We welcome any and all contributions of new plotting modules, as well as contributions to the core library modules.
Tideline uses D3.js to create an SVG data visualization. SVG is an extremely powerful graphics format, and there are often many, many ways to accomplish the same visualization task. For the purposes of the code in this repository, two related points of philosophy should be noted upfront:
- Tideline loves SVG group
<g>
elements. Loves. - Relatedly, Tideline likes to use the
transform
attribute (usually just with atranslate(x,y)
definition) for positioning.
Tideline makes every attempt to adhere to standard coding conventions. In development, we use the same .jshintrc
file as tideline's parent application blip.
The only coding conventions unique to tideline are conventions of HTML and CSS ID and class names. All of the SVG elements comprising tideline use camelCase
for IDs, with different parts of the ID separated by an underscore _
. Class names, in contrast, are all lowercase, prefixed with d3
and employ hyphen -
as a separator. These conventions help tideline developers to keep IDs and classes distinct.
css/
contains the Less files that compile to tideline's CSS.tideline.less
provides the styles and depends ontideline-colors.less
for color variables. This makes it possible to customize tideline's color scheme by defining a differenttideline-colors.less
file.dev/
contains a few tools that are (occasionally) useful for development.demodata/
contains a Python script for generating fake data for testing tideline during development. For usage information, runpython demo_data.py --help
.templates/
contains two module templates:plottemplate.js
for a plot module anddatautil.js
for a data utility analogous to those found injs/data/
.testpage/
is a miniature JavaScript library for generating test data used in the tideline visualization integration tests. In contrast to the demo data generator, the test page data is extremely regular, with no randomization.
example/
contains files that define a minimal implementation of tideline, useful for development.- NB: The JSON data file provided in the
data/
sub-directory constitutes fake diabetes data generated with the Python scriptdemo_data.py
found indev/demodata/
.
- NB: The JSON data file provided in the
img/
contains the images used to plot certain types of data (i.e., notes).js/
contains the tideline library. At the top level,oneday.js
,twoweek.js
,settings.js
, andpool.js
are the main components.tidelinedata.js
defines the data object that the other core components expect to be passed.index.js
exports the entire library, which can be used for creating a standalone tideline bundle with browserify.data/
contains a set of mini-modules for munging and calculating statistics around various types of diabetes data.util/
contains some common utilities that are used mainly in thedata/
modules, butdatetime.js
,format.js
(for formatting the output of numerical calculations - that is, rounding and displaying numbers to the proper number of significant digits), andtidelinecrossfilter.js
, which wraps the most common uses of Crossfilter in tideline, are also used outside ofdata/
.
plot/
contains mini-modules for plotting various types of data, mostly diabetes-specific. These mini-modules are called bypool.js
when rendering data. Most of the data types are self-explanatory (at least to those who have some knowledge of type 1 diabetes), but 'cbg' and 'smbg' may require explanation. 'cbg' stands for Continuous Blood Glucose and refers to the readings generated by a Dexcom or Medtronic continuous glucose sensor. 'smbg' stands for Self-Monitored Blood Glucose and refers to the readings generated by a traditional home fingerstick blood glucose meter.stats/
contains a special mini-module for creating a "stats widget" that updates on the fly as the user navigates along the tideline. This is essentially a special type of pool that is hierarchical itself, containing component "puddles," where the relationship betweenpuddle.js
andstats.js
is roughly equivalent to the relationship betweenpool.js
and theone-week.js
andtwoweek.js
main components.util/
contains a couple of small utility modules:- within
annotations/
,annotation.js
andannotationdefinitions.js
generate data annotations. - within
axes/
,dailyx.js
is a custom axis generator for the x-axis of the tideline one-day view; more custom axis generators will be added here in the future. - within
tooltips/
,shapes.js
encodes the shapes for tideline's custom tooltips andtooltip.js
provides methods for adding a tooltip on hover over a plotted datapoint. bgboundary.js
provides a utility for determining the class (very-low, low, target, high, very-high) of a blood glucose value given the user's (or the default) target range.commonbolus.js
provides a utility for getting information about boluses, whether these arebolus
events are embedded insidewizard
events.drawbolus.js
provides plotting functions for boluses, whether these arebolus
events are embedded insidewizard
events.fill.js
generates the background fill for each data pool.legend.js
defines legend generators for all the pools that require a legend.scales.js
generates D3 scales for various diabetes data types. The functions in this utility module are at the moment specific to the plotting functions inplot/
, not generally useful.shapeutil.js
provides methods for manipulating SVG shapes in various ways; it is required by modules inannotations/
andtooltips/
.
- within
validation
contains all the code necessary to perform client-side data validation, including schemas for all datatypes currently rendered by tideline, a small modulevalidate.js
providing validation functions, and our custom schema construction and validation tools invalidator/
.
plugins/
contains modules that do not properly belong in tideline's core functionality. These fall into two categories: application-specific modules and data(-specific) preprocessing modules.blip/
contains 'factories' for generating tideline data visualizations in Tidepool's first application blip. See this repository's wiki for information on writing tideline chart factories.nurseshark/
contains a utility for preprocessing data generated by the Tidepool platform. Eventually this utility may be given its own repository.
test/
contains the tideline test suite. See Test for instructions on running the test suite.web/
contains the GitHub Pages branch for this repository, which sometimes hosts a gallery for proposed additions or enhancements to the tideline example being developed inexample/
. If you would like to add something to this gallery, feel free to submit your modifications to the files inexample/
(and elsewhere in tideline, if relevant) and open a pull request againstmaster
(although this is not where your changes will be merged). Please comment in the pull request that your changes are intended as an addition to the gallery. If you are also proposing changes to the tideline library (i.e., outside ofexample/
), a separate pull request containing those changes alone is appreciated.
js/tidelinedata.js/
makes certain assumptions about the data that is passed to it. These assumptions are verified at runtime via the schema and validation code found in js/validation/
. The most important of the requirements are the following:
- The data are valid JSON - specifically, an array of objects.
- Each object has a key
normalTime
which is an ISO 8601 representation of the date and time at which the datapoint occurred, formatted as UTC time. - The data are sorted by
normalTime
, in ascending order.
Both one-day and two-week charts also expect a Node.js EventEmitter passed as an argument.
As noted above, tideline loves SVG group <g>
elements. The basic structure of the one-day tideline chart is as follows:
|--<svg id='tidelineSVGOneDayContainer'>
| |-<g id='tidelineMain'>
| | |-<g id='tidelineXAxis'>
| | |-<g id='tidelinePools'>
| | | |-<g id='pool[Datatype]'>
| | | | |-<g id='pool[Datatype]_fill'>
| | | | |-<g id='pool[Datatype]_[datatype]'>
| | |-<g id='tidelineLabels'>
| | | |-<text id='pool_pool[Datatype]_label'>
| | | |-<g id='pool_pool[Datatype]_legend_[datatype]'>
| | |-<g id='tidelineYAxes'>
| | |-<g id='tidelineScrollNav'>
| | |-<g id='tidelineAnnotations'>
| | |-<g id='tidelineTooltips'>
And the two-week chart differs only minimally:
|--<svg id='tidelineSVGTwoWeekContainer'>
| |-<g id='tidelineMain'>
| | |-<g id='tidelinePools'>
| | | |-<g id='daysGroup'>
| | | | |-<g id='poolBG_[date]'>
| | | | | |-<g id='poolBG_[date]_fill'>
| | | | | |-<g id='poolBG_[date]_smbg'>
| | | |-<g id='poolStats'>
| | | | |-<g id='poolStats_stats'>
| | |-<g id='tidelineXAxisGroup'>
| | |-<g id='tidelineYAxisGroup'>
| | |-<g id='tidelineScrollNav'>
| | |-<g id='tidelineWeeklyLabels'>
| | |-<g id='tidelineTooltips'>
| | |-<g id='tidelineAnnotations'>
Because SVG has no concept of a z-index, elements are layered according to the order in which they appear in the SVG XML. One of the reasons tideline makes such liberal use of group elements is to control the layering through the order of the group elements. Thus, the ordering of the groups in the two outlines above is often significant.