-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainWindow.xaml.cs
386 lines (335 loc) · 13.1 KB
/
MainWindow.xaml.cs
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
using System.IO;
using System.Reflection;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Xml;
using ParseidonJson.core;
using ParseidonJson.remote;
namespace ParseidonJson
{
public partial class MainWindow : Window
{
private readonly SportsService _sportsService;
private readonly IJsonParser _jsonParser;
private readonly IJsonQuery _jsonQuery;
private const string Placeholder = "Paste JSON here (optional)";
public MainWindow()
{
InitializeComponent();
WindowStartupLocation = WindowStartupLocation.CenterScreen;
jsonDirectInput.Text = Placeholder;
jsonDirectInput.Foreground = Brushes.Gray;
jsonDirectInput.GotFocus += jsonDirectInput_GotFocus;
jsonDirectInput.LostFocus += jsonDirectInput_LostFocus;
ResetJsonDirectInput();
ConfigureAvalonEdit();
}
public MainWindow(
SportsService sportsService,
IJsonParser jsonParser,
IJsonQuery jsonQuery
) : this()
{
_sportsService = sportsService;
_jsonParser = jsonParser;
_jsonQuery = jsonQuery;
}
// Begin Region Json Parsing
private async void submitButton_Click(object sender, RoutedEventArgs e)
{
progressBar.Visibility = Visibility.Visible;
try
{
string jsonContent = jsonInputBox.Text;
var dataModel = await Task.Run(() => _jsonParser.GenerateCSharpClasses(jsonContent));
outputBox.Text = dataModel;
elapsedTimeLabel.Content =
$"Elapsed Time for Processing: {_jsonParser.LastOperationElapsedTimeMs:F2}ms";
}
catch (Exception ex)
{
jsonInputBox.Text = string.Empty;
outputBox.Text = $"Failed to convert JSON data: {ex.Message}";
}
finally
{
progressBar.Visibility = Visibility.Collapsed;
}
}
private void clearButton_Click(object sender, RoutedEventArgs e)
{
jsonInputBox.Text = string.Empty;
outputBox.Text = string.Empty;
elapsedTimeLabel.Content = string.Empty;
}
protected override void OnClosed(EventArgs e)
{
_sportsService.Dispose();
base.OnClosed(e);
}
private async void FetchSportsStatsButton_OnClickButton_Click(object sender, RoutedEventArgs e)
{
progressBar.Visibility = Visibility.Visible;
string url =
"http://sports.snoozle.net/search/nfl/searchHandler?fileType=inline&statType=teamStats&season=2020&teamName=26";
string jsonContent = string.Empty;
try
{
jsonContent = await Task.Run(() => _sportsService.FetchSportsStatsAsync(url).Result);
var dataModel = await Task.Run(() => _jsonParser.GenerateCSharpClasses(jsonContent));
jsonInputBox.Text = jsonContent;
outputBox.Text = dataModel;
elapsedTimeLabel.Content =
$"Elapsed Time for Processing: {_jsonParser.LastOperationElapsedTimeMs:F2}ms";
}
catch (Exception ex)
{
jsonInputBox.Text = string.Empty;
outputBox.Text = $"Failed to fetch JSON data: {ex.Message}";
}
finally
{
progressBar.Visibility = Visibility.Collapsed;
}
}
private void CopyModelButton_OnClickButton_Click(object sender, RoutedEventArgs e)
{
if (!string.IsNullOrEmpty(outputBox.Text))
{
Clipboard.SetText(outputBox.Text);
MessageBox.Show("Content copied to clipboard!", "Success", MessageBoxButton.OK,
MessageBoxImage.Information);
}
}
// End Region Json Parsing
// Begin Region Editor
private void NewJson_Click(object sender, RoutedEventArgs e)
{
jsonEditor.Text = "{}";
messageArea.Text = "New JSON object ready to be edited.";
}
private void SaveJson_Click(object sender, RoutedEventArgs e)
{
var saveFileDialog = new Microsoft.Win32.SaveFileDialog
{
Filter = "JSON Files (*.json)|*.json|All Files (*.*)|*.*",
DefaultExt = ".json",
Title = "Save JSON"
};
bool? result = saveFileDialog.ShowDialog();
if (result == true)
{
string filename = saveFileDialog.FileName;
File.WriteAllText(filename, jsonEditor.Text);
messageArea.Text = "JSON saved successfully.";
messageArea.Foreground = new SolidColorBrush(Colors.Green);
}
}
private void ValidateJson_Click(object sender, RoutedEventArgs e)
{
try
{
Newtonsoft.Json.Linq.JToken.Parse(jsonEditor.Text);
messageArea.Text = "JSON is valid.";
messageArea.Foreground = new SolidColorBrush(Colors.Green);
}
catch (Newtonsoft.Json.JsonReaderException ex)
{
messageArea.Text = $"Invalid JSON: {ex.Message}";
messageArea.Foreground = new SolidColorBrush(Colors.Red);
}
}
private void FormatJson_Click(object sender, RoutedEventArgs e)
{
try
{
var parsedJson = Newtonsoft.Json.Linq.JToken.Parse(jsonEditor.Text);
jsonEditor.Text = parsedJson.ToString(Newtonsoft.Json.Formatting.Indented);
messageArea.Text = "JSON formatted successfully.";
messageArea.Foreground = new SolidColorBrush(Colors.Green);
}
catch (Newtonsoft.Json.JsonReaderException ex)
{
messageArea.Text = $"Error formatting JSON: {ex.Message}";
messageArea.Foreground = new SolidColorBrush(Colors.Red);
}
}
private void BackgroundSelectionComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (backgroundSelectionComboBox.SelectedItem is ComboBoxItem selectedColor)
{
string colorCode = selectedColor.Tag.ToString();
var backgroundColor = (Color)ColorConverter.ConvertFromString(colorCode);
jsonEditor.Background = new SolidColorBrush(backgroundColor);
if (colorCode.Equals("#1E1E1E", StringComparison.OrdinalIgnoreCase))
{
jsonEditor.Foreground = new SolidColorBrush(Colors.White);
}
else
{
jsonEditor.Foreground = new SolidColorBrush(Colors.Black);
}
}
}
// End Region Json Editor
// Begin Region Json Query
private void ConfigureAvalonEdit()
{
jsonEditor.ShowLineNumbers = true;
jsonEditor.TextArea.TextEntering += TextArea_TextEntering;
jsonEditor.TextArea.TextEntered += TextArea_TextEntered;
LoadJsonSyntaxHighlighting();
}
private void LoadJsonSyntaxHighlighting()
{
var assembly = Assembly.GetExecutingAssembly();
var resourceName = "ParseidonJson.JsonSyntaxHighlighting.xshd";
using (Stream stream = assembly.GetManifestResourceStream(resourceName))
{
if (stream != null)
{
using (XmlReader reader = XmlReader.Create(stream))
{
var highlighting = ICSharpCode.AvalonEdit.Highlighting.Xshd.HighlightingLoader.Load(reader,
ICSharpCode.AvalonEdit.Highlighting.HighlightingManager.Instance);
jsonEditor.SyntaxHighlighting = highlighting;
}
}
else
{
MessageBox.Show("Unable to find the JSON syntax highlighting definition file.", "Error",
MessageBoxButton.OK, MessageBoxImage.Error);
}
}
}
private void ExecuteQuery_Click(object sender, RoutedEventArgs e)
{
string jsonText = jsonDirectInput.Text;
if (string.IsNullOrWhiteSpace(jsonText) && !string.IsNullOrWhiteSpace(filePathInput.Text))
{
try
{
jsonText = File.ReadAllText(filePathInput.Text);
}
catch (Exception ex)
{
MessageBox.Show($"Failed to load JSON from file: {ex.Message}", "Error", MessageBoxButton.OK,
MessageBoxImage.Error);
return;
}
}
string queryString = queryInput.Text;
if (string.IsNullOrEmpty(jsonText) || string.IsNullOrEmpty(queryString))
{
MessageBox.Show("Please provide both JSON data and a query.", "Missing Data", MessageBoxButton.OK,
MessageBoxImage.Warning);
return;
}
try
{
_jsonQuery.LoadJson(jsonText);
var results = _jsonQuery.QueryJson(queryString);
if (results is Newtonsoft.Json.Linq.JArray || results is Newtonsoft.Json.Linq.JObject)
{
queryResults.Text = results.ToString(Newtonsoft.Json.Formatting.Indented);
}
else
{
queryResults.Text = "No results found.";
}
}
catch (Exception ex)
{
queryResults.Text = $"Error executing query: {ex.Message}";
}
}
private void SelectJsonFile_Click(object sender, RoutedEventArgs e)
{
var openFileDialog = new Microsoft.Win32.OpenFileDialog
{
Filter = "JSON Files (*.json)|*.json|All files (*.*)|*.*",
Title = "Select a JSON File"
};
if (openFileDialog.ShowDialog() == true)
{
string filePath = openFileDialog.FileName;
if (Path.GetExtension(filePath).Equals(".json", StringComparison.OrdinalIgnoreCase))
{
filePathInput.Text = filePath;
}
else
{
MessageBox.Show("Please select a valid JSON file.", "File Type Error", MessageBoxButton.OK,
MessageBoxImage.Error);
}
}
}
private void ClearAll_Click(object sender, RoutedEventArgs e)
{
filePathInput.Clear();
queryInput.Clear();
jsonDirectInput.Clear();
queryResults.Clear();
ResetJsonDirectInput();
}
private void ResetJsonDirectInput()
{
jsonDirectInput.Text = Placeholder;
jsonDirectInput.Foreground = Brushes.Gray;
if (!jsonDirectInput.IsFocused)
{
jsonDirectInput_GotFocus(jsonDirectInput, null);
}
}
private void jsonDirectInput_GotFocus(object sender, RoutedEventArgs e)
{
if (jsonDirectInput.Text == Placeholder)
{
jsonDirectInput.Text = "";
jsonDirectInput.Foreground = Brushes.Black;
}
}
private void jsonDirectInput_LostFocus(object sender, RoutedEventArgs e)
{
if (string.IsNullOrWhiteSpace(jsonDirectInput.Text))
{
ResetJsonDirectInput();
}
}
private void TextArea_TextEntered(object sender, TextCompositionEventArgs e)
{
if (e.Text == "{")
{
jsonEditor.Document.Insert(jsonEditor.CaretOffset, "}");
jsonEditor.CaretOffset--;
}
}
private void TextArea_TextEntering(object sender, TextCompositionEventArgs e)
{
if (e.Text == "\"")
{
var offset = jsonEditor.CaretOffset;
jsonEditor.Document.Insert(offset, "\"\"");
jsonEditor.CaretOffset = offset + 1;
e.Handled = true;
}
else if (e.Text == "[")
{
var offset = jsonEditor.CaretOffset;
jsonEditor.Document.Insert(offset, "[]");
jsonEditor.CaretOffset = offset + 1;
e.Handled = true;
}
else if (e.Text == "{")
{
var offset = jsonEditor.CaretOffset;
jsonEditor.Document.Insert(offset, "{}");
jsonEditor.CaretOffset = offset + 1;
e.Handled = true;
}
}
// End Region Json Query
}
}