about summary refs log tree commit diff stats
path: root/js/baba-yaga/web/app.js
blob: ad92716a5bdeacb5b252910ad4e930cd6dfca07c (plain) (blame)
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
import { createLexer } from '../lexer.js';
import { createParser } from '../parser.js';
import { createInterpreter } from '../interpreter.js';

/**
 * Baba Yaga REPL Application
 * A mobile-first, accessible CLI-style REPL for the Baba Yaga language
 */

class BabaYagaREPL {
  constructor() {
    this.history = [];
    this.historyIndex = -1;
    this.sessionCode = '';
    
    // DOM elements
    this.messagesEl = document.getElementById('messages');
    this.inputEl = document.getElementById('input');
    this.sendBtn = document.getElementById('send');
    this.clearBtn = document.getElementById('clear');
    this.loadBtn = document.getElementById('load');
    this.fileInputEl = document.getElementById('fileInput');
    this.examplesBtn = document.getElementById('examples');
    this.helpBtn = document.getElementById('help');
    
    this.setupEventListeners();
    this.showWelcome();
  }

  setupEventListeners() {
    // Execute code
    this.sendBtn.addEventListener('click', () => this.executeCode());
    this.inputEl.addEventListener('keydown', (e) => {
      if (e.key === 'Enter' && (e.metaKey || e.ctrlKey)) {
        e.preventDefault();
        this.executeCode();
      } else if (e.key === 'ArrowUp') {
        e.preventDefault();
        this.navigateHistory(-1);
      } else if (e.key === 'ArrowDown') {
        e.preventDefault();
        this.navigateHistory(1);
      }
    });

    // Auto-resize textarea
    this.inputEl.addEventListener('input', () => this.autoResize());

    // Clear output
    this.clearBtn.addEventListener('click', () => this.clearOutput());

    // Load file
    this.loadBtn.addEventListener('click', () => this.fileInputEl.click());
    this.fileInputEl.addEventListener('change', (e) => this.handleFileLoad(e));

    // Load examples
    this.examplesBtn.addEventListener('click', () => this.loadExamples());

    // Help
    this.helpBtn.addEventListener('click', () => this.showHelp());

    // Focus management
    this.inputEl.focus();
  }

  showWelcome() {
    this.addMessage('Baba Yaga REPL', 'info');
    this.addMessage('Type /help for available commands', 'info');
  }

  executeCode() {
    const code = this.inputEl.value.trim();
    if (!code) return;

    // Add to history
    this.addToHistory(code);
    
    // Display input
    this.addInputMessage(code);

    try {
      // Check for slash commands
      if (code.startsWith('/')) {
        this.handleSlashCommand(code);
        this.clearInput();
        return;
      }

      // Execute Baba Yaga code with session persistence
      const result = this.evaluateWithSession(code);
      
      if (result.ok) {
        if (result.value !== undefined) {
          this.addMessage(this.formatValue(result.value), 'output');
        }
      } else {
        this.addMessage(`Error: ${result.error.message}`, 'error');
        if (result.error.codeFrame) {
          this.addMessage(result.error.codeFrame, 'error');
        }
      }
    } catch (error) {
      this.addMessage(`Unexpected error: ${error.message}`, 'error');
    }

    this.clearInput();
  }

  evaluate(source) {
    try {
      const lexer = createLexer(source);
      const tokens = lexer.allTokens();
      const parser = createParser(tokens);
      const ast = parser.parse();
      
      const host = {
        io: {
          out: (...args) => {
            const text = args.map(arg => this.formatValue(arg)).join(' ');
            this.addMessage(text, 'output');
          },
          in: () => {
            // For now, return empty string - could be enhanced with stdin
            return '';
          }
        }
      };

      const interpreter = createInterpreter(ast, host);
      const value = interpreter.interpret();
      
      return { ok: true, value };
    } catch (error) {
      const message = error?.message || String(error);
      const lineMatch = / at (\d+):(\d+)/.exec(message);
      const line = lineMatch ? Number(lineMatch[1]) : null;
      const column = lineMatch ? Number(lineMatch[2]) : null;
      const codeFrame = this.makeCodeFrame(source, line, column);
      
      return { 
        ok: false, 
        error: { 
          message, 
          line, 
          column, 
          codeFrame 
        } 
      };
    }
  }

  evaluateWithSession(source) {
    try {
      // Combine session code with new code
      const fullSource = this.sessionCode + source;
      
      const lexer = createLexer(fullSource);
      const tokens = lexer.allTokens();
      const parser = createParser(tokens);
      const ast = parser.parse();
      
      const host = {
        io: {
          out: (...args) => {
            const text = args.map(arg => this.formatValue(arg)).join(' ');
            this.addMessage(text, 'output');
          },
          in: () => {
            // For now, return empty string - could be enhanced with stdin
            return '';
          }
        }
      };

      const interpreter = createInterpreter(ast, host);
      const value = interpreter.interpret();
      
      // If successful, add to session code
      this.sessionCode += source + '\n';
      
      return { ok: true, value };
    } catch (error) {
      const message = error?.message || String(error);
      const lineMatch = / at (\d+):(\d+)/.exec(message);
      const line = lineMatch ? Number(lineMatch[1]) : null;
      const column = lineMatch ? Number(lineMatch[2]) : null;
      const codeFrame = this.makeCodeFrame(source, line, column);
      
      return { 
        ok: false, 
        error: { 
          message, 
          line, 
          column, 
          codeFrame 
        } 
      };
    }
  }

  formatValue(value) {
    if (value === null || value === undefined) {
      return 'null';
    }
    
    if (typeof value === 'number') {
      return value.toString();
    }
    
    if (typeof value === 'string') {
      return value;
    }
    
    if (Array.isArray(value)) {
      return JSON.stringify(value);
    }
    
    if (value && typeof value === 'object') {
      if (value.type === 'Object' && value.properties) {
        const obj = {};
        for (const [key, val] of value.properties.entries()) {
          obj[key] = this.formatValue(val);
        }
        return JSON.stringify(obj, null, 2);
      }
      
      if (value.value !== undefined) {
        return value.value.toString();
      }
      
      // Handle native functions - don't show the function object
      if (value.type === 'NativeFunction') {
        return ''; // Return empty string for native functions
      }
      
      // Handle function objects - don't show the function definition
      if (value.type === 'Function') {
        return ''; // Return empty string for function objects
      }
    }
    
    return JSON.stringify(value, null, 2);
  }

  makeCodeFrame(source, line, column) {
    if (!line || !column) return '';
    
    const lines = source.split(/\r?\n/);
    const idx = line - 1;
    const context = [idx - 1, idx, idx + 1].filter(i => i >= 0 && i < lines.length);
    const pad = n => String(n + 1).padStart(4, ' ');
    const caret = ' '.repeat(column - 1) + '^';
    const rows = context.map(i => `${pad(i)} | ${lines[i]}`);
    rows.splice(context.indexOf(idx) + 1, 0, `     | ${caret}`);
    return rows.join('\n');
  }

  addMessage(text, type = 'output') {
    const messageDiv = document.createElement('div');
    messageDiv.className = 'message';
    
    const contentDiv = document.createElement('div');
    contentDiv.className = `message-${type}`;
    contentDiv.innerHTML = text.replace(/\n/g, '<br>');
    
    messageDiv.appendChild(contentDiv);
    this.messagesEl.appendChild(messageDiv);
    
    // Auto-scroll to bottom after adding message
    this.scrollToBottom();
  }

  addInputMessage(code) {
    const messageDiv = document.createElement('div');
    messageDiv.className = 'message';
    
    const inputDiv = document.createElement('div');
    inputDiv.className = 'message-input';
    
    const promptDiv = document.createElement('div');
    promptDiv.className = 'prompt';
    promptDiv.textContent = '>';
    
    const codeDiv = document.createElement('div');
    codeDiv.className = 'code';
    codeDiv.textContent = code;
    
    inputDiv.appendChild(promptDiv);
    inputDiv.appendChild(codeDiv);
    messageDiv.appendChild(inputDiv);
    
    this.messagesEl.appendChild(messageDiv);
    
    // Auto-scroll to bottom after adding input message
    this.scrollToBottom();
  }

  clearInput() {
    this.inputEl.value = '';
    this.autoResize();
  }

  clearOutput() {
    this.messagesEl.innerHTML = '';
    this.sessionCode = '';
    this.showWelcome();
  }

  autoResize() {
    this.inputEl.style.height = 'auto';
    this.inputEl.style.height = Math.min(this.inputEl.scrollHeight, 120) + 'px';
  }

  scrollToBottom() {
    this.messagesEl.scrollTop = this.messagesEl.scrollHeight;
  }

  addToHistory(code) {
    this.history.push(code);
    this.historyIndex = this.history.length;
  }

  navigateHistory(direction) {
    if (this.history.length === 0) return;
    
    this.historyIndex += direction;
    
    if (this.historyIndex < 0) {
      this.historyIndex = 0;
    } else if (this.historyIndex >= this.history.length) {
      this.historyIndex = this.history.length;
      this.inputEl.value = '';
    } else {
      this.inputEl.value = this.history[this.historyIndex];
    }
    
    this.autoResize();
  }

  handleSlashCommand(command) {
    const cmd = command.toLowerCase();
    
    switch (cmd) {
      case '/help':
        this.showHelp();
        break;
      case '/clear':
        this.clearOutput();
        break;
      case '/examples':
        this.loadExamples();
        break;
      case '/run':
        this.runSession();
        break;
      case '/load':
        this.fileInputEl.click();
        break;
      default:
        this.addMessage(`Unknown command: ${command}. Type /help for available commands.`, 'error');
    }
  }

  runSession() {
    if (!this.sessionCode.trim()) {
      this.addMessage('No code in session to run. Load a file or type some code first.', 'info');
      return;
    }

    this.addMessage('Running session code...', 'info');
    
    try {
      const result = this.evaluate(this.sessionCode);
      
      if (result.ok) {
        if (result.value !== undefined) {
          this.addMessage(this.formatValue(result.value), 'output');
        }
        this.addMessage('Session executed successfully.', 'info');
      } else {
        this.addMessage(`Error: ${result.error.message}`, 'error');
        if (result.error.codeFrame) {
          this.addMessage(result.error.codeFrame, 'error');
        }
      }
    } catch (error) {
      this.addMessage(`Unexpected error: ${error.message}`, 'error');
    }
  }

  showHelp() {
    const helpText = `Available slash commands:
  /help     - Show this help message
  /clear    - Clear the output
  /examples - Load example code
  /load     - Load a .baba file
  /run      - Execute all code in session

Keyboard shortcuts:
  Cmd/Ctrl + Enter - Execute code
  ↑/↓              - Navigate history

Baba Yaga language features:
  - Immutable variables: name : value;
  - Functions: name : params -> body;
  - Pattern matching: when expr is pattern then result;
  - Lists: [1, 2, 3]
  - Tables: {key: value}
  - String concatenation: str1 .. str2
  - IO: io.out "Hello"; io.in

Example function definition:
  add : x y -> x + y;
  result : add 3 4;`;

    this.addMessage(helpText, 'info');
  }

  async handleFileLoad(event) {
    const file = event.target.files?.[0];
    if (!file) return;

    try {
      const text = await file.text();
      
      // Validate the file content by trying to parse it
      const lexer = createLexer(text);
      const tokens = lexer.allTokens();
      const parser = createParser(tokens);
      parser.parse();
      
      // If parsing succeeds, add to session and display
      this.sessionCode += text + '\n';
      
      this.addMessage(`Loaded ${file.name}`, 'info');
      this.addInputMessage(text);
      this.addMessage('File loaded successfully. Click "Run" to execute or add more code.', 'info');
      
    } catch (error) {
      const message = error?.message || String(error);
      this.addMessage(`Failed to load ${file.name}: ${message}`, 'error');
    } finally {
      // Reset the input so the same file can be selected again
      event.target.value = '';
    }
  }

  loadExamples() {
    const examples = [
      {
        title: 'Basic arithmetic',
        code: `result : 2 + 3 * 4;
io.out result;`
      },
      {
        title: 'Simple function',
        code: `add : x y -> x + y;
result : add 5 3;
io.out result;`
      },
      {
        title: 'Variables and expressions',
        code: `a : 10;
b : 20;
sum : a + b;
io.out sum;`
      },
      {
        title: 'String operations',
        code: `greeting : "Hello";
name : "World";
message : greeting .. " " .. name;
io.out message;`
      },
      {
        title: 'String functions',
        code: `io.out str.substring "hello world" 0 5;
io.out str.replace "hello hello" "hello" "hi";`
      }
    ];

    this.addMessage('Available examples:', 'info');
    
    examples.forEach(example => {
      this.addMessage(`// ${example.title}`, 'output');
      this.addInputMessage(example.code);
    });
    
    this.addMessage('Copy and paste any example above to try it out!', 'info');
  }
}

// Initialize the REPL when the page loads
document.addEventListener('DOMContentLoaded', () => {
  new BabaYagaREPL();
});