-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·67 lines (65 loc) · 1.71 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
<!DOCTYPE html>
<html>
<head>
<title>BACON Solver</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
input {
padding:1em;
margin:1em;
}
main {
display: flex;
align-items: flex-center;
flex-flow: column;
}
main * {
margin: auto;
}
@media only screen and (min-width: 900px) {
main {
flex-flow: row;
}
}
</style>
<link rel="stylesheet" href="../style.css" />
<script defer type="module" src="../menu.js#nomenu"></script>
</head>
<body>
<header><h1>BACON Solver</h1></header>
<main>
<form>
<input type="text" placeholder="Identifiant (ISBN, ISSN)" id="user_search">
<input id="validate" type="button" value="Valider">
</form>
<script type="module">
import { baconIdToKbart } from "./bacon.js"
function output(filename, data, type) {
var a = window.document.createElement('a');
a.setAttribute("target","_blank");
a.href = window.URL.createObjectURL(new Blob([data], {type: type}));
a.download = filename;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
}
document.querySelector("#validate").addEventListener("click", async (event) => {
event.target.setAttribute("disabled",true);
let userInput = document.querySelector("#user_search").value;
userInput = [userInput.split(/,|;|\n/)[0]];
let kbart = await baconIdToKbart(userInput);
event.target.removeAttribute("disabled");
document.querySelector("#user_search").value = "";
if (kbart.errors.length == 1) {
alert("Pas de résultat :(");
} else {
document.location.href = kbart.kbart_lines[1].split("\t")[9];
}
});
</script>
</main>
<footer>
</footer>
</body>
</html>