-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathflutter_json_widget.dart
349 lines (327 loc) · 9.6 KB
/
flutter_json_widget.dart
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
// ignore_for_file: unnecessary_string_escapes
import 'package:flutter/material.dart';
class JsonViewerWidget extends StatefulWidget {
final Map<String, dynamic> jsonObj;
final bool notRoot;
const JsonViewerWidget(this.jsonObj, {super.key, this.notRoot = false});
@override
JsonViewerWidgetState createState() => JsonViewerWidgetState();
}
class JsonViewerWidgetState extends State<JsonViewerWidget> {
Map<String, bool> openFlag = {};
@override
Widget build(BuildContext context) {
if (widget.notRoot) {
return Container(
padding: const EdgeInsets.only(left: 14.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: _getList()));
}
return Column(
crossAxisAlignment: CrossAxisAlignment.start, children: _getList());
}
_getList() {
List<Widget> list = [];
for (MapEntry entry in widget.jsonObj.entries) {
bool ex = isExtensible(entry.value);
bool ink = isInkWell(entry.value);
list.add(Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
ex
? ((openFlag[entry.key] ?? false)
? Icon(Icons.arrow_drop_down,
size: 14, color: Colors.grey[700])
: Icon(Icons.arrow_right, size: 14, color: Colors.grey[700]))
: const Icon(
Icons.arrow_right,
color: Color.fromARGB(0, 0, 0, 0),
size: 14,
),
(ex && ink)
? InkWell(
child: Text(entry.key,
style: TextStyle(color: Colors.purple[900])),
onTap: () {
setState(() {
openFlag[entry.key] = !(openFlag[entry.key] ?? false);
});
})
: Text(entry.key,
style: TextStyle(
color: entry.value == null
? Colors.grey
: Colors.purple[900])),
const Text(
':',
style: TextStyle(color: Colors.grey),
),
const SizedBox(width: 3),
getValueWidget(entry)
],
));
list.add(const SizedBox(height: 4));
if (openFlag[entry.key] ?? false) {
list.add(getContentWidget(entry.value));
}
}
return list;
}
static getContentWidget(dynamic content) {
if (content is List) {
return JsonArrayViewerWidget(content, notRoot: true);
} else {
return JsonViewerWidget(content, notRoot: true);
}
}
static isInkWell(dynamic content) {
if (content == null) {
return false;
} else if (content is int) {
return false;
} else if (content is String) {
return false;
} else if (content is bool) {
return false;
} else if (content is double) {
return false;
} else if (content is List) {
if (content.isEmpty) {
return false;
} else {
return true;
}
}
return true;
}
getValueWidget(MapEntry entry) {
if (entry.value == null) {
return const Expanded(
child: Text(
'undefined',
style: TextStyle(color: Colors.grey),
));
} else if (entry.value is int) {
return Expanded(
child: Text(
entry.value.toString(),
style: const TextStyle(color: Colors.teal),
));
} else if (entry.value is String) {
return Expanded(
child: Text(
// ignore: prefer_interpolation_to_compose_strings
'${'\"' + entry.value}\"',
style: const TextStyle(color: Colors.redAccent),
));
} else if (entry.value is bool) {
return Expanded(
child: Text(
entry.value.toString(),
style: const TextStyle(color: Colors.purple),
));
} else if (entry.value is double) {
return Expanded(
child: Text(
entry.value.toString(),
style: const TextStyle(color: Colors.teal),
));
} else if (entry.value is List) {
if (entry.value.isEmpty) {
return const Text(
'Array[0]',
style: TextStyle(color: Colors.grey),
);
} else {
return InkWell(
child: Text(
'Array<${getTypeName(entry.value[0])}>[${entry.value.length}]',
style: const TextStyle(color: Colors.grey),
),
onTap: () {
setState(() {
openFlag[entry.key] = !(openFlag[entry.key] ?? false);
});
});
}
}
return InkWell(
child: const Text(
'Object',
style: TextStyle(color: Colors.grey),
),
onTap: () {
setState(() {
openFlag[entry.key] = !(openFlag[entry.key] ?? false);
});
});
}
static isExtensible(dynamic content) {
if (content == null) {
return false;
} else if (content is int) {
return false;
} else if (content is String) {
return false;
} else if (content is bool) {
return false;
} else if (content is double) {
return false;
}
return true;
}
static getTypeName(dynamic content) {
if (content is int) {
return 'int';
} else if (content is String) {
return 'String';
} else if (content is bool) {
return 'bool';
} else if (content is double) {
return 'double';
} else if (content is List) {
return 'List';
}
return 'Object';
}
}
class JsonArrayViewerWidget extends StatefulWidget {
final List<dynamic> jsonArray;
final bool? notRoot;
const JsonArrayViewerWidget(this.jsonArray, {super.key, this.notRoot = false});
@override
_JsonArrayViewerWidgetState createState() =>
_JsonArrayViewerWidgetState();
}
class _JsonArrayViewerWidgetState extends State<JsonArrayViewerWidget> {
List<bool>? openFlag;
@override
Widget build(BuildContext context) {
if (widget.notRoot ?? false) {
return Container(
padding: const EdgeInsets.only(left: 14.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: _getList()));
}
return Column(
crossAxisAlignment: CrossAxisAlignment.start, children: _getList());
}
@override
void initState() {
super.initState();
openFlag = List.filled(widget.jsonArray.length, false);
}
_getList() {
List<Widget> list = [];
int i = 0;
for (dynamic content in widget.jsonArray) {
bool ex = JsonViewerWidgetState.isExtensible(content);
bool ink = JsonViewerWidgetState.isInkWell(content);
list.add(Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
ex
? ((openFlag?[i] ?? false)
? Icon(Icons.arrow_drop_down,
size: 14, color: Colors.grey[700])
: Icon(Icons.arrow_right, size: 14, color: Colors.grey[700]))
: const Icon(
Icons.arrow_right,
color: Color.fromARGB(0, 0, 0, 0),
size: 14,
),
(ex && ink)
? getInkWell(i)
: Text('[$i]',
style: TextStyle(
color:
content == null ? Colors.grey : Colors.purple[900])),
const Text(
':',
style: TextStyle(color: Colors.grey),
),
const SizedBox(width: 3),
getValueWidget(content, i)
],
));
list.add(const SizedBox(height: 4));
if (openFlag?[i] ?? false) {
list.add(JsonViewerWidgetState.getContentWidget(content));
}
i++;
}
return list;
}
getInkWell(int index) {
return InkWell(
child: Text('[$index]', style: TextStyle(color: Colors.purple[900])),
onTap: () {
setState(() {
openFlag?[index] = !(openFlag?[index] ?? false);
});
});
}
getValueWidget(dynamic content, int index) {
if (content == null) {
return const Expanded(
child: Text(
'undefined',
style: TextStyle(color: Colors.grey),
));
} else if (content is int) {
return Expanded(
child: Text(
content.toString(),
style: const TextStyle(color: Colors.teal),
));
} else if (content is String) {
return Expanded(
child: Text(
'\"$content\"',
style: const TextStyle(color: Colors.redAccent),
));
} else if (content is bool) {
return Expanded(
child: Text(
content.toString(),
style: const TextStyle(color: Colors.purple),
));
} else if (content is double) {
return Expanded(
child: Text(
content.toString(),
style: const TextStyle(color: Colors.teal),
));
} else if (content is List) {
if (content.isEmpty) {
return const Text(
'Array[0]',
style: TextStyle(color: Colors.grey),
);
} else {
return InkWell(
child: Text(
'Array<${JsonViewerWidgetState.getTypeName(content)}>[${content.length}]',
style: const TextStyle(color: Colors.grey),
),
onTap: () {
setState(() {
openFlag?[index] = !(openFlag?[index] ?? false);
});
});
}
}
return InkWell(
child: const Text(
'Object',
style: TextStyle(color: Colors.grey),
),
onTap: () {
setState(() {
openFlag?[index] = !(openFlag?[index] ?? false);
});
});
}
}