{
let svg = d3
.create('svg')
.attr('height', dimension * data.length)
.attr('width', 800);
data.forEach(function(d, i) {
svg
.append('defs')
.append('pattern')
.attr('id', 'n_' + i)
.attr('x', 0)
.attr('y', 0)
.attr('height', pattern_dimension)
.attr('width', pattern_dimension)
.attr('patternUnits', "userSpaceOnUse")
.append('image')
.attr(
'xlink:href',
"https://raw.githubusercontent.com/infowetrust/albumcolors/master/SVG/" +
d.Filename
)
.attr('x', 0)
.attr('y', 0)
.attr('height', pattern_dimension)
.attr('width', pattern_dimension);
svg
.append('rect')
.attr('x', 2)
.attr(
'y',
i * dimension + (parseInt(d.Filename.substring(4, 6)) - 1) * 100
)
.attr('height', dimension)
.attr('width', 600)
.attr('fill', `url(#n_${i})`);
svg
.append('a')
.attr(
'xlink:href',
"https://github.com/infowetrust/albumcolors/blob/master/SVG/" +
d.Filename
)
.attr('target', '_blank')
.append('text')
.attr('x', 610)
.attr(
'y',
i * dimension + (parseInt(d.Filename.substring(4, 6)) - 1) * 100 + 20
)
.text(d.Filename + " 🔗")
.style('font-family', 'sans-serif')
.style('font-size', '15px');
});
return svg.node();
}