challenge submission web socket test

This commit is contained in:
Mateusz Tylka 2023-04-18 10:22:35 +02:00
parent c1bb79d0cd
commit ba0cdb944e

View File

@ -33,6 +33,29 @@ const challengeSubmission = (
setLoading(true);
const processUrl = API.replace('/api', '');
window.location.replace(`${processUrl}/open-view-progress/${data}#form`);
// console.log(data);
// fetch(`${API}/view-progress-with-web-sockets/${data}`)
// .then((response) => response.text())
// .then((data) => {
// console.log(data);
// });
// const viewLog = () => {
// fetch(`${API}/view-progress-log/${data}`)
// .then((response) => response.text())
// .then((data) => {
// console.log(data);
// });
// };
// for (let i = 0; i < 20; i++) {
// setInterval(() => {
// viewLog();
// }, 1000);
// }
// clearInterval();
});
};