File size: 13,171 Bytes
9f79da5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30b54a5
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
import { Component, Input, forwardRef, OnInit, ViewChild, ElementRef } from '@angular/core';
import { ControlValueAccessor, NG_VALUE_ACCESSOR, FormControl } from '@angular/forms';
import { CommonModule } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { MatFormFieldModule } from '@angular/material/form-field';
import { MatInputModule } from '@angular/material/input';
import { MatIconModule } from '@angular/material/icon';
import { MatChipsModule } from '@angular/material/chips';
import { MatExpansionModule } from '@angular/material/expansion';

@Component({
  selector: 'app-json-editor',
  standalone: true,
  imports: [
    CommonModule,
    FormsModule,
    ReactiveFormsModule,
    MatFormFieldModule,
    MatInputModule,
    MatIconModule,
    MatChipsModule,
    MatExpansionModule
  ],
  providers: [
    {
      provide: NG_VALUE_ACCESSOR,
      useExisting: forwardRef(() => JsonEditorComponent),
      multi: true
    }
  ],
  template: `

    <mat-form-field appearance="outline" 

                    class="full-width" 

                    [class.json-valid]="isValidJson()"

                    [class.json-invalid]="!isValidJson() && value">

      <mat-label>{{ label }}</mat-label>

      <textarea matInput 

                #textareaRef

                [(ngModel)]="value"

                [rows]="rows"

                [placeholder]="placeholder"

                (keydown)="handleKeydown($event)"

                (click)="handleCursorMove($event)"

                (keyup)="handleCursorMove($event)"

                (blur)="onTouched()"

                class="code-editor"></textarea>

      <mat-hint>{{ hint }}</mat-hint>

      @if (!isValidJson() && value) {

        <mat-error>Invalid JSON format</mat-error>

      }

    </mat-form-field>



    <!-- JSON Validation Indicator -->

    <div class="json-validation-status">

      @if (isValidJson()) {

        <mat-icon class="valid">check_circle</mat-icon>

        <span class="valid">Valid JSON</span>

      } @else if (value) {

        <mat-icon class="invalid">error</mat-icon>

        <span class="invalid">Invalid JSON</span>

      }

    </div>



    <!-- Collapsible Variables Panel -->

    @if (availableVariables && availableVariables.length > 0) {

      <mat-expansion-panel class="variables-panel">

        <mat-expansion-panel-header>

          <mat-panel-title>

            <mat-icon>code</mat-icon>

            Available Variables

          </mat-panel-title>

          <mat-panel-description>

            Click to insert template variables

          </mat-panel-description>

        </mat-expansion-panel-header>

        

        <mat-chip-set>

          @for (variable of availableVariables; track variable) {

            <mat-chip (click)="insertVariable(variable)">

              {{ variable }}

            </mat-chip>

          }

        </mat-chip-set>

      </mat-expansion-panel>

    }

  `,
  styles: [`

    :host {

      display: block;

      margin-bottom: 16px;

    }



    .full-width {

      width: 100%;

    }



    .code-editor {

      font-family: 'Consolas', 'Monaco', 'Courier New', monospace !important;

      font-size: 13px;

      line-height: 1.5;

      tab-size: 2;

      -moz-tab-size: 2;

      white-space: pre;

    }



    .json-validation-status {

      display: flex;

      align-items: center;

      gap: 4px;

      margin-top: -6px;

      margin-bottom: 16px;

      font-size: 12px;

      

      mat-icon {

        font-size: 16px;

        width: 16px;

        height: 20px;

        margin-top:-2px;

        

        &.valid {

          color: #4caf50;

        }

        

        &.invalid {

          color: #f44336;

        }

      }

      

      span {

        &.valid {

          color: #4caf50;

        }

        

        &.invalid {

          color: #f44336;

        }

      }

    }



    .variables-panel {

      margin-bottom: 16px;

      box-shadow: none;

      border: 1px solid rgba(0, 0, 0, 0.12);

      

      .mat-expansion-panel-header {

        padding: 0 16px;

        height: 40px;

        

        .mat-panel-title {

          display: flex;

          align-items: center;

          gap: 8px;

          font-size: 13px;

          color: #666;

          

          mat-icon {

            font-size: 18px;

            width: 18px;

            height: 18px;

          }

        }

        

        .mat-panel-description {

          font-size: 12px;

          color: #999;

        }

      }

      

      .mat-expansion-panel-body {

        padding: 8px 16px 16px;

      }

      

      mat-chip-set {

        mat-chip {

          font-size: 12px;

          min-height: 24px;

          padding: 4px 8px;

          cursor: pointer;

          transition: all 0.2s;

          

          &:hover {

            background-color: #e3f2fd;

            color: #1976d2;

          }

        }

      }

    }



    // JSON field background colors

    .json-valid {

      textarea {

        background-color: rgba(76, 175, 80, 0.05) !important;

      }

    }

    

    .json-invalid {

      textarea {

        background-color: rgba(244, 67, 54, 0.05) !important;

      }

    }

  `]
})
export class JsonEditorComponent implements ControlValueAccessor, OnInit {
  @ViewChild('textareaRef') textareaRef!: ElementRef<HTMLTextAreaElement>;
  
  @Input() label = 'JSON Editor';
  @Input() placeholder = '{}';
  @Input() hint = 'Enter valid JSON';
  @Input() rows = 8;
  @Input() availableVariables: string[] = [];
  @Input() variableReplacer?: (json: string) => string;

  value = '';
  onChange: (value: string) => void = () => {};
  onTouched: () => void = () => {};

  private bracketPairs: { [key: string]: string } = {
    '{': '}',
    '[': ']',
    '(': ')'
  };

  private cursorPosition = 0;

  ngOnInit() {}

  writeValue(value: string): void {
    this.value = value || '';
  }

  registerOnChange(fn: (value: string) => void): void {
    this.onChange = fn;
  }

  registerOnTouched(fn: () => void): void {
    this.onTouched = fn;
  }

  setDisabledState?(isDisabled: boolean): void {
    // Handle disabled state if needed
  }

  isValidJson(): boolean {
    if (!this.value || !this.value.trim()) return true;
    
    try {
      let jsonStr = this.value;
      
      // If variableReplacer is provided, use it to replace variables for validation
      if (this.variableReplacer) {
        jsonStr = this.variableReplacer(jsonStr);
      } else {
        // Default variable replacement for validation
        jsonStr = this.replaceVariablesForValidation(jsonStr);
      }
      
      JSON.parse(jsonStr);
      return true;
    } catch {
      return false;
    }
  }

  private replaceVariablesForValidation(jsonStr: string): string {
    let processed = jsonStr;
  
    processed = processed.replace(/\{\{([^}]+)\}\}/g, (match, variablePath) => {
      if (variablePath.includes('variables.')) {
        const varName = variablePath.split('.').pop()?.toLowerCase() || '';
        
        const numericVars = ['count', 'passenger_count', 'timeout_seconds', 'retry_count', 'amount', 'price', 'quantity', 'age', 'id'];
        const booleanVars = ['enabled', 'published', 'is_active', 'confirmed', 'canceled', 'deleted', 'required'];
        
        if (numericVars.some(v => varName.includes(v))) {
          return '1';
        } else if (booleanVars.some(v => varName.includes(v))) {
          return 'true';
        } else {
          return '"placeholder"';
        }
      }
      
      return '"placeholder"';
    });
  
    return processed;
  }

  handleKeydown(event: KeyboardEvent): void {
    if (event.key === 'Tab') {
      this.handleTabKey(event);
    } else if (event.key === 'Enter') {
      this.handleEnterKey(event);
    } else if (event.key in this.bracketPairs || Object.values(this.bracketPairs).includes(event.key)) {
      this.handleBracketInput(event);
    }
  }

  handleTabKey(event: KeyboardEvent): void {
    event.preventDefault();
    
    const textarea = event.target as HTMLTextAreaElement;
    const start = textarea.selectionStart;
    const end = textarea.selectionEnd;
    
    if (start !== end) {
      this.handleBlockIndent(textarea, !event.shiftKey);
    } else {
      const newValue = this.value.substring(0, start) + '\t' + this.value.substring(end);
      this.updateValue(newValue);
      
      setTimeout(() => {
        textarea.selectionStart = textarea.selectionEnd = start + 1;
        textarea.focus();
      }, 0);
    }
  }

  private handleBlockIndent(textarea: HTMLTextAreaElement, indent: boolean): void {
    const start = textarea.selectionStart;
    const end = textarea.selectionEnd;
    const value = this.value;
    
    const lineStart = value.lastIndexOf('\n', start - 1) + 1;
    const lineEnd = value.indexOf('\n', end);
    const actualEnd = lineEnd === -1 ? value.length : lineEnd;
    
    const selectedLines = value.substring(lineStart, actualEnd);
    const lines = selectedLines.split('\n');
    
    let newLines: string[];
    if (indent) {
      newLines = lines.map(line => '\t' + line);
    } else {
      newLines = lines.map(line => line.startsWith('\t') ? line.substring(1) : line);
    }
    
    const newText = newLines.join('\n');
    const newValue = value.substring(0, lineStart) + newText + value.substring(actualEnd);
    
    this.updateValue(newValue);
    
    setTimeout(() => {
      const lengthDiff = newText.length - selectedLines.length;
      textarea.selectionStart = lineStart;
      textarea.selectionEnd = actualEnd + lengthDiff;
      textarea.focus();
    }, 0);
  }

  handleEnterKey(event: KeyboardEvent): void {
    event.preventDefault();
    
    const textarea = event.target as HTMLTextAreaElement;
    const start = textarea.selectionStart;
    const value = this.value;
    
    const lineStart = value.lastIndexOf('\n', start - 1) + 1;
    const currentLine = value.substring(lineStart, start);
    const indent = currentLine.match(/^[\t ]*/)?.[0] || '';
    
    const prevChar = value[start - 1];
    const nextChar = value[start];
    
    let newLineContent = '\n' + indent;
    let cursorOffset = newLineContent.length;
    
    if (prevChar in this.bracketPairs) {
      newLineContent = '\n' + indent + '\t';
      cursorOffset = newLineContent.length;
      
      if (nextChar === this.bracketPairs[prevChar]) {
        newLineContent += '\n' + indent;
      }
    }
    
    const newValue = value.substring(0, start) + newLineContent + value.substring(start);
    this.updateValue(newValue);
    
    setTimeout(() => {
      textarea.selectionStart = textarea.selectionEnd = start + cursorOffset;
      textarea.focus();
    }, 0);
  }

  handleBracketInput(event: KeyboardEvent): void {
    const textarea = event.target as HTMLTextAreaElement;
    const char = event.key;
    
    if (char in this.bracketPairs) {
      event.preventDefault();
      
      const start = textarea.selectionStart;
      const end = textarea.selectionEnd;
      const value = this.value;
      
      const selectedText = value.substring(start, end);
      const closingBracket = this.bracketPairs[char];
      
      let newValue: string;
      let cursorPos: number;
      
      if (selectedText) {
        newValue = value.substring(0, start) + char + selectedText + closingBracket + value.substring(end);
        cursorPos = start + 1 + selectedText.length;
      } else {
        newValue = value.substring(0, start) + char + closingBracket + value.substring(end);
        cursorPos = start + 1;
      }
      
      this.updateValue(newValue);
      
      setTimeout(() => {
        textarea.selectionStart = textarea.selectionEnd = cursorPos;
        textarea.focus();
      }, 0);
    } else if (Object.values(this.bracketPairs).includes(char)) {
      const start = textarea.selectionStart;
      const value = this.value;
      const nextChar = value[start];
      
      if (nextChar === char) {
        event.preventDefault();
        textarea.selectionStart = textarea.selectionEnd = start + 1;
      }
    }
  }

  handleCursorMove(event: any): void {
    this.cursorPosition = event.target.selectionStart;
  }

  insertVariable(variable: string): void {
    const textarea = this.textareaRef.nativeElement;
    const start = this.cursorPosition;
    const variableText = `{{${variable}}}`;
    
    const newValue = this.value.substring(0, start) + variableText + this.value.substring(start);
    this.updateValue(newValue);
    
    setTimeout(() => {
      const newPos = start + variableText.length;
      textarea.selectionStart = textarea.selectionEnd = newPos;
      textarea.focus();
    }, 0);
  }

  private updateValue(newValue: string): void {
    this.value = newValue;
    this.onChange(newValue);
  }
}