forked from firka/student-legacy
186 lines
6.0 KiB
Dart
186 lines
6.0 KiB
Dart
import 'package:refilc/api/providers/status_provider.dart';
|
|
import 'package:refilc/models/release.dart';
|
|
import 'package:refilc/theme/colors/colors.dart';
|
|
import 'package:refilc/utils/color.dart';
|
|
import 'package:refilc_mobile_ui/common/bottom_card.dart';
|
|
import 'package:refilc_mobile_ui/common/custom_snack_bar.dart';
|
|
import 'package:refilc_mobile_ui/common/material_action_button.dart';
|
|
import 'package:refilc/helpers/update_helper.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_custom_tabs/flutter_custom_tabs.dart';
|
|
import 'package:flutter_markdown/flutter_markdown.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:connectivity_plus/connectivity_plus.dart';
|
|
import 'updates_view.i18n.dart';
|
|
|
|
class UpdateView extends StatefulWidget {
|
|
const UpdateView(this.release, {super.key});
|
|
|
|
final Release release;
|
|
|
|
static void show(Release release, {required BuildContext context}) =>
|
|
showBottomCard(context: context, child: UpdateView(release));
|
|
|
|
@override
|
|
UpdateViewState createState() => UpdateViewState();
|
|
}
|
|
|
|
class UpdateViewState extends State<UpdateView> {
|
|
double progress = 0.0;
|
|
UpdateState state = UpdateState.none;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Padding(
|
|
padding: const EdgeInsets.all(12.0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 12.0),
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
"new_update".i18n,
|
|
style: const TextStyle(
|
|
fontWeight: FontWeight.w700, fontSize: 18.0),
|
|
),
|
|
Text(
|
|
"${widget.release.version}",
|
|
style: TextStyle(
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 16.0,
|
|
color:
|
|
AppColors.of(context).text.withValues(alpha: 0.6),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
ClipRRect(
|
|
borderRadius: BorderRadius.circular(18.0),
|
|
child: Image.asset(
|
|
"assets/icons/ic_launcher.png",
|
|
width: 64.0,
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
|
|
// Description
|
|
Container(
|
|
margin: const EdgeInsets.only(top: 8.0),
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(12.0),
|
|
),
|
|
child: SizedBox(
|
|
height: 200.0,
|
|
child: Markdown(
|
|
padding: const EdgeInsets.symmetric(horizontal: 12.0),
|
|
physics: const BouncingScrollPhysics(),
|
|
data: widget.release.body,
|
|
onTapLink: (text, href, title) =>
|
|
launchUrl(Uri.parse(href ?? "")),
|
|
),
|
|
),
|
|
),
|
|
|
|
// Download button
|
|
Center(
|
|
child: MaterialActionButton(
|
|
backgroundColor: AppColors.of(context).filc,
|
|
onPressed:
|
|
state == UpdateState.none ? () => downloadPrecheck() : null,
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
if (state == UpdateState.downloading ||
|
|
state == UpdateState.preparing)
|
|
Container(
|
|
height: 18.0,
|
|
width: 18.0,
|
|
margin: const EdgeInsets.only(right: 8.0),
|
|
child: CircularProgressIndicator(
|
|
value: progress > 0.05 ? progress : null,
|
|
color: ColorUtils.foregroundColor(
|
|
AppColors.of(context).filc),
|
|
),
|
|
),
|
|
Text([
|
|
"download".i18n,
|
|
"downloading".i18n,
|
|
"downloading".i18n,
|
|
"installing".i18n
|
|
][state.index]
|
|
.toUpperCase()),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
String fmtSize() =>
|
|
"${(widget.release.downloads.first.size / 1024 / 1024).toStringAsFixed(1)} MB";
|
|
|
|
void downloadPrecheck() {
|
|
final status = Provider.of<StatusProvider>(context, listen: false);
|
|
if (status.networkType == ConnectivityResult.mobile) {
|
|
showDialog(
|
|
context: context,
|
|
builder: (context) => AlertDialog(
|
|
title: Text("mobileAlertTitle".i18n),
|
|
content: Text("mobileAlertDesc".i18n.fill([fmtSize()])),
|
|
actions: [
|
|
TextButton(
|
|
onPressed: () {
|
|
Navigator.of(context).pop(false);
|
|
},
|
|
child: Text("no".i18n),
|
|
),
|
|
TextButton(
|
|
onPressed: () {
|
|
Navigator.of(context).pop(true);
|
|
},
|
|
child: Text("yes".i18n),
|
|
),
|
|
],
|
|
),
|
|
).then((value) => value ? download() : null);
|
|
} else {
|
|
download();
|
|
}
|
|
}
|
|
|
|
void download() {
|
|
widget.release
|
|
.install(updateCallback: (p, s) {
|
|
if (mounted) {
|
|
setState(() {
|
|
progress = p;
|
|
state = s;
|
|
});
|
|
}
|
|
})
|
|
.then((_) => Navigator.of(context).maybePop())
|
|
.catchError((error, stackTrace) {
|
|
if (mounted) {
|
|
Navigator.of(context).maybePop();
|
|
ScaffoldMessenger.of(context).showSnackBar(CustomSnackBar(
|
|
context: context,
|
|
content: Text("error".i18n),
|
|
backgroundColor: AppColors.of(context).red,
|
|
));
|
|
setState(() => state = UpdateState.none);
|
|
}
|
|
return true;
|
|
});
|
|
}
|
|
}
|