algorithm - Building a modular approach in JavaScript -


i have following code , matches requirements, however, not modular , not generic. example, might have hundred of stats objects. there way make more generic?

actually, in dataseries have 2 arrays of objects. , sorting them based on color (red, green). therefore, there 4 stats objects initialized.

var stats1 = {data: []} var stats2 = {data: []} var stats3 = {data: []} var stats4 = {data: []}   stats1.data.push(self.dataseries[0].data.filter(function (x) { return x.color == "green" })) stats2.data.push(self.dataseries[0].data.filter(function (x) { return x.color == "red" })) stats3.data.push(self.dataseries[1].data.filter(function (x) { return x.color == "green" })) stats4.data.push(self.dataseries[1].data.filter(function (x) { return x.color == "red" }))  a=[{ data: stats1.data[0] }, { data: stats2.data[0] }, { data: stats3.data[0] }, { data: stats4.data[0] }]; 

well if know number of data, you've got all:

var numberofdata = 4; var = []; (var = 0; < numberofdata; i++) {   var color = (i%2 === 0) ? 'green' : 'red';   var index = math.floor(i/2);   var stat = {data: []};   stat.data.push( self.dataseries[index].data.filter(function (x) { return x.color == color }) );   a.push( {data: stat.data[0] } ); } 

now looks creating useless stat.data array, if simplify code by:

var numberofdata = 4; var = []; (var = 0; < numberofdata; i++) {   var color = (i%2 === 0) ? 'green' : 'red';   var index = math.floor(i/2);   var d = self.dataseries[index].data.filter(function (x) { return x.color == color });   a.push( {data: d} ); } 

the resulting a array same in example in both cases.

update if have more colors, put them in array of colors , matching 1 using modulo:

var numberofdata = 4; var colors = ['green', 'red', 'blue', 'pink', 'rainbow'];  var = []; (var = 0; < numberofdata; i++) {   var color = colors[i%colors.length];   var index = math.floor(i/2);   var d = self.dataseries[index].data.filter(function (x) { return x.color == color });   a.push( {data: d} ); } 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -