open-nomad/ui/app/components/line-chart.js

298 lines
7.9 KiB
JavaScript
Raw Normal View History

2018-09-07 16:59:02 +00:00
import Component from '@ember/component';
import { computed, observer } from '@ember/object';
import { guidFor } from '@ember/object/internals';
import { run } from '@ember/runloop';
import d3 from 'd3-selection';
import d3Scale from 'd3-scale';
import d3Axis from 'd3-axis';
import d3Array from 'd3-array';
import d3Shape from 'd3-shape';
import d3Format from 'd3-format';
import d3TimeFormat from 'd3-time-format';
import WindowResizable from 'nomad-ui/mixins/window-resizable';
import styleStringProperty from 'nomad-ui/utils/properties/style-string';
// Returns a new array with the specified number of points linearly
// distributed across the bounds
const lerp = ([low, high], numPoints) => {
const step = (high - low) / (numPoints - 1);
const arr = [];
for (var i = 0; i < numPoints; i++) {
arr.push(low + step * i);
}
return arr;
};
// Round a number or an array of numbers
const nice = val => (val instanceof Array ? val.map(nice) : Math.round(val));
export default Component.extend(WindowResizable, {
classNames: ['chart', 'line-chart'],
// Public API
data: null,
xProp: null,
yProp: null,
timeseries: false,
chartClass: 'is-primary',
// Private Properties
width: 0,
height: 0,
isActive: false,
fillId: computed(function() {
return `line-chart-fill-${guidFor(this)}`;
}),
activeDatum: null,
activeDatumLabel: computed('activeDatum', function() {
const datum = this.get('activeDatum');
if (!datum) return;
const x = datum[this.get('xProp')];
return this.xFormat(this.get('timeseries'))(x);
}),
activeDatumValue: computed('activeDatum', function() {
const datum = this.get('activeDatum');
if (!datum) return;
const y = datum[this.get('yProp')];
return this.yFormat()(y);
}),
// Overridable functions that retrurn formatter functions
xFormat(timeseries) {
return timeseries ? d3TimeFormat.timeFormat('%b') : d3Format.format(',');
},
yFormat() {
return d3Format.format(',.2~r');
},
tooltipPosition: null,
tooltipStyle: styleStringProperty('tooltipPosition'),
xScale: computed('data.[]', 'xProp', 'timeseries', 'yAxisOffset', function() {
const xProp = this.get('xProp');
const scale = this.get('timeseries') ? d3Scale.scaleTime() : d3Scale.scaleLinear();
scale
.rangeRound([10, this.get('yAxisOffset')])
.domain(d3Array.extent(this.get('data'), d => d[xProp]));
return scale;
}),
yScale: computed('data.[]', 'yProp', 'xAxisOffset', function() {
const yProp = this.get('yProp');
return d3Scale
.scaleLinear()
.rangeRound([this.get('xAxisOffset'), 10])
.domain([0, d3Array.max(this.get('data'), d => d[yProp])]);
}),
xAxis: computed('xScale', function() {
const formatter = this.xFormat(this.get('timeseries'));
return d3Axis
.axisBottom()
.scale(this.get('xScale'))
.ticks(5)
.tickFormat(formatter);
}),
yTicks: computed('xAxisOffset', function() {
const height = this.get('xAxisOffset');
const tickCount = Math.ceil(height / 120) * 2 + 1;
const domain = this.get('yScale').domain();
const ticks = lerp(domain, tickCount);
return domain[1] - domain[0] > 1 ? nice(ticks) : ticks;
2018-09-07 16:59:02 +00:00
}),
yAxis: computed('yScale', function() {
const formatter = this.yFormat();
return d3Axis
.axisRight()
.scale(this.get('yScale'))
.tickValues(this.get('yTicks'))
.tickFormat(formatter);
}),
yGridlines: computed('yScale', function() {
// The first gridline overlaps the x-axis, so remove it
const [, ...ticks] = this.get('yTicks');
return d3Axis
.axisRight()
.scale(this.get('yScale'))
.tickValues(ticks)
.tickSize(-this.get('yAxisOffset'))
.tickFormat('');
}),
xAxisHeight: computed(function() {
const axis = this.element.querySelector('.x-axis');
return axis && axis.getBBox().height;
}),
yAxisWidth: computed(function() {
const axis = this.element.querySelector('.y-axis');
return axis && axis.getBBox().width;
}),
xAxisOffset: computed('height', 'xAxisHeight', function() {
return this.get('height') - this.get('xAxisHeight');
}),
yAxisOffset: computed('width', 'yAxisWidth', function() {
return this.get('width') - this.get('yAxisWidth');
}),
line: computed('data.[]', 'xScale', 'yScale', function() {
const { xScale, yScale, xProp, yProp } = this.getProperties(
'xScale',
'yScale',
'xProp',
'yProp'
);
const line = d3Shape
.line()
.x(d => xScale(d[xProp]))
.y(d => yScale(d[yProp]));
return line(this.get('data'));
}),
area: computed('data.[]', 'xScale', 'yScale', function() {
const { xScale, yScale, xProp, yProp } = this.getProperties(
'xScale',
'yScale',
'xProp',
'yProp'
);
const area = d3Shape
.area()
.x(d => xScale(d[xProp]))
.y0(yScale(0))
.y1(d => yScale(d[yProp]));
return area(this.get('data'));
}),
didInsertElement() {
this.updateDimensions();
const canvas = d3.select(this.element.querySelector('.canvas'));
const updateActiveDatum = this.updateActiveDatum.bind(this);
const chart = this;
canvas.on('mouseenter', function() {
const mouseX = d3.mouse(this)[0];
chart.set('latestMouseX', mouseX);
updateActiveDatum(mouseX);
run.schedule('afterRender', chart, () => chart.set('isActive', true));
2018-09-07 16:59:02 +00:00
});
canvas.on('mousemove', function() {
const mouseX = d3.mouse(this)[0];
chart.set('latestMouseX', mouseX);
updateActiveDatum(mouseX);
});
canvas.on('mouseleave', () => {
run.schedule('afterRender', this, () => this.set('isActive', false));
2018-09-07 16:59:02 +00:00
this.set('activeDatum', null);
});
},
didUpdateAttrs() {
this.renderChart();
},
updateActiveDatum(mouseX) {
const { xScale, xProp, yScale, yProp, data } = this.getProperties(
'xScale',
'xProp',
'yScale',
'yProp',
'data'
);
// Map the mouse coordinate to the index in the data array
const bisector = d3Array.bisector(d => d[xProp]).left;
const x = xScale.invert(mouseX);
const index = bisector(data, x, 1);
// The data point on either side of the cursor
const dLeft = data[index - 1];
const dRight = data[index];
// Pick the closer point
const datum = x - dLeft[xProp] > dRight[xProp] - x ? dRight : dLeft;
this.set('activeDatum', datum);
this.set('tooltipPosition', {
left: xScale(datum[xProp]),
top: yScale(datum[yProp]) - 10,
});
},
updateChart: observer('data.[]', function() {
this.renderChart();
}),
// The renderChart method should only ever be responsible for runtime calculations
// and appending d3 created elements to the DOM (such as axes).
renderChart() {
// First, create the axes to get the dimensions of the resulting
// svg elements
this.mountD3Elements();
run.next(() => {
// Then, recompute anything that depends on the dimensions
// on the dimensions of the axes elements
this.notifyPropertyChange('xAxisHeight');
this.notifyPropertyChange('yAxisWidth');
// Since each axis depends on the dimension of the other
// axis, the axes themselves are recomputed and need to
// be re-rendered.
this.mountD3Elements();
if (this.get('isActive')) {
this.updateActiveDatum(this.get('latestMouseX'));
}
});
},
mountD3Elements() {
d3.select(this.element.querySelector('.x-axis')).call(this.get('xAxis'));
d3.select(this.element.querySelector('.y-axis')).call(this.get('yAxis'));
d3.select(this.element.querySelector('.y-gridlines')).call(this.get('yGridlines'));
},
windowResizeHandler() {
run.once(this, this.updateDimensions);
},
updateDimensions() {
const $svg = this.$('svg');
const width = $svg.width();
const height = $svg.height();
this.setProperties({ width, height });
this.renderChart();
},
});