viewof demo_viz = {
let container = html`<div>`;
var gap_between_lines = 40,
branch_steepness = 15,
shunt_to_right = 40;
let data = demo_data;
let demo_margin = { top: 15, bottom: 30 };
let data_length = 0;
demo_data.forEach(function(d, i) {
if (d.connected_titles) {
data_length = data_length + d.connected_titles.length;
} else {
data_length++;
}
});
let demo_height =
data_length * gap_between_lines + demo_margin.top + demo_margin.bottom;
var x = d3
.scaleLinear()
.domain([earliest_date, latest_date])
.range([0, width]);
var y = d3
.scaleLinear()
.domain([0, 200])
.range([demo_height, 0]);
var little_y = d3
.scaleLinear()
.domain([0, 5])
.range([40, 0]);
var svg = d3
.select(container)
.append("svg")
.attr("width", width)
.attr("height", demo_height);
svg
.append("g")
.attr('id', 'axis_g')
.call(d3.axisBottom(x).tickFormat(d3.format("d")));
svg
.select('#axis_g')
.selectAll('g.tick:first-of-type')
.remove();
svg
.select('#axis_g')
.select('path')
.remove();
function make_x_gridlines() {
return d3.axisBottom(x).ticks(15);
}
svg
.append("g")
.attr("class", "grid")
.attr("transform", "translate(0," + demo_height + ")")
.call(
make_x_gridlines()
.tickSize(-demo_height)
.tickFormat("")
);
var svg_graphs = svg
.append("g")
.attr('id', 'graph_group')
.attr('transform', 'translate(0,' + demo_margin.top + ')');
var line = d3
.line()
.defined(d => d.count !== null)
.x(function(d) {
return x(d.date);
})
.y(function(d) {
return little_y(d.count);
})
.curve(d3.curveBasis);
var nested_count = 0;
data.forEach(function(d, i) {
if ('connected_titles' in d) {
nested_count = nested_count + d['connected_titles'].length - 1;
d['connected_titles'].forEach(function(nested_d, nested_i) {
var horizontal_offset = shunt_to_right + nested_i * branch_steepness;
var vertical_offset =
(i + nested_i + nested_count - d['connected_titles'].length + 1) *
gap_between_lines;
var title_wrapper = svg_graphs
.append('g')
.attr('class', 'title_wrapper')
.attr('transform', 'translate(0,' + vertical_offset + ')');
title_wrapper
.append("path")
.attr('class', 'mf_line')
.attr('d', line(nested_d.timeseries_mf_restructured));
title_wrapper
.append("path")
.attr('class', 'hc_line')
.attr('d', line(nested_d.timeseries_hc_restructured));
if (nested_i != 0) {
var x1 = shunt_to_right + branch_steepness * (nested_i - 1),
x2 = shunt_to_right + branch_steepness * nested_i;
title_wrapper
.append('line')
.attr('class', 'connected_line')
.attr('x1', x1)
.attr('x2', x2)
.attr('y1', 0)
.attr('y2', gap_between_lines);
}
var title_nested_offset_wrapper = title_wrapper
.append('g')
.attr('class', 'title_nested_offset_wrapper')
.attr('transform', 'translate(' + horizontal_offset + ',0)');
var title_text = title_nested_offset_wrapper
.append('text')
.attr('class', 'title_name_wrapper')
.attr('transform', 'translate(8,53)');
title_text
.append('tspan')
.attr('class', 'title_name')
.text(" " + nested_d["Publication title"]);
if (nested_i != 0) {
title_nested_offset_wrapper
.append('line')
.attr('class', 'connected_line')
.attr('x1', 0)
.attr('x2', width - horizontal_offset)
.attr('y1', 0)
.attr('y2', 0)
.attr('transform', 'translate(0,40)');
} else {
title_nested_offset_wrapper
.append('line')
.attr('class', 'connected_line')
.attr('x1', -shunt_to_right)
.attr('x2', width - horizontal_offset)
.attr('y1', 0)
.attr('y2', 0)
.attr('transform', 'translate(0,40)');
}
});
} else {
var title_wrapper = svg_graphs
.append('g')
.attr('class', 'title_wrapper')
.attr(
'transform',
'translate(0,' + (i + nested_count) * gap_between_lines + ')'
);
title_wrapper
.append("path")
.attr('class', 'mf_line')
.attr('d', line(d.timeseries_mf_restructured));
title_wrapper
.append("path")
.attr('class', 'hc_line')
.attr('d', line(d.timeseries_hc_restructured));
var title_text = title_wrapper
.append('text')
.attr('class', 'title_name_wrapper')
.attr('transform', 'translate(0,53)');
title_text
.append('tspan')
.attr('class', 'title_name')
.text(" " + d["Publication title"]);
title_wrapper
.append('line')
.attr('class', 'connected_line')
.attr('x1', 0)
.attr('x2', width)
.attr('y1', 0)
.attr('y2', 0)
.attr('transform', 'translate(0,40)');
}
});
return container;
}