2020-02-13 19:44:57 +00:00
|
|
|
import Component from '@ember/component';
|
|
|
|
import d3 from 'd3-selection';
|
|
|
|
import d3Scale from 'd3-scale';
|
|
|
|
import d3Axis from 'd3-axis';
|
|
|
|
import d3TimeFormat from 'd3-time-format';
|
|
|
|
import { assign } from '@ember/polyfills';
|
|
|
|
import { computed } from '@ember/object';
|
|
|
|
import { run } from '@ember/runloop';
|
|
|
|
import { task, waitForEvent } from 'ember-concurrency';
|
|
|
|
|
|
|
|
/**
|
2020-03-02 17:12:34 +00:00
|
|
|
* @module HttpRequestsBarChartSimple
|
|
|
|
* The HttpRequestsBarChartSimple is a simplified version of the HttpRequestsBarChart component.
|
2020-02-13 19:44:57 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* ```js
|
2020-03-02 17:12:34 +00:00
|
|
|
* <HttpRequestsBarChartSimple @counters={counters}/>
|
2020-02-13 19:44:57 +00:00
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* @param counters=null {Array} - A list of objects containing the total number of HTTP Requests for each month. `counters` should be the response from the `/internal/counters/requests`.
|
2020-03-02 17:12:34 +00:00
|
|
|
* The response is then filtered showing only the 12 most recent months of data. This property is called filteredHttpsRequests.
|
2020-02-13 19:44:57 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
const HEIGHT = 125;
|
|
|
|
const UI_GRAY_300 = '#bac1cc';
|
|
|
|
const UI_GRAY_100 = '#ebeef2';
|
|
|
|
|
|
|
|
export default Component.extend({
|
2020-03-02 17:12:34 +00:00
|
|
|
classNames: ['http-requests-bar-chart-simple'],
|
2020-02-13 19:44:57 +00:00
|
|
|
counters: null,
|
|
|
|
margin: Object.freeze({ top: 24, right: 16, bottom: 24, left: 16 }),
|
|
|
|
padding: 0.04,
|
|
|
|
width: 0,
|
|
|
|
height() {
|
|
|
|
const { margin } = this;
|
|
|
|
return HEIGHT - margin.top - margin.bottom;
|
|
|
|
},
|
|
|
|
parsedCounters: computed('counters', function() {
|
|
|
|
// parse the start times so bars display properly
|
|
|
|
const { counters } = this;
|
|
|
|
counters.reverse();
|
|
|
|
return counters.map((counter, index) => {
|
|
|
|
return assign({}, counter, {
|
|
|
|
start_time: d3TimeFormat.isoParse(counter.start_time),
|
|
|
|
fill_color: index === counters.length - 1 ? UI_GRAY_300 : UI_GRAY_100,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}),
|
|
|
|
|
|
|
|
yScale: computed('parsedCounters', 'height', function() {
|
|
|
|
const { parsedCounters } = this;
|
|
|
|
const height = this.height();
|
|
|
|
const counterTotals = parsedCounters.map(c => c.total);
|
|
|
|
|
|
|
|
return d3Scale
|
|
|
|
.scaleLinear()
|
|
|
|
.domain([0, Math.max(...counterTotals)])
|
|
|
|
.range([height, 0]);
|
|
|
|
}),
|
|
|
|
|
|
|
|
xScale: computed('parsedCounters', 'width', function() {
|
|
|
|
const { parsedCounters, width, margin, padding } = this;
|
|
|
|
return d3Scale
|
|
|
|
.scaleBand()
|
|
|
|
.domain(parsedCounters.map(c => c.start_time))
|
|
|
|
.rangeRound([0, width - margin.left - margin.right], 0.05)
|
|
|
|
.paddingInner(padding)
|
|
|
|
.paddingOuter(padding);
|
|
|
|
}),
|
|
|
|
|
|
|
|
didInsertElement() {
|
|
|
|
this._super(...arguments);
|
|
|
|
const { margin } = this;
|
|
|
|
|
|
|
|
// set the width after the element has been rendered because the chart axes depend on it.
|
|
|
|
// this helps us avoid an arbitrary hardcoded width which causes alignment & resizing problems.
|
|
|
|
run.schedule('afterRender', this, () => {
|
|
|
|
this.set('width', this.element.clientWidth - margin.left - margin.right);
|
|
|
|
this.renderBarChart();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
didUpdateAttrs() {
|
|
|
|
this.renderBarChart();
|
|
|
|
},
|
|
|
|
|
|
|
|
renderBarChart() {
|
|
|
|
const { margin, width, xScale, yScale, parsedCounters, elementId } = this;
|
|
|
|
const height = this.height();
|
2020-03-02 17:12:34 +00:00
|
|
|
const barChartSVG = d3.select('.http-requests-bar-chart-simple');
|
2020-02-13 19:44:57 +00:00
|
|
|
const barsContainer = d3.select(`#bars-container-${elementId}`);
|
|
|
|
|
|
|
|
d3.select('.http-requests-bar-chart')
|
|
|
|
.attr('width', width + margin.left + margin.right)
|
|
|
|
.attr('height', height + margin.top + margin.bottom)
|
|
|
|
.attr('viewBox', `0 0 ${width} ${height}`);
|
|
|
|
|
|
|
|
const xAxis = d3Axis
|
|
|
|
.axisBottom(xScale)
|
|
|
|
.tickFormat('')
|
|
|
|
.tickValues([])
|
|
|
|
.tickSizeOuter(0);
|
|
|
|
|
|
|
|
barChartSVG
|
|
|
|
.select('g.x-axis')
|
|
|
|
.attr('transform', `translate(0,${height})`)
|
|
|
|
.call(xAxis);
|
|
|
|
|
|
|
|
const bars = barsContainer.selectAll('.bar').data(parsedCounters, c => +c.start_time);
|
|
|
|
|
|
|
|
const barsEnter = bars
|
|
|
|
.enter()
|
|
|
|
.append('rect')
|
|
|
|
.attr('class', 'bar');
|
|
|
|
|
|
|
|
bars
|
|
|
|
.merge(barsEnter)
|
|
|
|
.attr('x', counter => xScale(counter.start_time))
|
|
|
|
.attr('y', () => yScale(0))
|
|
|
|
.attr('width', xScale.bandwidth())
|
|
|
|
.attr('height', counter => height - yScale(counter.total) - 5) // subtract 5 to provide the gap between the xAxis and the bars
|
|
|
|
.attr('y', counter => yScale(counter.total))
|
|
|
|
.attr('fill', counter => counter.fill_color)
|
|
|
|
.attr('stroke', counter => counter.fill_color);
|
|
|
|
|
|
|
|
bars.exit().remove();
|
|
|
|
},
|
|
|
|
|
|
|
|
updateDimensions() {
|
|
|
|
const newWidth = this.element.clientWidth;
|
|
|
|
const { margin } = this;
|
|
|
|
|
|
|
|
this.set('width', newWidth - margin.left - margin.right);
|
|
|
|
this.renderBarChart();
|
|
|
|
},
|
|
|
|
|
|
|
|
waitForResize: task(function*() {
|
|
|
|
while (true) {
|
|
|
|
yield waitForEvent(window, 'resize');
|
|
|
|
run.scheduleOnce('afterRender', this, 'updateDimensions');
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.on('didInsertElement')
|
|
|
|
.cancelOn('willDestroyElement')
|
|
|
|
.drop(),
|
|
|
|
});
|