]> git.cworth.org Git - zombocom-ai/blobdiff - index.html
Add dependencies on express-session and session-file-store
[zombocom-ai] / index.html
index f88dd5bf6d15a320fec0cb3daa78773863a62d85..f5eaea05170672ac01fc4f018f014223c6c2a8f7 100644 (file)
@@ -115,6 +115,7 @@ mute.addEventListener("click", () => {
     const safety= document.querySelector("#safety");
 
     const spinner = document.querySelector("#spinner");
+    var spinner_timeout;
 
     comment_form.addEventListener('submit', function(e) {
         e.preventDefault();
@@ -142,24 +143,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;
     });