blob: bd9a597dcbf2d03c5a98b070ee4b08756ea7fab4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
|
<script lang="ts">
import { goto } from "$app/navigation";
import Visualizer from "$lib/components/Visualizer.svelte";
import { onMount } from "svelte";
import "./style.css";
let editor;
let matches = [];
let selectedMatchId: string | undefined = undefined;
let selectedMatchLog: string | undefined = undefined;
onMount(async () => {
await load_editor();
});
async function load_editor() {
const ace = await import("ace-builds");
const python_mode = await import("ace-builds/src-noconflict/mode-python");
const gh_theme = await import("ace-builds/src-noconflict/theme-github");
editor = ace.edit("editor");
editor.getSession().setMode(new python_mode.Mode());
editor.setTheme(gh_theme);
}
async function submitCode() {
if (editor === undefined) {
return;
}
let response = await fetch("/api/submit_bot", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
code: editor.getValue(),
}),
});
if (!response.ok) {
throw Error(response.statusText);
}
let responseData = await response.json();
let matchId = responseData["match_id"];
// goto(`/submission_matches/${matchId}`);
matches.push({ matchId: matchId });
matches = matches;
}
async function selectMatch(matchId: string) {
console.log("showing match " + matchId);
let matchLog = await loadMatch(matchId);
selectedMatchId = matchId;
selectedMatchLog = matchLog;
}
async function loadMatch(matchId: string) {
const res = await fetch(`/api/submission_match_log/${matchId}`, {
headers: {
"Content-Type": "application/json",
},
});
let log = await res.text();
return log;
}
function selectEditor() {
selectedMatchId = undefined;
selectedMatchLog = undefined;
load_editor();
}
</script>
<div class="outer-container">
<div class="top-bar" />
<div class="container">
<div class="sidebar-left">
<div
class="sidebar-item"
class:selected={selectedMatchId === undefined}
on:click={selectEditor}
>
Editor
</div>
<ul class="match-list">
{#each matches as match}
<li class="match-card sidebar-item" on:click={() => selectMatch(match.matchId)}>
<div class="match-name">{match.matchId}</div>
</li>
{/each}
</ul>
</div>
<div class="editor-container">
{#if selectedMatchLog !== undefined}
<Visualizer matchLog={selectedMatchLog} />
{:else}
<div id="editor" />
{/if}
</div>
<div class="sidebar-right">
<button class="play-button" on:click={submitCode}>Submit</button>
</div>
</div>
</div>
<style lang="scss">
$bg-color: rgb(41, 41, 41);
.outer-container {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
}
.top-bar {
height: 40px;
background-color: $bg-color;
border-bottom: 1px solid;
}
.container {
display: flex;
flex-grow: 1;
}
.sidebar-left {
width: 240px;
background-color: $bg-color;
}
.sidebar-right {
width: 400px;
background-color: white;
border-left: 1px solid;
padding: 10px;
}
.editor-container {
flex-grow: 1;
overflow: hidden;
}
#editor {
width: 100%;
height: 100%;
}
.editor-container {
height: 100%;
}
.play-button {
padding: 8px 16px;
border-radius: 8px;
border: 0;
font-size: 18pt;
display: block;
margin: 20px auto;
background-color: lightgreen;
cursor: pointer;
}
.sidebar-item {
padding: 15px;
color: #eee;
}
.sidebar-item:hover {
background-color: #333;
}
.sidebar-item.selected {
background-color: #333;
}
.toolbar-editor {
padding: 15px;
color: #eee;
}
.match-list {
list-style: none;
color: #eee;
}
</style>
|