Skip to content

Commit 6337a1d

Browse files
committed
add UI improvements, more helpful links, about ide version number tweaks
1 parent 61e6016 commit 6337a1d

File tree

5 files changed

+16
-19
lines changed

5 files changed

+16
-19
lines changed

index.html

+10-10
Original file line numberDiff line numberDiff line change
@@ -192,13 +192,16 @@
192192
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m1 1 4 4 4-4"/>
193193
</svg>
194194
</button>
195-
<div id="helpDropdown" class="hidden dropdown w-48">
195+
<div id="helpDropdown" class="hidden dropdown w-52">
196196
<ul class="py-2 text-base text-gray-700 dark:text-gray-200" aria-labelledby="dropdownDefaultButton">
197197
<li>
198-
<a href="https://chuck.stanford.edu/doc/reference" target="_blank" class="dropdownItem">ChucK Reference</a>
198+
<a href="https://chuck.stanford.edu/doc/reference" target="_blank" class="dropdownItem">ChucK API Reference</a>
199199
</li>
200200
<li>
201-
<a href="https://chuck.stanford.edu/doc" target="_blank" class="dropdownItem">Documentation</a>
201+
<a href="https://chuck.stanford.edu/webchuck/docs/" target="_blank" class="dropdownItem">WebChucK Docs</a>
202+
</li>
203+
<li>
204+
<a href="https://discord.gg/ENr3nurrx8" target="_blank" class="dropdownItem">Discord Community</a>
202205
</li>
203206

204207
<li class="divider dark:border-t-gray-400" data-content="GITHUB"></li>
@@ -209,13 +212,10 @@
209212
<a href="https://github.com/ccrma/webchuck-ide/issues/new" target="_blank" class="dropdownItem">Report an Issue</a>
210213
</li>
211214

212-
<li class="divider dark:border-t-gray-400" data-content="MORE"></li>
215+
<li class="divider dark:border-t-gray-400" data-content="ABOUT"></li>
213216
<li>
214217
<a href="https://chuck.stanford.edu/webchuck" target="_blank" class="dropdownItem">Learn WebChucK</a>
215218
</li>
216-
<li>
217-
<a href="https://discord.gg/ENr3nurrx8" target="_blank" class="dropdownItem">Discord Community</a>
218-
</li>
219219
<li>
220220
<button id="about-ide" class="dropdownItem">About IDE</button>
221221
</li>
@@ -287,7 +287,7 @@
287287
<!-- Left -->
288288
<div id="app-left">
289289
<div id="fileExplorerPanel" class="h-full flex flex-col justify-start">
290-
<div id="fileExplorerHeader" class="header h-8 justify-start flex-none border-b border-dark-d drop-shadow-sm font-bold overflow-hidden whitespace-nowrap">
290+
<div id="fileExplorerHeader" class="header h-8 justify-start flex-none border-b border-dark-d dark:border-dark-a drop-shadow-sm font-bold overflow-hidden whitespace-nowrap">
291291
<div class="px-2">File Explorer</div>
292292
</div>
293293
<div id="fileExplorerContainer">
@@ -353,7 +353,7 @@
353353
<!-- VM Monitor -->
354354
<div id="vmMonitor" class="relative">
355355
<table id="shredTable" class="w-full table-auto absolute text-left overflow-auto">
356-
<thead class="h-8 align-middle font-medium border-b border-dark-d drop-shadow-sm">
356+
<thead class="h-8 align-middle font-medium border-b border-dark-d dark:border-dark-a drop-shadow-sm">
357357
<tr>
358358
<th scope="col">Shred</th>
359359
<th scope="col">Code</th>
@@ -372,7 +372,7 @@
372372
<button id="consoleTab" type="button" class="header-item text-orange underline transition">CONSOLE</button>
373373
<button id="visualizerTab" type="button" class="header-item text-dark-5">VISUALIZER</button>
374374
</div>
375-
<div id="consoleContainer" style="height: calc(100% - 1.75rem)" class="border-b border-sky-blue">
375+
<div id="consoleContainer" style="height: calc(100% - 1.75rem)" class="border-b border-sky-blue dark:border-dark-4">
376376
<div id="console" class="bg-white dark:bg-dark-2 h-full"></div>
377377
</div>
378378
<div id="visualizerContainer" class="flex-1 bg-white dark:bg-dark-2 hidden">

src/components/gui/gui.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,6 @@ export default class GUI {
152152
guiButton.classList.add(
153153
"button",
154154
"secondary",
155-
"border",
156-
"border-orange",
157-
"dark:border-white",
158155
"text-sm",
159156
"absolute",
160157
"bottom-2",
@@ -164,7 +161,7 @@ export default class GUI {
164161
// TODO: factor this out for clean util
165162
const isWindows = navigator.userAgent.includes("Windows");
166163
const metaKey = isWindows ? "Ctrl" : "⌘";
167-
guiButton.title = `Save and Generate GUI [${metaKey} + S]`;
164+
guiButton.title = `Generate GUI [${metaKey} + S]`;
168165

169166
guiButton.addEventListener("click", () => GUI.generateGUI());
170167
parent.appendChild(guiButton);

src/components/navbar/navbar.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export default class NavBar {
109109
document.querySelector<HTMLButtonElement>("#about-ide")!;
110110
NavBar.aboutButton.addEventListener("click", () => {
111111
Console.print("|========================================|");
112-
Console.print(`| WebChucK IDE 2 |`);
112+
Console.print(`| WebChucK IDE v${version} |`);
113113
Console.print("|========================================|");
114114
Console.print("| authors: terry feng & chuck team |");
115115
Console.print("| date: 2023 - present |");

src/styles/index.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ table thead tr th {
275275
}
276276

277277
table tbody tr td {
278-
@apply py-3 px-4 border-b border-sky-blue-700;
278+
@apply py-3 px-4 border-b border-sky-blue-700 dark:border-dark-5;
279279
}
280280

281281
td:nth-child(3) {
@@ -304,7 +304,7 @@ td:nth-child(4) {
304304

305305
/* HID CONTAINER */
306306
#hidLog {
307-
@apply m-2 p-1 pt-0 w-72 h-32 overflow-hidden border border-gray-300 rounded-lg bg-white dark:bg-dark dark:border-gray-700;
307+
@apply m-2 p-1 pt-0 w-72 h-32 overflow-hidden border border-dark-d rounded-lg bg-white dark:bg-dark dark:border-dark-4;
308308
width: 280px;
309309
height: 120px;
310310
}
@@ -323,7 +323,7 @@ td:nth-child(4) {
323323
}
324324

325325
.button.secondary {
326-
@apply hover:text-orange-light px-3 py-1.5 rounded-lg text-orange transition;
326+
@apply text-orange hover:text-orange-light border border-orange hover:border-orange-light px-3 py-1.5 rounded-lg transition;
327327
}
328328

329329
dialog {

tailwind.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = {
2020
"orange": {
2121
DEFAULT: "#FF8833",
2222
dark: "#D2691E",
23-
light: "#FFAA33",
23+
light: "#ffa64d",
2424
peach: "#FFE5C4",
2525
},
2626
"sky-blue": {

0 commit comments

Comments
 (0)