forked from AlloyTeam/Rosin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGridVisualizer.cs
84 lines (77 loc) · 2.42 KB
/
GridVisualizer.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
namespace EPocalipse.Json.Viewer
{
public partial class GridVisualizer : UserControl, IJsonVisualizer
{
public GridVisualizer()
{
InitializeComponent();
}
Control IJsonVisualizer.GetControl(JsonObject jsonObject)
{
return this;
}
void IJsonVisualizer.Visualize(JsonObject jsonObject)
{
lvGrid.BeginUpdate();
try
{
lvGrid.Columns.Clear();
lvGrid.Items.Clear();
FillHeaders(jsonObject.Fields["headers"]);
FillRows(jsonObject.Fields["rows"]);
}
finally
{
lvGrid.EndUpdate();
}
}
private void FillHeaders(JsonObject jsonObject)
{
foreach (JsonObject header in jsonObject.Fields)
{
JsonObject nameHeader = header.Fields["name"];
if (nameHeader.JsonType == JsonType.Value && nameHeader.Value is string)
{
string name = (string)nameHeader.Value;
lvGrid.Columns.Add(name);
}
}
}
private void FillRows(JsonObject jsonObject)
{
string value;
foreach (JsonObject row in jsonObject.Fields)
{
List<string> rowValues = new List<string>();
foreach (JsonObject rowValue in row.Fields)
{
if (rowValue.JsonType == JsonType.Value && rowValue.Value != null)
{
value = rowValue.Value.ToString();
}
else
value = String.Empty;
rowValues.Add(value);
}
ListViewItem rowItem = new ListViewItem(rowValues.ToArray());
lvGrid.Items.Add(rowItem);
}
}
string IJsonViewerPlugin.DisplayName
{
get { return "Grid"; }
}
bool IJsonViewerPlugin.CanVisualize(JsonObject jsonObject)
{
return jsonObject.ContainsField("headers", JsonType.Array) &&
jsonObject.ContainsField("rows", JsonType.Array);
}
}
}