displaying histograms for each country and batchcode
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
class HistoDescrsProvider {
|
||||
|
||||
static getHistoDescrsForBatchcode(batchcode) {
|
||||
return fetch(`data/histograms/global/${batchcode}.json`)
|
||||
static getHistoDescrs(country, batchcode) {
|
||||
return fetch(`data/histograms/${country}/${batchcode}.json`)
|
||||
.then(response => response.json())
|
||||
.then(histoDescrs => {
|
||||
histoDescrs.histograms.sort((histoDescr1, histoDescr2) => histoDescr1.batchcodes.length - histoDescr2.batchcodes.length);
|
||||
|
||||
Reference in New Issue
Block a user