mirror of
https://github.com/asjqkkkk/flutter-todos.git
synced 2025-08-26 14:06:29 +08:00
🐛: Fix version update dialog now show error in a timeout error
This commit is contained in:
@ -356,6 +356,7 @@ class DemoLocalizations {
|
||||
String get loadingError => Intl.message('loading error', name: 'loadingError', desc: '加载出错了',);
|
||||
String get loading => Intl.message('loading...', name: 'loading', desc: '加载中...',);
|
||||
String get waiting => Intl.message('waiting...', name: 'waiting', desc: '请稍后...',);
|
||||
String get timeOut => Intl.message('timeout error', name: 'timeOut', desc: '超时错误',);
|
||||
String get pullUpToLoadMore => Intl.message('pull up load more', name: 'pullUpToLoadMore', desc: '上拉加载更多',);
|
||||
String get pullDownToRefresh => Intl.message('pull down to refresh', name: 'pullDownToRefresh', desc: '下拉刷新',);
|
||||
String get reLoading => Intl.message('click to reload', name: 'reLoading', desc: '点击重新加载',);
|
||||
|
@ -175,6 +175,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"taskNum" : MessageLookupByLibrary.simpleMessage("Task Number"),
|
||||
"thanksForFeedback" : MessageLookupByLibrary.simpleMessage("Thanks for your feedback"),
|
||||
"thePassword" : MessageLookupByLibrary.simpleMessage("password"),
|
||||
"timeOut" : MessageLookupByLibrary.simpleMessage("timeout error"),
|
||||
"toFinishTask" : MessageLookupByLibrary.simpleMessage("Try to complete a task!"),
|
||||
"travel" : MessageLookupByLibrary.simpleMessage("Travel"),
|
||||
"tryToSearch" : MessageLookupByLibrary.simpleMessage("Try searching for the title or content"),
|
||||
|
@ -175,6 +175,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"taskNum" : MessageLookupByLibrary.simpleMessage("任务数"),
|
||||
"thanksForFeedback" : MessageLookupByLibrary.simpleMessage("感谢你的反馈"),
|
||||
"thePassword" : MessageLookupByLibrary.simpleMessage("密码"),
|
||||
"timeOut" : MessageLookupByLibrary.simpleMessage("超时错误"),
|
||||
"toFinishTask" : MessageLookupByLibrary.simpleMessage("努力去完成一项任务吧"),
|
||||
"travel" : MessageLookupByLibrary.simpleMessage("旅行"),
|
||||
"tryToSearch" : MessageLookupByLibrary.simpleMessage("试试搜一下标题、内容吧"),
|
||||
|
@ -245,14 +245,14 @@ class _AboutPageState extends State<AboutPage> {
|
||||
final packageInfo = await PackageInfo.fromPlatform();
|
||||
bool needUpdate = UpdateInfoBean.needUpdate(
|
||||
packageInfo.version, updateInfo.appVersion);
|
||||
if (needUpdate) {
|
||||
if (!needUpdate) {
|
||||
Navigator.of(context).pop();
|
||||
showDialog(
|
||||
context: context,
|
||||
builder: (ctx2) {
|
||||
return UpdateDialog(
|
||||
version: updateInfo.appVersion,
|
||||
updateUrl: updateInfo.downloadUrl,
|
||||
updateUrl: "https://github.com/asjqkkkk/flutter-todos/releases/download/1.0.4/todo-list.apk",
|
||||
updateInfo: updateInfo.updateInfo,
|
||||
updateInfoColor: globalModel.logic.getBgInDark(),
|
||||
backgroundColor:
|
||||
|
@ -171,6 +171,7 @@ class _SynchronizeWidgetState extends State< SynchronizeWidget> {
|
||||
void uploadTask(TaskBean taskBean, String token) async{
|
||||
if(synFlag == SynFlag.failSynced) return;
|
||||
ApiService.instance.postCreateTask(
|
||||
taskBean: taskBean,
|
||||
success: (UploadTaskBean bean){
|
||||
syncedList.add(bean.uniqueId);
|
||||
taskBean.uniqueId = bean.uniqueId;
|
||||
|
@ -22,7 +22,9 @@ class UpdateDialog extends StatefulWidget {
|
||||
this.version = "1.0.0",
|
||||
this.updateInfo = "",
|
||||
this.updateUrl = "",
|
||||
this.isForce = false, this.backgroundColor, this.updateInfoColor,
|
||||
this.isForce = false,
|
||||
this.backgroundColor,
|
||||
this.updateInfoColor,
|
||||
});
|
||||
|
||||
@override
|
||||
@ -32,26 +34,21 @@ class UpdateDialog extends StatefulWidget {
|
||||
class UpdateDialogState extends State<UpdateDialog> {
|
||||
int _downloadProgress = 0;
|
||||
CancelToken token;
|
||||
bool isUpdating = false;
|
||||
UploadingFlag uploadingFlag = UploadingFlag.idle;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final bgColor = widget.backgroundColor ?? Theme
|
||||
.of(context)
|
||||
.primaryColor;
|
||||
final size = MediaQuery
|
||||
.of(context)
|
||||
.size;
|
||||
final bgColor = widget.backgroundColor ?? Theme.of(context).primaryColor;
|
||||
final size = MediaQuery.of(context).size;
|
||||
final isVertical = size.height > size.width;
|
||||
final marginLeft = isVertical ? size.width / 8 : size.width / 4;
|
||||
final marginTop = isVertical ? size.height / 4 : size.height / 8;
|
||||
|
||||
|
||||
return WillPopScope(
|
||||
onWillPop: () async => false,
|
||||
child: Container(
|
||||
margin: EdgeInsets.fromLTRB(
|
||||
marginLeft, marginTop, marginLeft, marginTop),
|
||||
margin:
|
||||
EdgeInsets.fromLTRB(marginLeft, marginTop, marginLeft, marginTop),
|
||||
decoration: BoxDecoration(
|
||||
shape: BoxShape.rectangle,
|
||||
borderRadius: BorderRadius.circular(10),
|
||||
@ -65,10 +62,10 @@ class UpdateDialogState extends State<UpdateDialog> {
|
||||
margin: EdgeInsets.fromLTRB(5, 30, 5, 5),
|
||||
child: Material(
|
||||
child: Text(
|
||||
DemoLocalizations
|
||||
.of(context)
|
||||
.newVersionIsComing,
|
||||
style: TextStyle(color:widget.updateInfoColor ?? Colors.white, fontSize: 20),
|
||||
DemoLocalizations.of(context).newVersionIsComing,
|
||||
style: TextStyle(
|
||||
color: widget.updateInfoColor ?? Colors.white,
|
||||
fontSize: 20),
|
||||
),
|
||||
color: Colors.transparent,
|
||||
)),
|
||||
@ -84,23 +81,12 @@ class UpdateDialogState extends State<UpdateDialog> {
|
||||
scrollDirection: Axis.vertical,
|
||||
child: Text(
|
||||
widget.updateInfo ?? "",
|
||||
style: TextStyle(color: widget.updateInfoColor ?? Colors.white),
|
||||
style: TextStyle(
|
||||
color: widget.updateInfoColor ?? Colors.white),
|
||||
),
|
||||
),
|
||||
))),
|
||||
_downloadProgress != 0
|
||||
? Expanded(
|
||||
child: Container(
|
||||
child: LinearProgressIndicator(
|
||||
valueColor:
|
||||
new AlwaysStoppedAnimation<Color>(Theme.of(context).primaryColorLight),
|
||||
backgroundColor: Colors.grey[300],
|
||||
value: _downloadProgress / 100,
|
||||
),
|
||||
),
|
||||
flex: 1,
|
||||
)
|
||||
: SizedBox(),
|
||||
getLoadingWidget(),
|
||||
Expanded(
|
||||
flex: 2,
|
||||
child: Container(
|
||||
@ -109,7 +95,7 @@ class UpdateDialogState extends State<UpdateDialog> {
|
||||
borderRadius: BorderRadius.only(
|
||||
bottomLeft: Radius.circular(10),
|
||||
bottomRight: Radius.circular(10)),
|
||||
color: Colors.white,
|
||||
color: widget.updateInfoColor ?? Colors.white,
|
||||
),
|
||||
child: Row(
|
||||
children: <Widget>[
|
||||
@ -121,10 +107,9 @@ class UpdateDialogState extends State<UpdateDialog> {
|
||||
Navigator.of(context).pop();
|
||||
},
|
||||
child: Text(
|
||||
DemoLocalizations
|
||||
.of(context)
|
||||
.cancel,
|
||||
style: TextStyle(color: Colors.grey, fontSize: 16),
|
||||
DemoLocalizations.of(context).cancel,
|
||||
style: TextStyle(
|
||||
color: Colors.grey, fontSize: 16),
|
||||
)),
|
||||
)
|
||||
: SizedBox(),
|
||||
@ -138,8 +123,10 @@ class UpdateDialogState extends State<UpdateDialog> {
|
||||
flex: 1,
|
||||
child: FlatButton(
|
||||
onPressed: () async {
|
||||
if(isUpdating) return;
|
||||
isUpdating = true;
|
||||
if (uploadingFlag == UploadingFlag.uploading)
|
||||
return;
|
||||
uploadingFlag = UploadingFlag.uploading;
|
||||
if (mounted) setState(() {});
|
||||
if (Platform.isAndroid) {
|
||||
_androidUpdate();
|
||||
} else if (Platform.isIOS) {
|
||||
@ -147,9 +134,7 @@ class UpdateDialogState extends State<UpdateDialog> {
|
||||
}
|
||||
},
|
||||
child: Text(
|
||||
DemoLocalizations
|
||||
.of(context)
|
||||
.update,
|
||||
DemoLocalizations.of(context).update,
|
||||
style: TextStyle(color: Colors.black, fontSize: 16),
|
||||
)),
|
||||
),
|
||||
@ -165,14 +150,19 @@ class UpdateDialogState extends State<UpdateDialog> {
|
||||
|
||||
void _androidUpdate() async {
|
||||
final apkPath = await FileUtil.getInstance().getSavePath("/Download/");
|
||||
ApiStrategy
|
||||
.getInstance()
|
||||
.client
|
||||
.download(widget.updateUrl, apkPath + "todo-list.apk",
|
||||
cancelToken: token, onReceiveProgress: (int count, int total) {
|
||||
try {
|
||||
await ApiStrategy.getInstance().client.download(
|
||||
widget.updateUrl, apkPath + "todo-list.apk", cancelToken: token,
|
||||
onReceiveProgress: (int count, int total) {
|
||||
if (mounted) {
|
||||
setState(() {
|
||||
_downloadProgress = ((count / total) * 100).toInt();
|
||||
if (_downloadProgress == 100) {
|
||||
if (mounted) {
|
||||
setState(() {
|
||||
uploadingFlag = UploadingFlag.uploaded;
|
||||
});
|
||||
}
|
||||
debugPrint("读取的目录:${apkPath}");
|
||||
try {
|
||||
OpenFile.open(apkPath + "todo-list.apk");
|
||||
@ -180,24 +170,101 @@ class UpdateDialogState extends State<UpdateDialog> {
|
||||
Navigator.of(context).pop();
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
} catch (e) {
|
||||
if (mounted) {
|
||||
setState(() {
|
||||
uploadingFlag = UploadingFlag.uploadingFailed;
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Widget getLoadingWidget() {
|
||||
if (_downloadProgress != 0 && uploadingFlag == UploadingFlag.uploading) {
|
||||
return Expanded(
|
||||
child: Container(
|
||||
child: LinearProgressIndicator(
|
||||
valueColor:
|
||||
AlwaysStoppedAnimation<Color>(Theme.of(context).primaryColor),
|
||||
backgroundColor: Colors.grey[300],
|
||||
value: _downloadProgress / 100,
|
||||
),
|
||||
),
|
||||
flex: 1,
|
||||
);
|
||||
}
|
||||
if (uploadingFlag == UploadingFlag.uploading && _downloadProgress == 0) {
|
||||
return Container(
|
||||
alignment: Alignment.center,
|
||||
height: 40,
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
children: <Widget>[
|
||||
CircularProgressIndicator(
|
||||
valueColor: AlwaysStoppedAnimation<Color>(widget.updateInfoColor ?? Colors.white),
|
||||
),
|
||||
SizedBox(
|
||||
width: 5,
|
||||
),
|
||||
Material(
|
||||
child: Text(
|
||||
DemoLocalizations.of(context).waiting,
|
||||
style: TextStyle(color: widget.updateInfoColor ?? Colors.white),
|
||||
),
|
||||
color: Colors.transparent,
|
||||
)
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
if (uploadingFlag == UploadingFlag.uploadingFailed) {
|
||||
return Container(
|
||||
alignment: Alignment.center,
|
||||
height: 40,
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
children: <Widget>[
|
||||
Icon(
|
||||
Icons.clear,
|
||||
color: Colors.redAccent,
|
||||
),
|
||||
SizedBox(
|
||||
width: 5,
|
||||
),
|
||||
Material(
|
||||
child: Text(
|
||||
DemoLocalizations.of(context).timeOut,
|
||||
style:
|
||||
TextStyle(color: widget.updateInfoColor ?? Colors.white),
|
||||
),
|
||||
color: Colors.transparent,
|
||||
)
|
||||
],
|
||||
));
|
||||
}
|
||||
return Container();
|
||||
}
|
||||
|
||||
void _iosUpdate() {
|
||||
launch(widget.updateUrl);
|
||||
}
|
||||
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
token = new CancelToken();
|
||||
super.initState();
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
if (!token.isCancelled) token?.cancel();
|
||||
super.dispose();
|
||||
token?.cancel();
|
||||
debugPrint("升级销毁");
|
||||
}
|
||||
}
|
||||
|
||||
enum UploadingFlag { uploading, idle, uploaded, uploadingFailed }
|
||||
|
@ -995,6 +995,12 @@
|
||||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"timeOut": "timeout error",
|
||||
"@timeOut": {
|
||||
"description": "超时错误",
|
||||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"pullUpToLoadMore": "pull up load more",
|
||||
"@pullUpToLoadMore": {
|
||||
"description": "上拉加载更多",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"@@last_modified": "2019-08-26T16:23:12.738549",
|
||||
"@@last_modified": "2019-08-26T23:04:59.147083",
|
||||
"appName": "One Day List",
|
||||
"@appName": {
|
||||
"description": "app的名字",
|
||||
@ -994,6 +994,12 @@
|
||||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"timeOut": "timeout error",
|
||||
"@timeOut": {
|
||||
"description": "超时错误",
|
||||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"pullUpToLoadMore": "pull up load more",
|
||||
"@pullUpToLoadMore": {
|
||||
"description": "上拉加载更多",
|
||||
|
@ -994,6 +994,12 @@
|
||||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"timeOut": "超时错误",
|
||||
"@timeOut": {
|
||||
"description": "超时错误",
|
||||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"pullUpToLoadMore": "上拉加载更多",
|
||||
"@pullUpToLoadMore": {
|
||||
"description": "上拉加载更多",
|
||||
|
Reference in New Issue
Block a user