fix opponent selection
This commit is contained in:
parent
af04709fe1
commit
47ec2c6721
2 changed files with 8 additions and 7 deletions
|
@ -3,12 +3,9 @@
|
|||
import Select from "svelte-select";
|
||||
|
||||
let availableBots: object[] = [];
|
||||
let selectedOpponent = "simplebot";
|
||||
let selectedOpponent = undefined;
|
||||
let botName: string | undefined = undefined;
|
||||
|
||||
const optionIdentifier = "name";
|
||||
const labelIdentifier = "name";
|
||||
|
||||
onMount(async () => {
|
||||
const res = await fetch("/api/bots", {
|
||||
headers: {
|
||||
|
@ -18,14 +15,16 @@
|
|||
|
||||
if (res.ok) {
|
||||
availableBots = await res.json();
|
||||
console.log(availableBots);
|
||||
selectedOpponent = availableBots.find((b) => b["name"] === "simplebot");
|
||||
}
|
||||
});
|
||||
|
||||
const dispatch = createEventDispatcher();
|
||||
|
||||
function submitBot() {
|
||||
dispatch("submitBot");
|
||||
dispatch("submitBot", {
|
||||
opponentName: selectedOpponent["name"],
|
||||
});
|
||||
}
|
||||
|
||||
function saveBot() {
|
||||
|
|
|
@ -38,7 +38,8 @@
|
|||
(editSession as any).on("change", debounce(saveCode, 2000));
|
||||
}
|
||||
|
||||
async function submitBot() {
|
||||
async function submitBot(e: CustomEvent) {
|
||||
console.log(e.detail);
|
||||
let response = await fetch("/api/submit_bot", {
|
||||
method: "POST",
|
||||
headers: {
|
||||
|
@ -46,6 +47,7 @@
|
|||
},
|
||||
body: JSON.stringify({
|
||||
code: editSession.getDocument().getValue(),
|
||||
opponent_name: e.detail["opponentName"],
|
||||
}),
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue