Skip to content

Commit 00e9087

Browse files
committedApr 4, 2021
Fix clone method
1 parent 0fa95ed commit 00e9087

File tree

4 files changed

+36
-10
lines changed

4 files changed

+36
-10
lines changed
 

‎Flutter/json_to_dart/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## 1.1.0
2+
3+
* Add clone method
4+
5+
## 1.0.0
6+
7+
* First Release

‎Flutter/json_to_dart/lib/models/dart_object.dart

+27-8
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,6 @@ class DartObject extends DartProperty {
253253
(ConfigSetting().nullsafety && item.nullable),
254254
);
255255
final bool isGetSet = fss.startsWith('{');
256-
257256
if (item is DartObject) {
258257
className = item.className;
259258

@@ -319,11 +318,32 @@ class DartObject extends DartProperty {
319318
<String>[typeString, name, lowName]));
320319
fromJsonSb.writeLine(setString);
321320

322-
final bool nonNullAble = ConfigSetting().nullsafety && !item.nullable;
321+
// String setNameTemp = setName;
322+
323+
// if (className != null) {
324+
// String toJson = '=> e.toJson()';
325+
// dynamic value = item.value;
326+
// String typeString = className;
327+
// while (value is List) {
328+
// toJson = '=> e.map(($typeString e) $toJson)';
329+
// typeString = 'List<$typeString>';
330+
// if (value.isNotEmpty) {
331+
// value = value.first;
332+
// } else {
333+
// break;
334+
// }
335+
// }
336+
// toJson = toJson.replaceFirst('=>', '');
337+
// toJson = toJson.replaceFirst('e', '');
338+
// toJson = toJson.trim();
339+
340+
// final bool nonNullAble = ConfigSetting().nullsafety && !item.nullable;
341+
// setNameTemp += '${nonNullAble ? '' : '?'}$toJson';
342+
// }
343+
323344
toJsonSb.writeLine(stringFormat(DartHelper.toJsonSetString, <String>[
324345
item.key,
325-
setName +
326-
(item is DartObject ? '${nonNullAble ? '' : '?'}.toJson()' : '')
346+
setName,
327347
]));
328348
}
329349

@@ -362,7 +382,8 @@ class DartObject extends DartProperty {
362382
sb.writeLine(propertySb.toString());
363383
sb.writeLine(DartHelper.classToString);
364384
sb.writeLine(toJsonSb.toString());
365-
sb.writeLine(stringFormat(DartHelper.classToClone, <String>[className]));
385+
sb.writeLine(stringFormat(DartHelper.classToClone,
386+
<String>[className, if (ConfigSetting().nullsafety) '!' else '']));
366387
}
367388

368389
sb.writeLine(DartHelper.classFooter);
@@ -408,8 +429,6 @@ class DartObject extends DartProperty {
408429
@override
409430
List<Object?> get props => <Object?>[
410431
className,
411-
nullable,
412-
propertyAccessorType,
413-
type,
432+
properties,
414433
];
415434
}

‎Flutter/json_to_dart/lib/utils/dart_helper.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ import 'dart:convert';''';
101101
' \n@override\nString toString() {\n return jsonEncode(this);\n }';
102102

103103
static const String classToClone =
104-
'\n{0} clone() => {0}.fromJson(toJson());\n';
104+
'\n{0} clone() => {0}.fromJson(asT<Map<String, dynamic>>(jsonDecode(jsonEncode(this))){1});\n';
105105

106106
static DartType converDartType(Type type) {
107107
if (type == int) {

‎Flutter/json_to_dart/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description: The tool to convert json to dart code.
1111
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
1212
# Read more about iOS versioning at
1313
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
14-
version: 1.0.0+1
14+
version: 1.1.0
1515

1616
environment:
1717
sdk: '>=2.12.0 <3.0.0'

0 commit comments

Comments
 (0)
Please sign in to comment.