AppUpdate: Add link to install manually

This commit is contained in:
Neeraj Gupta 2022-10-17 13:03:34 +05:30
parent 707db4e667
commit 885678126d
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1

View file

@ -7,6 +7,8 @@ import 'package:photos/core/configuration.dart';
import 'package:photos/core/network.dart'; import 'package:photos/core/network.dart';
import 'package:photos/ente_theme_data.dart'; import 'package:photos/ente_theme_data.dart';
import 'package:photos/services/update_service.dart'; import 'package:photos/services/update_service.dart';
import 'package:photos/theme/ente_theme.dart';
import 'package:url_launcher/url_launcher_string.dart';
class AppUpdateDialog extends StatefulWidget { class AppUpdateDialog extends StatefulWidget {
final LatestVersionInfo latestVersionInfo; final LatestVersionInfo latestVersionInfo;
@ -21,11 +23,30 @@ class _AppUpdateDialogState extends State<AppUpdateDialog> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
final List<Widget> changelog = []; final List<Widget> changelog = [];
final enteTextTheme = getEnteTextTheme(context);
final enteColor = getEnteColorScheme(context);
for (final log in widget.latestVersionInfo.changelog) { for (final log in widget.latestVersionInfo.changelog) {
changelog.add( changelog.add(
Padding( Padding(
padding: const EdgeInsets.fromLTRB(8, 4, 0, 4), padding: const EdgeInsets.fromLTRB(0, 4, 0, 4),
child: Text("- " + log, style: Theme.of(context).textTheme.caption), child: Row(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
"- ",
style: enteTextTheme.small.copyWith(color: enteColor.textMuted),
),
Flexible(
child: Text(
log,
softWrap: true,
style:
enteTextTheme.small.copyWith(color: enteColor.textMuted),
),
)
],
),
), ),
); );
} }
@ -34,20 +55,10 @@ class _AppUpdateDialogState extends State<AppUpdateDialog> {
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
children: [ children: [
Text( Text(
widget.latestVersionInfo.name, "A new version of ente is available.",
style: const TextStyle( style: enteTextTheme.body.copyWith(color: enteColor.textMuted),
fontSize: 20,
fontWeight: FontWeight.bold,
),
), ),
const Padding(padding: EdgeInsets.all(8)), const Padding(padding: EdgeInsets.all(8)),
const Text(
"Changelog",
style: TextStyle(
fontSize: 18,
),
),
const Padding(padding: EdgeInsets.all(4)),
Column( Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: changelog, children: changelog,
@ -55,12 +66,12 @@ class _AppUpdateDialogState extends State<AppUpdateDialog> {
const Padding(padding: EdgeInsets.all(8)), const Padding(padding: EdgeInsets.all(8)),
SizedBox( SizedBox(
width: double.infinity, width: double.infinity,
height: 64, height: 56,
child: OutlinedButton( child: OutlinedButton(
style: Theme.of(context).outlinedButtonTheme.style.copyWith( style: Theme.of(context).outlinedButtonTheme.style.copyWith(
textStyle: MaterialStateProperty.resolveWith<TextStyle>( textStyle: MaterialStateProperty.resolveWith<TextStyle>(
(Set<MaterialState> states) { (Set<MaterialState> states) {
return Theme.of(context).textTheme.subtitle1; return enteTextTheme.bodyBold;
}, },
), ),
), ),
@ -79,6 +90,22 @@ class _AppUpdateDialogState extends State<AppUpdateDialog> {
), ),
), ),
), ),
const Padding(padding: EdgeInsets.all(8)),
Center(
child: InkWell(
child: Text(
"Install manually",
style: Theme.of(context)
.textTheme
.caption
.copyWith(decoration: TextDecoration.underline),
),
onTap: () => launchUrlString(
widget.latestVersionInfo.url,
mode: LaunchMode.externalApplication,
),
),
)
], ],
); );
final shouldForceUpdate = final shouldForceUpdate =
@ -86,8 +113,24 @@ class _AppUpdateDialogState extends State<AppUpdateDialog> {
return WillPopScope( return WillPopScope(
onWillPop: () async => !shouldForceUpdate, onWillPop: () async => !shouldForceUpdate,
child: AlertDialog( child: AlertDialog(
title: Text( title: Column(
shouldForceUpdate ? "Critical update available" : "Update available", crossAxisAlignment: CrossAxisAlignment.start,
children: [
Icon(
Icons.auto_awesome_outlined,
size: 48,
color: enteColor.strokeMuted,
),
const SizedBox(
height: 16,
),
Text(
shouldForceUpdate
? "Critical update available"
: "Update available",
style: enteTextTheme.h3Bold,
),
],
), ),
content: content, content: content,
), ),