-
Notifications
You must be signed in to change notification settings - Fork 18
/
rerank.js
167 lines (140 loc) · 4.43 KB
/
rerank.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
let options = {
product: {
value: null,
type: "option",
},
channel: {
value: null,
type: "option",
},
signature: {
value: null,
type: "button",
},
};
function getOption(name) {
return options[name].value;
}
function getOptionType(name) {
return options[name].type;
}
function setOption(name, value) {
return (options[name].value = value);
}
let onLoad = new Promise(function (resolve, reject) {
window.onload = resolve;
});
function getCorrelations() {
if (!getOption("channel") || !getOption("signature")) {
return;
}
let url = new URL(location.href);
url.search =
"?product=" +
getOption("product") +
"&channel=" +
getOption("channel") +
"&signature=" +
getOption("signature");
history.replaceState({}, document.title, url.href);
let signature = decodeURIComponent(getOption("signature"));
let channel = getOption("channel");
let product = getOption("product");
document.getElementById("channel_from").textContent = channel;
let table = document.getElementById("rerank_table");
while (table.rows.length > 1) {
table.deleteRow(table.rows.length - 1);
}
let preElem = document.getElementById("rerank_text");
correlations
.rerank(preElem, signature, channel, "release", product)
.then((entries) =>
entries.forEach((entry) => {
let row = table.insertRow(table.rows.length);
let property = row.insertCell(0);
property.appendChild(document.createTextNode(entry.property));
let in_signature = row.insertCell(1);
in_signature.appendChild(
document.createTextNode(entry.in_signature + " %")
);
let in_channel = row.insertCell(2);
in_channel.appendChild(
document.createTextNode(
correlations.toPercentage(entry.in_channel) + " %"
)
);
let in_channel_target = row.insertCell(3);
in_channel_target.appendChild(
document.createTextNode(
correlations.toPercentage(entry.in_channel_target) + " %"
)
);
let channel_multiplier = entry.in_channel_target / entry.in_channel;
let channel_multiplier_cell = row.insertCell(4);
let channel_multiplier_span = document.createElement("span");
channel_multiplier_span.textContent =
channel_multiplier.toFixed(2) + "x";
if (channel_multiplier < 1) {
channel_multiplier_span.style.color = "green";
} else {
channel_multiplier_span.style.color = "red";
}
channel_multiplier_cell.appendChild(channel_multiplier_span);
})
);
}
onLoad
.then(function () {
let queryVars = new URL(location.href).search.substring(1).split("&");
Object.keys(options).forEach(function (optionName) {
let optionType = getOptionType(optionName);
let elem = document.getElementById(optionName);
for (let queryVar of queryVars) {
if (queryVar.startsWith(optionName + "=")) {
let option = queryVar.substring((optionName + "=").length).trim();
setOption(optionName, option);
}
}
if (optionType === "select") {
if (getOption(optionName)) {
elem.checked = getOption(optionName);
}
setOption(optionName, elem.checked);
elem.onchange = function () {
setOption(optionName, elem.checked);
getCorrelations();
};
} else if (optionType === "option") {
if (getOption(optionName)) {
for (let i = 0; i < elem.options.length; i++) {
if (elem.options[i].value === getOption(optionName)) {
elem.selectedIndex = i;
break;
}
}
}
setOption(optionName, elem.options[elem.selectedIndex].value);
elem.onchange = function () {
setOption(optionName, elem.options[elem.selectedIndex].value);
getCorrelations();
};
} else if (optionType === "button") {
if (getOption(optionName)) {
elem.value = getOption(optionName);
}
setOption(optionName, elem.value.trim());
document.getElementById(optionName + "Button").onclick = function () {
setOption(optionName, elem.value.trim());
getCorrelations();
};
} else {
throw new Error("Unexpected option type.");
}
});
})
.then(function () {
getCorrelations();
})
.catch(function (err) {
console.error(err);
});