-
Notifications
You must be signed in to change notification settings - Fork 18
/
correlations_page.js
139 lines (118 loc) · 3.53 KB
/
correlations_page.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
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");
let crashStatsLink = document.getElementById("crash_stats_link");
crashStatsLink.href =
"https://crash-stats.mozilla.org/signature/?signature=" +
getOption("signature") +
"&release_channel=" +
getOption("channel") +
"&product=" +
getOption("product") +
"#correlations";
let preElem = document.getElementById("correlations_text");
correlations.text(preElem, signature, channel, product);
let svgElem = document.getElementById("correlations_image");
correlations.graph(svgElem, signature, channel, product);
}
function updateAnalysisDate() {
correlations
.getAnalysisDate(getOption("product"))
.then((date) => (document.getElementById("date").textContent = date));
}
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);
updateAnalysisDate();
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 () {
updateAnalysisDate();
getCorrelations();
})
.catch(function (err) {
console.error(err);
});