This commit is contained in:
baiobelfer 2025-04-02 14:45:04 +02:00
commit 9a85838e3f
3 changed files with 70 additions and 0 deletions

3
data/data.json Normal file
View File

@ -0,0 +1,3 @@
{
"name":"Jan"
}

15
index.html Normal file
View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="js/script.js" defer></script>
</head>
<body>
<div id="ele">hello</div>
</body>
</html>

52
js/script.js Normal file
View File

@ -0,0 +1,52 @@
const el = document.querySelector('#ele');
function parse(data) {
return new Promise((resolve, reject) => {
const name = data.name;
if (!name || !['Jan', 'Zuzia', 'Jakub'].includes(name)) {
reject(new Error('Invalid name in JSON'));
} else {
resolve(name);
}
});
}
function delay(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
function f1 (url='./data/data.json') {
return fetch (url)
.then( (res) => {
if (!res.ok) {
throw new Error(`HTTP error! status: ${res.status}`);
}
return res.json();
})
.then ( (data) => {
return parse(data);
// el.textContent = parse(data);
console.log ("ok");
})
.then((name) => {
// Dodajemy opóźnienie przed aktualizacją treści elementu
return delay(5000).then(() => name); // Opóźnienie 2 sekundy
})
.then ((name)=>{
console.log("5s");
el.textContent = name;
})
.catch(error => {
console.error('Error http request or parsing JSON:', error);
});
}
f1()