-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
92 lines (90 loc) · 2.95 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>测试页面</title>
</head>
<body>
<div id="entry-buttons">
<button id="use-preset-useBuiltIns-entry">test-useBuiltIns-entry</button>
<br />
<br />
<button id="use-preset-useBuiltIns-usage">test-useBuiltIns-usage</button>
<br />
<br />
<button id="use-preset-useBuiltIns-false">test-useBuiltIns-false</button>
<br />
<br />
<button id="use-babel-plugin-transform-runtime">
test-use-babel-plugin-transform-runtime
</button>
</div>
<script>
(function () {
var isLoading = false;
var currentTestModuleScriptId = "";
function loadScript(scriptUrl) {
if (isLoading) {
return;
}
isLoading = true;
var script = document.createElement("script");
currentTestModuleScriptId = +new Date() + "";
script.id = currentTestModuleScriptId;
script.onload = function () {
//do stuff with the script
setTimeout(function () {
isLoading = false;
}, 2000);
};
script.src = scriptUrl;
document.head.appendChild(script); //or something of the likes
}
function cleanPrevTestModuleScript() {
if (currentTestModuleScriptId.length === 0) {
return;
}
var prevTestModuleScriptElement = document.getElementById(
currentTestModuleScriptId
);
if (prevTestModuleScriptElement) {
prevTestModuleScriptElement.remove();
}
}
function cleanPrevTestModuleResult() {
var titleElements = document.getElementsByTagName("h1");
if (titleElements) {
titleElements = Array.prototype.slice.call(titleElements);
if (titleElements.length !== 0) {
for (var i = 0; i < titleElements.length; i++) {
titleElements[i].remove();
}
}
}
var preElements = document.getElementsByTagName("pre");
if (preElements) {
preElements = Array.prototype.slice.call(preElements);
if (preElements.length !== 0) {
for (var x = 0; x < preElements.length; x++) {
preElements[x].remove();
}
}
}
}
document
.getElementById("entry-buttons")
.addEventListener("click", function (e) {
if (isLoading) {
console.log("please wait prev test completed");
return;
}
cleanPrevTestModuleScript();
cleanPrevTestModuleResult();
loadScript("./" + e.target.id + "/dist/main.js");
});
})();
</script>
</body>
</html>