Merge branch 'master' of git.inpt.fr:tocard-inc/enseeiht/projet-web

This commit is contained in:
Laureηt 2022-05-13 14:27:21 +02:00
commit 211bbb3cb0
No known key found for this signature in database
GPG key ID: D88C6B294FD40994
2 changed files with 24 additions and 30 deletions

View file

@ -15,6 +15,7 @@
document.getElementById("show-signup").checked = s;
}
</script>
<script type="text/javascript" src="pixels.js"></script>
</head>
<body>
@ -806,7 +807,6 @@
</tr>
</table>
</div>
<script type="text/javascript" src="pixels.js"></script>
</body>
</html>
</html>

View file

@ -1,31 +1,25 @@
debugger;
var xmlhttp = new XMLHttpRequest();
var url = "http://localhost:8080/api/pixel";
function readTextFile(file)
{
var rawFile = new XMLHttpRequest();
rawFile.open("GET", file, false);
rawFile.onreadystatechange = function ()
{
if(rawFile.readyState === 4)
{
if(rawFile.status === 200 || rawFile.status == 0)
{
var allText = rawFile.responseText;
alert(allText);
}
}
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var json = JSON.parse(this.responseText);
setPixels(json);
}
};
xmlhttp.open("GET", url, true);
xmlhttp.send();
function setPixels(json) {
console.log(json);
var table = document.getElementById("pixelTable");
var num_columns = table.rows[0].cells.length;
for (i in json) {
var pixel = json[i]
console.log(pixel)
var cell = table.rows[Math.floor((pixel.id - 1) / num_columns)].cells[(pixel.id - 1) % num_columns];
cell.style.background = pixel.color;
}
rawFile.send(null);
}
// fetch("https://URL/file").then((r)=>{r.text().then((d)=>{let json = d})})
const json = readTextFile("test.json");
const obj = JSON.parse(json);
var table = document.getElementById("pixelTable");
var num_columns = table.rows[0].cells.length;
for (pixel in obj) {
var cell = table.rows[Math.floor(pixel.id / num_columns)].cells[pixel.id % num_columns];
cell.style.background = "#f00";
}