]> git.cworth.org Git - zombocom-ai/blobdiff - index.html
Fix class of comments element
[zombocom-ai] / index.html
index f88dd5bf6d15a320fec0cb3daa78773863a62d85..d61e2d06e5d9f519db26b5e10adb67b98c6abfe2 100644 (file)
       all. The only limit is yourself!
     </p>
 
+    <dialog id="name-dialog">
+      <form method="dialog">
+        <p>
+          <label>Your name:
+            <input id="name" type="text" autocomplete="off">
+          </label>
+        </p>
+        <div>
+          <button value="default">OK</button>
+        </div>
+      </form>
+    </dialog>
+
     <p>
       <div id="spinner" align="center">
         <div class="animate-flicker">
@@ -64,8 +77,8 @@
     <div id="images">
     </div>
 
-    <ul id="comments">
-    </ul>
+    <dl id="comments" class="comments">
+    </dl>
 
     <p>
       <form action="" id="comment-form">
@@ -74,7 +87,7 @@
     </p>
 
     <audio loop="" src="/zombo_words.mp3" type="audio/mpeg"></audio>
-    <button id="mute" class="fade volume">
+    <button id="mute" class="menu-button fade volume">
       <div>🔊</div>
       <script>
 const mute = document.querySelector("#mute");
@@ -96,25 +109,46 @@ mute.addEventListener("click", () => {
 
     </button>
 
+    <button id="profile" class="menu-button">
+      <div>👤</div>
+    </button>
+
   </div>
 
   <script src="/socket.io/socket.io.js"></script>
   <script>
     var socket = io();
 
+    const name = document.querySelector("#name");
+    const name_dialog = document.querySelector("#name-dialog");
     const images = document.querySelector("#images");
-
     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");
-
     const spinner = document.querySelector("#spinner");
+    const profile = document.querySelector("#profile");
+    var spinner_timeout;
+
+    comment.addEventListener('focus', () => {
+        /* Do nothing if name is already set. */
+        if (name.value)
+            return;
+
+        /* Otherwise, bring up the modal dialog to set the name. */
+        name_dialog.showModal();
+    });
+
+    profile.addEventListener('click', () => {
+        name_dialog.showModal();
+    });
+
+    name_dialog.addEventListener('close', () => {
+        socket.emit('set-name', name.value);
+    });
 
     comment_form.addEventListener('submit', function(e) {
         e.preventDefault();
@@ -124,10 +158,23 @@ mute.addEventListener("click", () => {
         }
     });
 
-    socket.on('comment', function(msg) {
-        var item = document.createElement('li');
-        item.textContent = msg;
-        comments.appendChild(item);
+    socket.on('comment', function(comment) {
+        const dt = document.createElement('dt');
+        const dd = document.createElement('dd');
+        dt.textContent = comment.name + ':';
+        dd.textContent = comment.text;
+        comments.appendChild(dt);
+        comments.appendChild(dd);
+    });
+
+    socket.on('inform-name', (name) => {
+        console.log("Received inform-name event: " + name);
+        name.value = name;
+    });
+
+    socket.on('reset', () => {
+        images.replaceChildren();
+        comments.replaceChildren();
     });
 
     socket.on('image', (image) => {
@@ -142,24 +189,86 @@ mute.addEventListener("click", () => {
         images.prepend(figure);
     });
 
+    function hide_spinner() {
+        zombo_form.style.display = "grid";
+        spinner.style.display = "none";
+    }
+
     zombo_form.addEventListener('submit', function(e) {
         e.preventDefault();
         /* Hide the form and show spinner while generation is happening. */
         zombo_form.style.display = "none";
         spinner.style.display = "block";
+        spinner_timeout = setTimeout(hide_spinner, 60000);
         socket.emit('generate', {"prompt": prompt.value, "code": code.value});
         prompt.value = '';
     });
 
     socket.on('generation-done', () => {
         /* Re-display the form and hide spinner now that generation is over. */
-        zombo_form.style.display = "grid";
-        spinner.style.display = "none";
+        clearTimeout(spinner_timeout);
+        hide_spinner();
     });
 
-    // TODO: Dynamically generate many different prompts here
+    function random_from(items) {
+        return items[Math.floor(Math.random()*items.length)];
+    }
+
     safety.addEventListener("click", () => {
-        prompt.value = "Matte painting of a Samurai warrior";
+        const art_type = [
+            "A portrait of",
+            "A hyperrealistic photograph of",
+            "A matte painting of",
+            "Epic fantasy card art of",
+            "Professional oil painting of",
+            "An image of",
+            "A pencil sketch of",
+            "A watercolor of",
+        ];
+        const subject = [
+            " a modern home",
+            " crashing waves",
+            " a Porsche 911 Carrera",
+            " a Halo spartan",
+            " a cute cat",
+            " a mad scientist",
+            " an elfin princess",
+            " sci-fi buildings",
+            " pastel purple clouds",
+            " a Teenage Mutant Ninja Turtle",
+        ];
+        const scenery = [
+            " in tropical surroundings",
+            " in space",
+            " in an ocean storm",
+            " in a snowy forest",
+            " in a cardboard box",
+            " holding an axe",
+            " in an epic landscape",
+            " in a haunted forest",
+            " riding a motorbike",
+            " in a futuristic city at night",
+            " in a dystopian landscape, foggy",
+            " in the land of snow",
+            " that looks like a watermelon",
+            " on the streets of London at night with neon lights flashing",
+            " that is part octopus",
+            " melting into a puddle",
+        ];
+        const artist = [
+            ", unreal engine 5",
+            ", concept art",
+            ", graphic novel",
+            " by Vincent Van Gogh",
+            " by Claude Monet",
+            " by Johannes Vermeer",
+            ", fantasy art, neon fog",
+            ", epic lighting from above",
+            ", trending on artstation",
+        ];
+
+        prompt.value = random_from(art_type) + random_from(subject) +
+            random_from(scenery) + random_from(artist);
         return false;
     });