-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFrameArrayEditor.pas
More file actions
602 lines (537 loc) · 16 KB
/
FrameArrayEditor.pas
File metadata and controls
602 lines (537 loc) · 16 KB
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
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
unit FrameArrayEditor;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes,
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls,
Vcl.ComCtrls, System.JSON, System.Generics.Collections, System.UITypes,
ConfigFrameBase, UtilsTypes, JSONHelpers;
type
TArrayItemType = (aitString, aitNumber, aitBoolean, aitObject);
TFrameArrayEditor = class(TBaseConfigFrame)
private
pnlMain: TPanel;
lstItems: TListBox;
pnlControls: TPanel;
btnAdd: TButton;
btnEdit: TButton;
btnDelete: TButton;
btnMoveUp: TButton;
btnMoveDown: TButton;
lblItemType: TLabel;
cmbItemType: TComboBox;
FItemType: TArrayItemType;
FObjectItems: TList<TJSONObject>;
procedure btnAddClick(Sender: TObject);
procedure btnEditClick(Sender: TObject);
procedure btnDeleteClick(Sender: TObject);
procedure btnMoveUpClick(Sender: TObject);
procedure btnMoveDownClick(Sender: TObject);
procedure lstItemsClick(Sender: TObject);
procedure cmbItemTypeChange(Sender: TObject);
procedure UpdateButtonStates;
function GetItemTypeAsString(ItemType: TArrayItemType): string;
function GetItemTypeFromString(const TypeStr: string): TArrayItemType;
protected
procedure LoadFromJSON; override;
procedure SaveToJSON; override;
procedure CreateControls; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
property ItemType: TArrayItemType read FItemType write FItemType;
end;
implementation
{ TFrameArrayEditor }
constructor TFrameArrayEditor.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FItemType := aitString;
FObjectItems := TList<TJSONObject>.Create;
CreateControls;
end;
destructor TFrameArrayEditor.Destroy;
begin
FObjectItems.Free;
inherited;
end;
procedure TFrameArrayEditor.CreateControls;
begin
// Create main panel
pnlMain := TPanel.Create(Self);
pnlMain.Parent := Self;
pnlMain.Align := alClient;
pnlMain.BevelOuter := bvNone;
// Create type selection panel
var TypePanel := TPanel.Create(pnlMain);
TypePanel.Parent := pnlMain;
TypePanel.Align := alTop;
TypePanel.Height := 40;
TypePanel.BevelOuter := bvNone;
// Create type label
lblItemType := TLabel.Create(TypePanel);
lblItemType.Parent := TypePanel;
lblItemType.Left := 10;
lblItemType.Top := 12;
lblItemType.Caption := 'Array Item Type:';
// Create type dropdown
cmbItemType := TComboBox.Create(TypePanel);
cmbItemType.Parent := TypePanel;
cmbItemType.Left := 100;
cmbItemType.Top := 8;
cmbItemType.Width := 150;
cmbItemType.Style := csDropDownList;
cmbItemType.Items.Add('String');
cmbItemType.Items.Add('Number');
cmbItemType.Items.Add('Boolean');
cmbItemType.Items.Add('Object');
cmbItemType.ItemIndex := 0;
cmbItemType.OnChange := cmbItemTypeChange;
// Create list control
lstItems := TListBox.Create(pnlMain);
lstItems.Parent := pnlMain;
lstItems.Align := alClient;
lstItems.AlignWithMargins := True;
lstItems.Margins.SetBounds(5, 5, 5, 5);
lstItems.OnClick := lstItemsClick;
// Create control panel
pnlControls := TPanel.Create(pnlMain);
pnlControls.Parent := pnlMain;
pnlControls.Align := alBottom;
pnlControls.Height := 40;
pnlControls.BevelOuter := bvNone;
// Add button
btnAdd := TButton.Create(pnlControls);
btnAdd.Parent := pnlControls;
btnAdd.Left := 5;
btnAdd.Top := 5;
btnAdd.Width := 60;
btnAdd.Caption := 'Add';
btnAdd.OnClick := btnAddClick;
// Edit button
btnEdit := TButton.Create(pnlControls);
btnEdit.Parent := pnlControls;
btnEdit.Left := 70;
btnEdit.Top := 5;
btnEdit.Width := 60;
btnEdit.Caption := 'Edit';
btnEdit.OnClick := btnEditClick;
btnEdit.Enabled := False;
// Delete button
btnDelete := TButton.Create(pnlControls);
btnDelete.Parent := pnlControls;
btnDelete.Left := 135;
btnDelete.Top := 5;
btnDelete.Width := 60;
btnDelete.Caption := 'Delete';
btnDelete.OnClick := btnDeleteClick;
btnDelete.Enabled := False;
// Move up button
btnMoveUp := TButton.Create(pnlControls);
btnMoveUp.Parent := pnlControls;
btnMoveUp.Left := 200;
btnMoveUp.Top := 5;
btnMoveUp.Width := 60;
btnMoveUp.Caption := 'Move Up';
btnMoveUp.OnClick := btnMoveUpClick;
btnMoveUp.Enabled := False;
// Move down button
btnMoveDown := TButton.Create(pnlControls);
btnMoveDown.Parent := pnlControls;
btnMoveDown.Left := 265;
btnMoveDown.Top := 5;
btnMoveDown.Width := 60;
btnMoveDown.Caption := 'Move Down';
btnMoveDown.OnClick := btnMoveDownClick;
btnMoveDown.Enabled := False;
end;
procedure TFrameArrayEditor.cmbItemTypeChange(Sender: TObject);
begin
// Update array item type
case cmbItemType.ItemIndex of
0: FItemType := aitString;
1: FItemType := aitNumber;
2: FItemType := aitBoolean;
3: FItemType := aitObject;
else
FItemType := aitString;
end;
// Clear list
if lstItems.Items.Count > 0 then
begin
if MessageDlg('Changing array item type will clear the current list. Continue?', mtConfirmation, [mbYes, mbNo], 0) = mrYes then
begin
lstItems.Items.Clear;
FObjectItems.Clear;
end
else
begin
// Restore original selection
case FItemType of
aitString: cmbItemType.ItemIndex := 0;
aitNumber: cmbItemType.ItemIndex := 1;
aitBoolean: cmbItemType.ItemIndex := 2;
aitObject: cmbItemType.ItemIndex := 3;
end;
end;
end;
// Update button states
UpdateButtonStates;
// Mark as modified
Modified := True;
end;
procedure TFrameArrayEditor.UpdateButtonStates;
begin
// 鏇存柊鎸夐挳鐘舵€? btnEdit.Enabled := lstItems.ItemIndex >= 0;
btnDelete.Enabled := lstItems.ItemIndex >= 0;
btnMoveUp.Enabled := lstItems.ItemIndex > 0;
btnMoveDown.Enabled := (lstItems.ItemIndex >= 0) and (lstItems.ItemIndex < lstItems.Items.Count - 1);
end;
procedure TFrameArrayEditor.lstItemsClick(Sender: TObject);
begin
UpdateButtonStates;
end;
procedure TFrameArrayEditor.btnAddClick(Sender: TObject);
var
NewItem: string;
Value: Double;
JSONObj: TJSONObject;
BoolValue: Boolean;
begin
case FItemType of
aitString:
begin
// Add string item
NewItem := '';
if InputQuery('Add String', 'Please enter a string value:', NewItem) then
begin
lstItems.Items.Add(NewItem);
Modified := True;
end;
end;
aitNumber:
begin
// Add number item
NewItem := '0';
if InputQuery('Add Number', 'Please enter a numeric value:', NewItem) then
begin
try
Value := StrToFloat(NewItem);
lstItems.Items.Add(NewItem);
Modified := True;
except
on E: Exception do
ShowMessage('Please enter a valid number');
end;
end;
end;
aitBoolean:
begin
// Add boolean item
if MessageDlg('Please select a boolean value', mtConfirmation, mbYesNo, 0) = mrYes then
begin
BoolValue := True;
lstItems.Items.Add('True');
end
else
begin
BoolValue := False;
lstItems.Items.Add('False');
end;
Modified := True;
end;
aitObject:
begin
// Add object item
JSONObj := TJSONObject.Create;
FObjectItems.Add(JSONObj);
lstItems.Items.Add(Format('Object %d', [FObjectItems.Count]));
Modified := True;
end;
end;
// Update button states
UpdateButtonStates;
end;
procedure TFrameArrayEditor.btnEditClick(Sender: TObject);
var
SelectedIndex: Integer;
OldValue, NewValue: string;
JSONObj: TJSONObject;
DValue: Double;
BoolValue: Boolean;
begin
SelectedIndex := lstItems.ItemIndex;
if SelectedIndex < 0 then
Exit;
case FItemType of
aitString:
begin
// Edit string item
OldValue := lstItems.Items[SelectedIndex];
NewValue := OldValue;
if InputQuery('Edit String', 'Please enter a string value:', NewValue) then
begin
lstItems.Items[SelectedIndex] := NewValue;
Modified := True;
end;
end;
aitNumber:
begin
// Edit number item
OldValue := lstItems.Items[SelectedIndex];
NewValue := OldValue;
if InputQuery('Edit Number', 'Please enter a numeric value:', NewValue) then
begin
try
DValue := StrToFloat(NewValue);
lstItems.Items[SelectedIndex] := NewValue;
Modified := True;
except
on E: Exception do
ShowMessage('Please enter a valid number');
end;
end;
end;
aitBoolean:
begin
// Edit boolean item
OldValue := lstItems.Items[SelectedIndex];
BoolValue := SameText(OldValue, 'True');
if MessageDlg('Edit boolean value', mtConfirmation, mbYesNo, 0) = mrYes then
begin
if not BoolValue then
begin
lstItems.Items[SelectedIndex] := 'True';
Modified := True;
end;
end
else
begin
if BoolValue then
begin
lstItems.Items[SelectedIndex] := 'False';
Modified := True;
end;
end;
end;
aitObject:
begin
// Edit object item
if (SelectedIndex >= 0) and (SelectedIndex < FObjectItems.Count) then
begin
JSONObj := FObjectItems[SelectedIndex];
// Use object editor to edit object
// Here we should open a dialog for editing the JSON object
// For simplicity, we just display the object as a string
ShowMessage(JSONObj.ToString);
Modified := True;
end;
end;
end;
end;
procedure TFrameArrayEditor.btnDeleteClick(Sender: TObject);
var
SelectedIndex: Integer;
begin
SelectedIndex := lstItems.ItemIndex;
if SelectedIndex < 0 then
Exit;
if MessageDlg('Are you sure you want to delete the selected item?', mtConfirmation, mbYesNo, 0) = mrYes then
begin
// If it's an object type, also delete the corresponding JSON object
if FItemType = aitObject then
begin
if (SelectedIndex >= 0) and (SelectedIndex < FObjectItems.Count) then
begin
FObjectItems[SelectedIndex].Free;
FObjectItems.Delete(SelectedIndex);
end;
end;
lstItems.Items.Delete(SelectedIndex);
Modified := True;
// Update button states
UpdateButtonStates;
end;
end;
procedure TFrameArrayEditor.btnMoveUpClick(Sender: TObject);
var
SelectedIndex: Integer;
TempObj: TJSONObject;
begin
SelectedIndex := lstItems.ItemIndex;
if (SelectedIndex <= 0) or (SelectedIndex >= lstItems.Items.Count) then
Exit;
// Exchange list items
lstItems.Items.Exchange(SelectedIndex, SelectedIndex - 1);
// If it's an object type, also exchange JSON objects
if FItemType = aitObject then
begin
if (SelectedIndex < FObjectItems.Count) and (SelectedIndex - 1 >= 0) then
begin
TempObj := FObjectItems[SelectedIndex];
FObjectItems[SelectedIndex] := FObjectItems[SelectedIndex - 1];
FObjectItems[SelectedIndex - 1] := TempObj;
end;
end;
// Select the moved item
lstItems.ItemIndex := SelectedIndex - 1;
Modified := True;
// Update button states
UpdateButtonStates;
end;
procedure TFrameArrayEditor.btnMoveDownClick(Sender: TObject);
var
SelectedIndex: Integer;
TempObj: TJSONObject;
begin
SelectedIndex := lstItems.ItemIndex;
if (SelectedIndex < 0) or (SelectedIndex >= lstItems.Items.Count - 1) then
Exit;
// Exchange list items
lstItems.Items.Exchange(SelectedIndex, SelectedIndex + 1);
// If it's an object type, also exchange JSON objects
if FItemType = aitObject then
begin
if (SelectedIndex < FObjectItems.Count) and (SelectedIndex + 1 < FObjectItems.Count) then
begin
TempObj := FObjectItems[SelectedIndex];
FObjectItems[SelectedIndex] := FObjectItems[SelectedIndex + 1];
FObjectItems[SelectedIndex + 1] := TempObj;
end;
end;
// Select the moved item
lstItems.ItemIndex := SelectedIndex + 1;
Modified := True;
// Update button states
UpdateButtonStates;
end;
function TFrameArrayEditor.GetItemTypeAsString(ItemType: TArrayItemType): string;
begin
case ItemType of
aitString: Result := 'string';
aitNumber: Result := 'number';
aitBoolean: Result := 'boolean';
aitObject: Result := 'object';
else
Result := 'string';
end;
end;
function TFrameArrayEditor.GetItemTypeFromString(const TypeStr: string): TArrayItemType;
begin
if SameText(TypeStr, 'string') then
Result := aitString
else if SameText(TypeStr, 'number') then
Result := aitNumber
else if SameText(TypeStr, 'boolean') then
Result := aitBoolean
else if SameText(TypeStr, 'object') then
Result := aitObject
else
Result := aitString;
end;
procedure TFrameArrayEditor.LoadFromJSON;
var
i: Integer;
JSONArray: TJSONArray;
ItemValue: TJSONValue;
TypeString: string;
ItemType: TArrayItemType;
JSONObj: TJSONObject;
begin
// Clear existing data
lstItems.Items.Clear;
for i := 0 to FObjectItems.Count - 1 do
FObjectItems[i].Free;
FObjectItems.Clear;
if not Assigned(JSONObject) then
Exit;
// Try to get array type
if JSONObject.TryGetValue('item_type', TypeString) then
FItemType := GetItemTypeFromString(TypeString)
else
FItemType := aitString;
// Update type dropdown
case FItemType of
aitString: cmbItemType.ItemIndex := 0;
aitNumber: cmbItemType.ItemIndex := 1;
aitBoolean: cmbItemType.ItemIndex := 2;
aitObject: cmbItemType.ItemIndex := 3;
else
cmbItemType.ItemIndex := 0;
end;
// Get array value
if JSONObject.TryGetValue('value', ItemValue) and (ItemValue is TJSONArray) then
begin
JSONArray := TJSONArray(ItemValue);
for i := 0 to JSONArray.Count - 1 do
begin
ItemValue := JSONArray.Items[i];
case FItemType of
aitString:
if ItemValue is TJSONString then
lstItems.Items.Add(TJSONString(ItemValue).Value);
aitNumber:
if ItemValue is TJSONNumber then
lstItems.Items.Add(TJSONNumber(ItemValue).ToString);
aitBoolean:
if ItemValue is TJSONBool then
lstItems.Items.Add(BoolToStr(TJSONBool(ItemValue).AsBoolean, True));
aitObject:
if ItemValue is TJSONObject then
begin
JSONObj := TJSONObject(ItemValue.Clone as TJSONObject);
FObjectItems.Add(JSONObj);
lstItems.Items.Add(Format('Object %d', [FObjectItems.Count]));
end;
end;
end;
end;
// Update button states
UpdateButtonStates;
Modified := False;
end;
procedure TFrameArrayEditor.SaveToJSON;
var
i: Integer;
JSONArray: TJSONArray;
BValue: Boolean;
DValue: Double;
begin
// Ensure JSONObject is not nil
if not Assigned(JSONObject) then
JSONObject := TJSONObject.Create;
// Set array item type
JSONObject.RemovePair('item_type');
JSONObject.AddPair('item_type', GetItemTypeAsString(FItemType));
// Set config type
JSONObject.RemovePair('_type');
JSONObject.AddPair('_type', ConfigTypeToString(ctArray));
// Create array value
JSONArray := TJSONArray.Create;
for i := 0 to lstItems.Items.Count - 1 do
begin
case FItemType of
aitString:
JSONArray.AddElement(TJSONString.Create(lstItems.Items[i]));
aitNumber:
begin
if TryStrToFloat(lstItems.Items[i], DValue) then
JSONArray.AddElement(TJSONNumber.Create(DValue))
else
JSONArray.AddElement(TJSONNumber.Create(0));
end;
aitBoolean:
begin
BValue := SameText(lstItems.Items[i], 'True');
JSONArray.AddElement(TJSONBool.Create(BValue));
end;
aitObject:
if (i < FObjectItems.Count) and Assigned(FObjectItems[i]) then
JSONArray.AddElement(FObjectItems[i].Clone as TJSONObject);
end;
end;
// Set array value
JSONObject.RemovePair('value');
JSONObject.AddPair('value', JSONArray);
Modified := False;
end;
end.