diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-02-02 23:15:55 +0100 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-02-02 23:21:08 +0100 |
commit | af7627d346725c974b012df8eb6ebc2a630adf4c (patch) | |
tree | 43002e58445afe7274a2217ef6ebda481024e54b /web/pw-server/src/routes | |
parent | db45cea37e8070e1572cdc25121c46022780f51d (diff) | |
download | planetwars.dev-af7627d346725c974b012df8eb6ebc2a630adf4c.tar.xz planetwars.dev-af7627d346725c974b012df8eb6ebc2a630adf4c.zip |
use ace editor for code editing
Diffstat (limited to 'web/pw-server/src/routes')
-rw-r--r-- | web/pw-server/src/routes/index.svelte | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/web/pw-server/src/routes/index.svelte b/web/pw-server/src/routes/index.svelte index a2a2e61..0db994c 100644 --- a/web/pw-server/src/routes/index.svelte +++ b/web/pw-server/src/routes/index.svelte @@ -1,17 +1,26 @@ <script lang="ts"> import { goto } from "$app/navigation"; + import { onMount } from "svelte"; - let code = ""; + let editor; + + onMount(async () => { + const ace = await import("ace-builds"); + editor = ace.edit("editor"); + }); async function submitCode() { - console.log("click"); + if (editor === undefined) { + return; + } + let response = await fetch("/api/submit_bot", { method: "POST", headers: { "Content-Type": "application/json", }, body: JSON.stringify({ - code: code, + code: editor.getValue(), }), }); @@ -26,5 +35,13 @@ </script> <h1>Planetwars</h1> -<textarea bind:value={code} /> +<div id="editor" /> <button on:click={submitCode}>Submit</button> + +<style scoped> + #editor { + width: 100%; + max-width: 800px; + height: 600px; + } +</style> |