Skip to content

Commit 5523e26

Browse files
committed
add the english version
1 parent 9616281 commit 5523e26

7 files changed

+172
-24
lines changed

README.md

+15-10
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,27 @@
11
# json2dart_serialization
22

3-
一个网页版本的json转dart库
3+
[English readme](https://github.com/CaiJingLong/json2dart/blob/master/README_ENG.md)
4+
5+
一个网页版本的 json 转 dart 库
6+
7+
[直接使用 json2dart](https://caijinglong.github.io/json2dart/index.html)
48

59
## 说明
610

7-
不同于https://github.com/debuggerx01/JSONFormat4Flutter 的是:这个是为了json_serializable创建的
8-
页面较简陋,功能完善😊
11+
感谢[JSONFormat4Flutter](https://github.com/debuggerx01/JSONFormat4Flutter) 给予的灵感
12+
不同于这个库的是:这个是为了 json_serializable 创建的
913

10-
json_serializable 可以参考flutter官网json部分 [flutter](https://flutter.io/json)
14+
json_serializable 可以参考 flutter 官网 json 部分 [flutter](https://flutter.io/json)
1115

12-
项目的展示地址: https://caijinglong.github.io/json2dart/
16+
项目使用 dart web 开发
1317

14-
项目使用dart web开发
15-
## 说明
16-
主体功能完结,有需要修改的地方欢迎留言
18+
主体功能已完结,有需要修改的地方欢迎留言
1719

20+
## 开发环境
1821

19-
```
22+
其他环境不保证可以编译这份代码
23+
24+
```cli
2025
dart --version
2126
Dart VM version: 2.0.0-dev.69.5 (Tue Jul 31 15:05:14 2018 +0200) on "macos_x64"
2227
```
@@ -26,4 +31,4 @@ Dart VM version: 2.0.0-dev.69.5 (Tue Jul 31 15:05:14 2018 +0200) on "macos_x64"
2631
Created from templates made available by Stagehand under a BSD-style
2732
[license](https://github.com/dart-lang/stagehand/blob/master/LICENSE).
2833

29-
the library also under BSD-style.
34+
the library also under BSD-style.

README_ENG.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# json2dart_serialization
2+
3+
a dart web for json2dart
4+
5+
use for web location: [json2dart](https://caijinglong.github.io/json2dart/index.html)
6+
7+
## intro
8+
9+
Thank you for the inspiration of this [JSONFormat4Flutter](https://github.com/debuggerx01/JSONFormat4Flutter)
10+
11+
This project was created for the [json_serializable](https://pub.dartlang.org/packages/json_serializable)
12+
13+
json_serializable also read the flutter's json page [flutter](https://flutter.io/json)
14+
15+
## the code compile env
16+
17+
```cli
18+
dart --version
19+
Dart VM version: 2.0.0-dev.69.5 (Tue Jul 31 15:05:14 2018 +0200) on "macos_x64"
20+
```
21+
22+
## license
23+
24+
Created from templates made available by Stagehand under a BSD-style
25+
[license](https://github.com/dart-lang/stagehand/blob/master/LICENSE).
26+
27+
the library also under BSD-style.

lib/json_generator.dart

+41-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import 'dart:async';
12
import 'dart:convert';
23
import 'dart:html';
34

@@ -21,12 +22,14 @@ var downloadFileName = "";
2122
// }""";
2223
const defaultValue = "";
2324

24-
void main() {
25+
void main() async {
26+
isChinese = await _isChinese();
27+
2528
TextAreaElement jsonInput = querySelector("#json");
2629
jsonInput.value = defaultValue;
2730

2831
jsonInput.onInput.listen((event) {
29-
print(jsonInput.value);
32+
// print(jsonInput.value);
3033
refreshData();
3134
});
3235

@@ -106,15 +109,40 @@ void main() {
106109
});
107110
}
108111

109-
void refreshData() {
112+
Future<bool> _isChinese() async {
113+
// var lang = await findSystemLocale();
114+
List<MetaElement> elements = querySelectorAll("meta");
115+
116+
String lang;
117+
for (var e in elements) {
118+
var _lang = e.getAttribute("lang");
119+
if (_lang != null) {
120+
lang = _lang;
121+
break;
122+
}
123+
}
124+
if (lang?.contains("zh") == true) {
125+
return true;
126+
}
127+
128+
return false;
129+
}
130+
131+
bool isChinese = false;
132+
133+
void refreshData() async {
110134
TextAreaElement jsonInput = querySelector("#json");
111135
var string = jsonInput.value;
112136
String pretty;
113137
TextAreaElement result = querySelector("#result");
114138
try {
115139
pretty = formatJson(string);
116140
} on Exception {
117-
result.value = "不是一个正确的json";
141+
if (isChinese) {
142+
result.value = "不是一个正确的json";
143+
} else {
144+
result.value = "Not JSON";
145+
}
118146
return;
119147
}
120148
String entityClassName;
@@ -128,7 +156,15 @@ void refreshData() {
128156
var dartCode = generator.makeDartCode();
129157
var dartFileName = ("${generator.fileName}.dart");
130158
downloadFileName = dartFileName;
131-
querySelector("#file_name").text = "应该使用的文件名为: $dartFileName";
159+
160+
String filePrefix;
161+
if (isChinese) {
162+
filePrefix = "应该使用的文件名为:";
163+
} else {
164+
filePrefix = "your dart file name is:";
165+
}
166+
print(filePrefix);
167+
querySelector("#file_name").text = "$filePrefix $dartFileName";
132168

133169
result.value = dartCode;
134170
}

pubspec.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ environment:
1212
dependencies:
1313
# Your other regular dependencies here
1414
json_annotation: ^0.2.3
15+
intl: ^0.15.7
1516

17+
1618
dev_dependencies:
1719
build_runner: ^0.9.0
1820
build_web_compilers: ^0.4.0

web/index.html

+14-8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
<head>
66
<meta charset="utf-8" />
7+
<meta lang="en" />
78
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
89
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
910
<meta name="scaffolded-by" content="https://github.com/google/stagehand" />
@@ -14,13 +15,18 @@
1415
</head>
1516

1617
<body>
17-
<h1>为了便利使用json_serializable库</h1>
18+
<div class="lang">
19+
<a href="index_ch.html">中文</a>
20+
</div>
21+
<h1>simple use
22+
<a href="https://pub.dartlang.org/packages/json_serializable" target="_blank">json_serializable</a>
23+
</h1>
1824
<div>
1925
<div class="title">
20-
<span class="half_span">将json粘贴至左边</span>
26+
<span class="half_span">copy your json to left textarea</span>
2127
<span class="half_span">
2228
<div class="result_title">
23-
类名称
29+
dart class name
2430
<input id="out_entity_name" />
2531
<input type="checkbox" id="use_json_key" />
2632
<span id="check_label">jsonKey annotation</span>
@@ -32,19 +38,19 @@ <h1>为了便利使用json_serializable库</h1>
3238
</div>
3339
<div class="content">
3440
<span class="half_span">
35-
<textarea id="json" title="json字符串" class="content_area"></textarea>
41+
<textarea id="json" title="json" class="content_area"></textarea>
3642
</span>
3743
<span class="half_span">
38-
<textarea id="result" title="结果" class="content_area"></textarea>
44+
<textarea id="result" title="result" class="content_area"></textarea>
3945
</span>
4046
</div>
4147
<div class="func">
4248
<span class="half_span">
43-
<button id="format">格式化</button>
49+
<button id="format">format</button>
4450
</span>
4551
<span class="half_span">
46-
<button id="copy">复制</button>
47-
<button id="save">下载</button>
52+
<button id="copy">copy</button>
53+
<button id="save">download</button>
4854
</span>
4955
</div>
5056
</div>

web/index_ch.html

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!DOCTYPE html>
2+
3+
<html>
4+
5+
<head>
6+
<meta charset="utf-8" />
7+
<meta lang="zh-CN" />
8+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
9+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
10+
<meta name="scaffolded-by" content="https://github.com/google/stagehand" />
11+
<title>json2dart_for_json_serializable</title>
12+
<link rel="stylesheet" href="styles.css">
13+
<link rel="icon" href="favicon.ico">
14+
<script defer src="main.dart.js"></script>
15+
</head>
16+
17+
<body>
18+
<div class="lang">
19+
<a href="index.html">English</a>
20+
</div>
21+
<h1>为了便利使用
22+
<a href="https://pub.dartlang.org/packages/json_serializable">json_serializable</a></h1>
23+
<div>
24+
<div class="title">
25+
<span class="half_span">将json粘贴至左边</span>
26+
<span class="half_span">
27+
<div class="result_title">
28+
类名称
29+
<input id="out_entity_name" />
30+
<input type="checkbox" id="use_json_key" />
31+
<span id="check_label">jsonKey annotation</span>
32+
<input type="checkbox" id="camelCase" />
33+
<span id="camelCaseLabel">use camelCase</span>
34+
</div>
35+
<div id="file_name"></div>
36+
</span>
37+
</div>
38+
<div class="content">
39+
<span class="half_span">
40+
<textarea id="json" title="json字符串" class="content_area"></textarea>
41+
</span>
42+
<span class="half_span">
43+
<textarea id="result" title="结果" class="content_area"></textarea>
44+
</span>
45+
</div>
46+
<div class="func">
47+
<span class="half_span">
48+
<button id="format">格式化</button>
49+
</span>
50+
<span class="half_span">
51+
<button id="copy">复制</button>
52+
<button id="save">下载</button>
53+
</span>
54+
</div>
55+
</div>
56+
</body>
57+
58+
</html>

web/styles.css

+15-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ textarea {
6262
}
6363

6464
button {
65-
width: 5rem;
65+
width: 6rem;
6666
height: 2rem;
6767
font-size: 1rem;
6868
}
@@ -72,3 +72,17 @@ button {
7272
padding-top: 5px;
7373
color: mediumvioletred;
7474
}
75+
76+
.lang {
77+
padding-right: 1vw;
78+
padding-top: 1vh;
79+
text-align: right;
80+
}
81+
82+
a {
83+
color: blue;
84+
text-decoration: none;
85+
}
86+
a:hover {
87+
text-decoration-line: underline;
88+
}

0 commit comments

Comments
 (0)