cake_wallet/lib/src/screens/dashboard/wallet_menu.dart

97 lines
3.2 KiB
Dart
Raw Normal View History

2020-09-25 15:32:44 +00:00
import 'package:cake_wallet/utils/show_pop_up.dart';
2020-01-04 19:31:52 +00:00
import 'package:flutter/material.dart';
import 'package:cake_wallet/routes.dart';
import 'package:provider/provider.dart';
import 'package:cake_wallet/generated/i18n.dart';
2020-01-08 12:26:34 +00:00
import 'package:cake_wallet/src/screens/auth/auth_page.dart';
import 'package:cake_wallet/src/widgets/alert_with_two_actions.dart';
2020-01-04 19:31:52 +00:00
2020-08-27 16:54:34 +00:00
// FIXME: terrible design
2020-01-04 19:31:52 +00:00
class WalletMenu {
2020-08-27 16:54:34 +00:00
WalletMenu(this.context, this.reconnect);
2020-01-08 12:26:34 +00:00
2020-01-04 19:31:52 +00:00
final List<String> items = [
S.current.reconnect,
2020-09-30 18:23:15 +00:00
S.current.rescan,
2020-01-04 19:31:52 +00:00
S.current.wallets,
S.current.nodes,
2020-01-04 19:31:52 +00:00
S.current.show_seed,
S.current.show_keys,
S.current.address_book_menu,
S.current.settings_title
];
final List<Image> images = [
Image.asset('assets/images/reconnect_menu.png', height: 16, width: 16),
2020-09-30 18:23:15 +00:00
Image.asset('assets/images/filter_icon.png', height: 16, width: 16),
Image.asset('assets/images/wallet_menu.png', height: 16, width: 16),
Image.asset('assets/images/nodes_menu.png', height: 16, width: 16),
Image.asset('assets/images/eye_menu.png', height: 16, width: 16),
Image.asset('assets/images/key_menu.png', height: 16, width: 16),
Image.asset('assets/images/open_book_menu.png', height: 16, width: 16),
Image.asset('assets/images/settings_menu.png', height: 16, width: 16),
2020-01-04 19:31:52 +00:00
];
2020-01-08 12:26:34 +00:00
final BuildContext context;
2020-08-27 16:54:34 +00:00
final Future<void> Function() reconnect;
2020-01-04 19:31:52 +00:00
void action(int index) {
switch (index) {
case 0:
_presentReconnectAlert(context);
break;
case 1:
2020-09-30 18:23:15 +00:00
Navigator.of(context).pushNamed(Routes.rescan);
2020-01-04 19:31:52 +00:00
break;
case 2:
2020-09-30 18:23:15 +00:00
Navigator.of(context).pushNamed(Routes.walletList);
2020-01-04 19:31:52 +00:00
break;
case 3:
2020-09-30 18:23:15 +00:00
Navigator.of(context).pushNamed(Routes.nodeList);
break;
case 4:
2020-01-04 19:31:52 +00:00
Navigator.of(context).pushNamed(Routes.auth,
2020-01-08 12:26:34 +00:00
arguments: (bool isAuthenticatedSuccessfully, AuthPageState auth) =>
2020-01-04 19:31:52 +00:00
isAuthenticatedSuccessfully
? Navigator.of(auth.context).popAndPushNamed(Routes.seed, arguments: false)
2020-01-04 19:31:52 +00:00
: null);
break;
2020-09-30 18:23:15 +00:00
case 5:
2020-01-04 19:31:52 +00:00
Navigator.of(context).pushNamed(Routes.auth,
2020-01-08 12:26:34 +00:00
arguments: (bool isAuthenticatedSuccessfully, AuthPageState auth) =>
2020-01-04 19:31:52 +00:00
isAuthenticatedSuccessfully
? Navigator.of(auth.context)
.popAndPushNamed(Routes.showKeys)
: null);
break;
2020-09-30 18:23:15 +00:00
case 6:
Navigator.of(context).pushNamed(Routes.addressBook);
2020-01-04 19:31:52 +00:00
break;
2020-09-30 18:23:15 +00:00
case 7:
Navigator.of(context).pushNamed(Routes.settings);
2020-01-04 19:31:52 +00:00
break;
default:
break;
}
}
2020-01-08 12:26:34 +00:00
Future<void> _presentReconnectAlert(BuildContext context) async {
2020-09-25 15:32:44 +00:00
await showPopUp<void>(
2020-01-04 19:31:52 +00:00
context: context,
builder: (BuildContext context) {
return AlertWithTwoActions(
alertTitle: S.of(context).reconnection,
alertContent: S.of(context).reconnect_alert_text,
2020-09-14 19:07:44 +00:00
rightButtonText: S.of(context).ok,
leftButtonText: S.of(context).cancel,
actionRightButton: () async {
Navigator.of(context).pop();
2020-10-01 16:46:23 +00:00
await reconnect?.call();
},
2020-09-14 19:07:44 +00:00
actionLeftButton: () => Navigator.of(context).pop());
2020-01-04 19:31:52 +00:00
});
}
}