import * as d3 from "d3";
import palette from "../palette";
import dataTransform from "../dataTransform";
/**
* Reusable Stacked Bar Chart Component
*
* @module
*/
export default function() {
/* Default Properties */
let width = 100;
let height = 300;
let transition = { ease: d3.easeBounce, duration: 500 };
let colors = palette.categorical(3);
let dispatch = d3.dispatch("customValueMouseOver", "customValueMouseOut", "customValueClick", "customSeriesMouseOver", "customSeriesMouseOut", "customSeriesClick");
let yScale;
let colorScale;
let classed = "barsStacked";
/**
* Initialise Data and Scales
*
* @private
* @param {Array} data - Chart data.
*/
function init(data) {
const { columnKeys, rowTotalsMax } = dataTransform(data).summary();
const valueExtent = [0, rowTotalsMax];
if (typeof colorScale === "undefined") {
colorScale = d3.scaleOrdinal()
.domain(columnKeys)
.range(colors);
}
if (typeof yScale === "undefined") {
yScale = d3.scaleLinear()
.domain(valueExtent)
.range([0, height])
.nice();
}
}
/**
* Constructor
*
* @constructor
* @alias barsStacked
* @param {d3.selection} selection - The chart holder D3 selection.
*/
function my(selection) {
init(selection.data());
selection.each(function() {
// Stack Generator
const stacker = function(data) {
let series = [];
let y0 = 0;
let y1 = 0;
data.forEach(function(d, i) {
y1 = y0 + d.value;
series[i] = {
key: d.key,
value: d.value,
y0: y0,
y1: y1
};
y0 += d.value;
});
return series;
};
// Update bar group
const barGroup = d3.select(this);
barGroup
.classed(classed, true)
.attr("id", function(d) { return d.key; })
.on("mouseover", function(d) { dispatch.call("customSeriesMouseOver", this, d); })
.on("click", function(d) { dispatch.call("customSeriesClick", this, d); });
// Add bars to group
const bars = barGroup.selectAll(".bar")
.data(function(d) { return stacker(d.values); });
bars.enter()
.append("rect")
.classed("bar", true)
.attr("width", width)
.attr("x", 0)
.attr("y", height)
.attr("rx", 0)
.attr("ry", 0)
.attr("height", 0)
.attr("fill", function(d) { return colorScale(d.key); })
.on("mouseover", function(d) { dispatch.call("customValueMouseOver", this, d); })
.on("click", function(d) { dispatch.call("customValueClick", this, d); })
.merge(bars)
.transition()
.ease(transition.ease)
.duration(transition.duration)
.attr("width", width)
.attr("x", 0)
.attr("y", function(d) { return height - yScale(d.y1); })
.attr("height", function(d) { return yScale(d.value); });
bars.exit()
.transition()
.style("opacity", 0)
.remove();
});
}
/**
* Width Getter / Setter
*
* @param {number} _v - Width in px.
* @returns {*}
*/
my.width = function(_v) {
if (!arguments.length) return width;
width = _v;
return this;
};
/**
* Height Getter / Setter
*
* @param {number} _v - Height in px.
* @returns {*}
*/
my.height = function(_v) {
if (!arguments.length) return height;
height = _v;
return this;
};
/**
* Color Scale Getter / Setter
*
* @param {d3.scale} _v - D3 color scale.
* @returns {*}
*/
my.colorScale = function(_v) {
if (!arguments.length) return colorScale;
colorScale = _v;
return my;
};
/**
* Colors Getter / Setter
*
* @param {Array} _v - Array of colours used by color scale.
* @returns {*}
*/
my.colors = function(_v) {
if (!arguments.length) return colors;
colors = _v;
return this;
};
/**
* Y Scale Getter / Setter
*
* @param {d3.scale} _v - D3 scale.
* @returns {*}
*/
my.yScale = function(_v) {
if (!arguments.length) return yScale;
yScale = _v;
return my;
};
/**
* Dispatch Getter / Setter
*
* @param {d3.dispatch} _v - Dispatch event handler.
* @returns {*}
*/
my.dispatch = function(_v) {
if (!arguments.length) return dispatch();
dispatch = _v;
return this;
};
/**
* Dispatch On Getter
*
* @returns {*}
*/
my.on = function() {
let value = dispatch.on.apply(dispatch, arguments);
return value === dispatch ? my : value;
};
return my;
}