10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-08-26 06:01:49 +02:00

Revert "Combine all basis for statistics"

This reverts commit 09ad520fce3d6cabe317f5677d46fd2af8f796d2.
This commit is contained in:
Mickaël Véril 2020-01-13 10:13:19 +01:00
parent 10ad157c04
commit 5d5503c075

View File

@ -156,7 +156,7 @@ draft: false
var refstr = $("#sel_ref option:selected").val()
var sdatdic = new Map()
for (const d of window.filtData) {
const key = JSON.stringify([d.code, d.method.name, d.DOI.string])
const key = JSON.stringify([d.code, d.method, d.DOI.string])
if (!(sdatdic.has(key))) {
sdatdic.set(key, new Map())
}
@ -186,7 +186,7 @@ draft: false
row = $("<tr/>")
key = JSON.parse(keystr)
key.shift()
//Reflect.setPrototypeOf(key[0], method.prototype)
Reflect.setPrototypeOf(key[0], method.prototype)
//Reflect.setPrototypeOf(key[1], DOI.prototype)
for (const [i,el] of key.entries()) {
var td = $("<td/>")
@ -272,11 +272,11 @@ draft: false
})
await window.doiCache.addRange(window.filtData.map((d) => d.DOI.string))
$(sel_ref).empty()
for (const el of uniq(window.filtData.map(d => [d.code, d.method.name, d.DOI.string]))) {
for (const el of uniq(window.filtData.map(d => [d.code, d.method, d.DOI.string]))) {
op = $("<option/>", {
value: JSON.stringify(el)
}).text(el[1])
if (el[1].includes("TBE")) {
if (el[1].name.includes("TBE")) {
$(sel_ref).prepend(op)
}
else {