]> git.cworth.org Git - zombocom-ai/blobdiff - index.html
Add code to submit image generation instructions to the server
[zombocom-ai] / index.html
index 7cc2c6cd9e4d5ca0952ccdf5afbea7ab83907c48..f438b60f3ac1f53abc9350715812caea641308f0 100644 (file)
 </head>
 
 <body>
-  <div align="center">
+  <div id="content">
+
+    <div id="header" align="center">
+      <p>
+        <br>
+      </p>
+
+      <p>
+        <img src="/zombocom.png" alt="Zombocom" longdesc="http://zombo.com" width="1199" height="217">
+      </p>
+    </div>
+
+    <p>
+      Welcome to Zombocom. You can do anything at Zombocom, anything at
+      all. The only limit is yourself!
+    </p>
+
     <p>
-      <br>
+      <form action="" id="zombo-form">
+        <div class="form-row large">
+          <label for="prompt">
+            What do you imagine?
+          </label>
+          <textarea id="prompt" rows="4" width="100%" autocomplete="off" required></textarea>
+        </div>
+
+        <div class="form-row small left">
+          <div class="labeled-row">
+            <label for="code">
+              Numeric code:
+            </label>
+            <input id="code" type="text" autocomplete="off" placeholder="(Leave blank for random)" />
+          </div>
+        </div>
+
+        <div class="form-row small right">
+          <button id="safety" class="right" type="button">Safety prompt</button>
+        </div>
+
+        <div class="form-row large">
+          <button id="generate" type="submit">Make the infinite possible</button>
+        </div>
+      </form>
     </p>
 
+    <ul id="comments">
+    </ul>
+
     <p>
-      <img src="/zombocom.png" alt="Zombocom" longdesc="http://zombo.com" width="1199" height="217">
+      <form action="" id="comment-form">
+        <input id="comment" type="text" style="width:100%" autocomplete="off" placeholder="Add a comment" />
+      </form>
     </p>
-  </div>
 
-  <p>
-    Welcome to Zombocom.
-  </p>
-
-  <p>
-    You can do anything at Zombcom, anything at all.
-  </p>
-
-  <p>
-    The only limit is yourself.
-  </p>
-
-  <p>
-    What do you imagine?
-
-    <form id="form" action="">
-      <input id="prompt" autocomplete="off" />
-      <input id="code" />
-      <button>Safety prompt</button>
-      <button>Make the infinite possible</button>
-    </form>
-  </p>
-
-  <div align="center">
-   <div class="animate-flicker">
-     <p>
-       <img src="/pngwheel.png" class="rotate thefade">
-     </p>
-   </div>
-  </div>
+    <div align="center">
+      <div class="animate-flicker">
+        <p>
+          <img src="/pngwheel.png" class="rotate thefade">
+        </p>
+      </div>
+    </div>
 
-  <audio loop="" src="/zombo_words.mp3" type="audio/mpeg"></audio>
-  <button id="button" class="fade">
-    <div>🔊</div>
-    <script>
-const button = document.querySelector("#button");
-const icon = document.querySelector("#button > div");
+    <audio loop="" src="/zombo_words.mp3" type="audio/mpeg"></audio>
+    <button id="mute" class="fade volume">
+      <div>🔊</div>
+      <script>
+const mute = document.querySelector("#mute");
+const icon = document.querySelector("#mute > div");
 const audio = document.querySelector("audio");
 
-button.addEventListener("click", () => {
+mute.addEventListener("click", () => {
   if (audio.paused) {
       audio.volume = 0.2;
       audio.play();
@@ -69,10 +90,54 @@ button.addEventListener("click", () => {
       audio.pause();
       icon.innerHTML = "🔊";
   }
-  button.classList.add("fade");
+  mute.classList.add("fade");
 });
-    </script>
+      </script>
+
+    </button>
+
+  </div>
+
+  <script src="/socket.io/socket.io.js"></script>
+  <script>
+    var socket = io();
+
+    const comments = document.querySelector("#comments");
+    const comment_form = document.querySelector("#comment-form");
+    const comment = document.querySelector("#comment");
+
+    const zombo_form = document.querySelector("#zombo-form");
+    const prompt = document.querySelector("#prompt");
+    const code = document.querySelector("#code");
+
+    const safety= document.querySelector("#safety");
+
+    comment_form.addEventListener('submit', function(e) {
+        e.preventDefault();
+        if (comment.value) {
+            socket.emit('comment', comment.value);
+            comment.value = '';
+        }
+    });
+
+    socket.on('comment', function(msg) {
+        var item = document.createElement('li');
+        item.textContent = msg;
+        comments.appendChild(item);
+    });
+
+    zombo_form.addEventListener('submit', function(e) {
+        e.preventDefault();
+        socket.emit('generate', {"prompt": prompt.value, "code": code.value});
+        prompt.value = '';
+    });
+
+    // TODO: Dynamically generate many different prompts here
+    safety.addEventListener("click", () => {
+        prompt.value = "Matte painting of a Samurai warrior";
+        return false;
+    });
 
-  </button>
+  </script>
 </body>
 </html>