serg155alternate 2 anos atrás
pai
commit
6f4bcc7d85
3 arquivos alterados com 59 adições e 21 exclusões
  1. 4 1
      HW13 promise hell/script.js
  2. 17 20
      HW14 await paradise/script.js
  3. 38 0
      HW15 generator/script.js

+ 4 - 1
HW13 promise hell/script.js

@@ -1 +1,4 @@
-//Closures and scopes
+//Closures and scopes - () => alert('WAS NO HOME'), console.log('LOOK AT NEXT HW14')
+//if(HW13){
+///////}
+

+ 17 - 20
HW14 await paradise/script.js

@@ -1,4 +1,4 @@
-//Chat Homework
+//Chat Homework  http://chat.serg15577330.fe.a-level.com.ua/
 
 function dataToDataTimeLocal(date) {
     let timeStamp = date.getTime();
@@ -7,7 +7,6 @@ function dataToDataTimeLocal(date) {
     return new Date(localTime).toISOString().slice(0, -1);
 }
 
-
 let message = document.querySelector('#message');
 let nick = document.querySelector('#nickname');
 let btn = document.querySelector('.btn');
@@ -138,21 +137,19 @@ function readMessage(msg) {
 //Stage 6
 //Прогуглить и разобраться с fetch и заменить внутренности jsonPost на код, использующий fetch вместо XMLHttpRequest. 
 
-
-function jsonPost(url, data) {
-    return new Promise((resolve, reject) => {
-        var x = new XMLHttpRequest();
-        x.onerror = () => reject(new Error('jsonPost failed'))
-        //x.setRequestHeader('Content-Type', 'application/json');
-        x.open("POST", url, true);
-        x.send(JSON.stringify(data))
-
-        x.onreadystatechange = () => {
-            if (x.readyState == XMLHttpRequest.DONE && x.status == 200) {
-                resolve(JSON.parse(x.responseText))
-            } else if (x.status != 200) {
-                reject(new Error('status is not 200'))
-            }
-        }
-    })
-}
+async function jsonPost(url, data) {
+    let response = await fetch(url, {
+        method: "POST",
+        headers: {
+          'Content-Type': 'application/json'
+        },
+        body: JSON.stringify(data)
+      });
+      console.log(response);
+    if (response.ok) {
+        let json = await response.json();
+        return json;
+    } else {
+        return new Error('jsonPost failed'+ response.status);
+    }   
+}

+ 38 - 0
HW15 generator/script.js

@@ -1 +1,39 @@
 //Closures and scopes
+
+/* async function jsonPost(url, data) {
+    let response = await fetch(url, {
+        method: "POST",
+        headers: {
+          'Content-Type': 'application/json'
+        },
+        body: JSON.stringify(data)
+      });
+      console.log(response);
+    if (response.ok) {
+        console.log('work')
+        let json = await response.json();
+        return json;
+    } else {
+         new Error('jsonPost failed'+ response.status);
+    }   
+} */
+
+function jsonPost(url, data) {
+    return new Promise((resolve, reject) => {
+        var x = new XMLHttpRequest();
+        x.onerror = () => reject(new Error('jsonPost failed'))
+        //x.setRequestHeader('Content-Type', 'application/json');
+        x.open("POST", url, true);
+        x.send(JSON.stringify(data))
+
+        x.onreadystatechange = () => {
+            if (x.readyState == XMLHttpRequest.DONE && x.status == 200) {
+                resolve(JSON.parse(x.responseText))
+            } else if (x.status != 200) {
+                reject(new Error('status is not 200'))
+            }
+        }
+    })
+}
+jsonPost("http://students.a-level.com.ua:10012", {func: 'addMessage', nick: "HellWords", message: 'AHHAAAH'}).then(res => console.log(res)
+)