forked from SatoshiPortal/bullbitcoin-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata_backup_options_screen.dart
More file actions
397 lines (374 loc) · 14.1 KB
/
Copy pathmetadata_backup_options_screen.dart
File metadata and controls
397 lines (374 loc) · 14.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
import 'package:bb_mobile/core/themes/app_theme.dart';
import 'package:bb_mobile/core/utils/build_context_x.dart';
import 'package:bb_mobile/core/widgets/buttons/button.dart';
import 'package:bb_mobile/core/widgets/navbar/top_bar.dart';
import 'package:bb_mobile/core/widgets/snackbar_utils.dart';
import 'package:bb_mobile/features/backup_settings/presentation/backup_settings_failure_l10n.dart';
import 'package:bb_mobile/features/backup_settings/presentation/cubit/wallet_backup_settings_cubit.dart';
import 'package:bb_mobile/features/backup_settings/presentation/cubit/wallet_backup_settings_state.dart';
import 'package:bb_mobile/features/wallet_backup/public/wallet_backup_facade.dart';
import 'package:bb_mobile/locator.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:gap/gap.dart';
import 'package:go_router/go_router.dart';
import 'package:intl/intl.dart';
/// Everything the Get Paid metadata backup can be told to do, on its own
/// surface: the automatic-backup toggle, an immediate write, deletion of the
/// remote copy, the last result, and the recovery retry.
///
/// Laid out like the Backup Settings screen it is opened from — the state stated
/// first as a label/value line with the one fact that matters under it, then any
/// notice that needs an answer, then the actions as full-width buttons. The
/// Backup Settings screen keeps only the one-line summary; every action lives
/// here. Pushed as its own route, so it resolves its own cubit rather than
/// reading the one the parent screen provides.
class MetadataBackupOptionsScreen extends StatelessWidget {
const MetadataBackupOptionsScreen({super.key});
@override
Widget build(BuildContext context) {
return BlocProvider(
create: (_) => locator<WalletBackupSettingsCubit>()..load(),
child: const _Screen(),
);
}
}
class _Screen extends StatelessWidget {
const _Screen();
@override
Widget build(BuildContext context) {
return BlocListener<WalletBackupSettingsCubit, WalletBackupSettingsState>(
listenWhen: (previous, current) =>
previous.failureRevision != current.failureRevision,
listener: (context, state) {
final failure = state.failure;
if (failure == null) return;
SnackBarUtils.showSnackBar(context, failure.toTranslated(context));
},
child: Scaffold(
appBar: AppBar(
forceMaterialTransparency: true,
automaticallyImplyLeading: false,
flexibleSpace: TopBar(
title: context.loc.backupSettingsMetadataBackup,
onBack: () => context.pop(),
),
),
body: const SafeArea(child: _Body()),
),
);
}
}
class _Body extends StatelessWidget {
const _Body();
@override
Widget build(BuildContext context) {
return BlocBuilder<WalletBackupSettingsCubit, WalletBackupSettingsState>(
builder: (context, state) {
final backup = state.backup;
final busy = state.busy;
final recoveryRetryResult = state.recoveryRetryResult;
return SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
child: Column(
crossAxisAlignment: .stretch,
children: [
Text(
context.loc.walletBackupSettingsDescription,
style: context.font.bodyMedium?.copyWith(
color: context.appColors.textMuted,
),
),
const Gap(24),
// Nothing is claimed until the first read resolves: an unread
// backup is neither on nor off.
if (state.loading && backup == null)
const LinearProgressIndicator()
else ...[
_StatusLine(state: state, backup: backup),
if (backup?.recoveryBlocked == true) ...[
const Gap(24),
_RecoveryNotice(
recovering:
state.operation ==
WalletBackupSettingsOperation.recovering,
onRetry: state.canRetryRecovery
? context
.read<WalletBackupSettingsCubit>()
.retryRecovery
: null,
),
],
if (recoveryRetryResult != null) ...[
const Gap(16),
_RecoveryRetryResult(result: recoveryRetryResult),
],
const Gap(24),
_AutomaticBackupSwitch(backup: backup, busy: busy),
const Gap(24),
BBButton.big(
label: context.loc.walletBackupSettingsBackupNow,
iconData: Icons.backup,
iconFirst: true,
onPressed: () =>
context.read<WalletBackupSettingsCubit>().backupNow(),
disabled: !_canBackUpNow(backup: backup, busy: busy),
bgColor: context.appColors.primary,
textColor: context.appColors.onPrimary,
),
const Gap(12),
BBButton.big(
label: context.loc.walletBackupSettingsDelete,
iconData: Icons.delete_outline,
iconFirst: true,
onPressed: () => _confirmDelete(context),
disabled: !_canDelete(backup: backup, busy: busy),
outlined: true,
bgColor: context.appColors.surface,
textColor: context.appColors.error,
borderColor: context.appColors.error,
),
if (busy) ...[const Gap(16), const LinearProgressIndicator()],
],
],
),
),
);
},
);
}
/// An immediate write only makes sense while automatic backup is on and the
/// backup is neither blocked on recovery nor written by a newer app version.
bool _canBackUpNow({
required WalletBackupState? backup,
required bool busy,
}) =>
backup?.enabled == true &&
!busy &&
backup?.recoveryBlocked != true &&
backup?.unsupportedVersion == null;
/// The remote copy is only removable once automatic backup is off, so a
/// deletion cannot race the next scheduled write.
bool _canDelete({required WalletBackupState? backup, required bool busy}) =>
backup != null && !backup.enabled && !busy;
Future<void> _confirmDelete(BuildContext context) async {
final confirmed = await showDialog<bool>(
context: context,
builder: (dialogContext) => AlertDialog(
title: Text(context.loc.walletBackupSettingsDeleteTitle),
content: Text(context.loc.walletBackupSettingsDeleteDescription),
actions: [
TextButton(
onPressed: () => Navigator.of(dialogContext).pop(false),
child: Text(context.loc.walletBackupSettingsCancel),
),
FilledButton(
onPressed: () => Navigator.of(dialogContext).pop(true),
child: Text(context.loc.walletBackupSettingsDeleteConfirm),
),
],
),
);
if (confirmed != true || !context.mounted) return;
await context.read<WalletBackupSettingsCubit>().deleteRemoteBackup();
}
}
/// On or off, and the one fact that changes what to do next — the same
/// label / coloured value / muted sub-line shape the Backup Settings status
/// rows use.
class _StatusLine extends StatelessWidget {
final WalletBackupSettingsState state;
final WalletBackupState? backup;
const _StatusLine({required this.state, required this.backup});
@override
Widget build(BuildContext context) {
final isOn = backup?.enabled ?? false;
return Column(
crossAxisAlignment: .start,
children: [
Row(
children: [
Text(
context.loc.walletBackupSettingsTitle,
style: context.font.bodyMedium,
),
const Spacer(),
Text(
isOn
? context.loc.backupSettingsMetadataTurnedOn
: context.loc.backupSettingsMetadataTurnedOff,
style: context.font.bodyMedium?.copyWith(
color: isOn
? context.appColors.success
: context.appColors.error,
),
),
],
),
const Gap(4),
Text(
_statusText(context, backup),
style: context.font.bodySmall?.copyWith(
color: context.appColors.textMuted,
),
),
],
);
}
String _statusText(BuildContext context, WalletBackupState? backup) {
if (backup == null) return context.loc.walletBackupSettingsFailed;
if (backup.unsupportedVersion != null) {
return context.loc.walletBackupSettingsUpdateRequired;
}
if (backup.recoveryBlocked) {
return context.loc.walletBackupSettingsRecoveryBlocked;
}
if (!backup.enabled) return context.loc.walletBackupSettingsOff;
if (backup.dirty) return context.loc.walletBackupSettingsPending;
final succeededAt = backup.lastSucceededAt;
if (succeededAt == null) {
return context.loc.walletBackupSettingsNeverBackedUp;
}
final date = DateTime.fromMillisecondsSinceEpoch(
succeededAt * 1000,
isUtc: true,
).toLocal();
return context.loc.walletBackupSettingsLastBackup(
DateFormat('MMM d, y HH:mm').format(date),
);
}
}
class _AutomaticBackupSwitch extends StatelessWidget {
final WalletBackupState? backup;
final bool busy;
const _AutomaticBackupSwitch({required this.backup, required this.busy});
@override
Widget build(BuildContext context) {
final current = backup;
// A backup written by a newer app version must not be turned back on from
// here, but it can always be turned off.
final locked =
current == null ||
busy ||
(current.unsupportedVersion != null && !current.enabled);
return SwitchListTile(
contentPadding: EdgeInsets.zero,
title: Text(context.loc.walletBackupSettingsEnabled),
value: current?.enabled ?? false,
onChanged: locked
? null
: context.read<WalletBackupSettingsCubit>().setEnabled,
);
}
}
/// A recovery that stopped half-way needs an answer before anything else on this
/// screen is worth doing, so it is stated as its own bordered notice with the
/// single action that resolves it.
class _RecoveryNotice extends StatelessWidget {
final bool recovering;
final VoidCallback? onRetry;
const _RecoveryNotice({required this.recovering, required this.onRetry});
@override
Widget build(BuildContext context) {
final accent = context.appColors.error;
return Container(
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
color: context.appColors.surfaceContainer,
border: Border.all(color: accent, width: 2),
borderRadius: BorderRadius.circular(2),
),
child: Column(
crossAxisAlignment: .start,
children: [
Text(
context.loc.metadataBackupStateRecoveryIncomplete,
style: context.font.titleMedium?.copyWith(
fontWeight: .bold,
color: accent,
),
),
const Gap(8),
Text(
context.loc.metadataBackupStateRecoveryIncompleteBody,
style: context.font.bodyMedium,
),
const Gap(16),
BBButton.big(
label: context.loc.metadataBackupRetryRecovery,
iconData: Icons.restore,
iconFirst: true,
onPressed: onRetry ?? () {},
disabled: onRetry == null || recovering,
bgColor: accent,
textColor: context.appColors.surface,
),
],
),
);
}
}
/// A manual retry is an explicit user action, so its result remains visible
/// instead of disappearing into state or relying on a transient snackbar.
class _RecoveryRetryResult extends StatelessWidget {
final WalletBackupRecoveryResultSummary result;
const _RecoveryRetryResult({required this.result});
@override
Widget build(BuildContext context) {
final accent = result.failed
? context.appColors.error
: context.appColors.success;
return Semantics(
container: true,
liveRegion: true,
child: Container(
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
color: context.appColors.surfaceContainer,
border: Border.all(color: accent),
borderRadius: BorderRadius.circular(2),
),
child: Column(
crossAxisAlignment: .start,
children: [
Text(
context.loc.metadataBackupRecoveryRetryResult,
style: context.font.bodySmall?.copyWith(
color: context.appColors.textMuted,
),
),
const Gap(4),
Text(
_title(context),
style: context.font.titleMedium?.copyWith(
color: accent,
fontWeight: .bold,
),
),
const Gap(8),
Text(
context.loc.metadataBackupRecoveryRetryCounts(
result.restoredCount,
result.failedCount,
),
style: context.font.bodyMedium,
),
],
),
),
);
}
String _title(BuildContext context) => switch (result.kind) {
WalletBackupRecoveryResultKind.restored =>
context.loc.metadataBackupRecoveryRetryComplete,
WalletBackupRecoveryResultKind.nothingToRestore =>
context.loc.metadataBackupRecoveryRetryNothingToRestore,
WalletBackupRecoveryResultKind.noBackup =>
context.loc.metadataBackupRecoveryRetryNoBackup,
WalletBackupRecoveryResultKind.incomplete =>
context.loc.metadataBackupStateRecoveryIncomplete,
WalletBackupRecoveryResultKind.failed =>
context.loc.metadataBackupRecoveryRetryFailed,
};
}