2021-01-18 20:52:12 +00:00
|
|
|
import 'package:cake_wallet/palette.dart';
|
2020-10-22 16:50:53 +00:00
|
|
|
import 'package:cake_wallet/src/screens/dashboard/wallet_menu_item.dart';
|
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:cake_wallet/generated/i18n.dart';
|
2020-01-08 12:26:34 +00:00
|
|
|
import 'package:cake_wallet/src/screens/auth/auth_page.dart';
|
2020-05-04 20:12:36 +00:00
|
|
|
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-12-16 19:16:47 +00:00
|
|
|
WalletMenu(this.context, this.reconnect, this.hasRescan) : items = [] {
|
|
|
|
items.addAll([
|
|
|
|
WalletMenuItem(
|
|
|
|
title: S.current.reconnect,
|
|
|
|
image: Image.asset('assets/images/reconnect_menu.png',
|
|
|
|
height: 16, width: 16)),
|
|
|
|
if (hasRescan)
|
|
|
|
WalletMenuItem(
|
|
|
|
title: S.current.rescan,
|
|
|
|
image: Image.asset('assets/images/filter_icon.png',
|
2021-02-26 16:37:41 +00:00
|
|
|
height: 16, width: 16, color: Palette.darkBlue)),
|
2020-12-16 19:16:47 +00:00
|
|
|
WalletMenuItem(
|
|
|
|
title: S.current.wallets,
|
|
|
|
image: Image.asset('assets/images/wallet_menu.png',
|
|
|
|
height: 16, width: 16)),
|
|
|
|
WalletMenuItem(
|
|
|
|
title: S.current.nodes,
|
|
|
|
image: Image.asset('assets/images/nodes_menu.png',
|
|
|
|
height: 16, width: 16)),
|
|
|
|
WalletMenuItem(
|
|
|
|
title: S.current.show_keys,
|
|
|
|
image:
|
|
|
|
Image.asset('assets/images/key_menu.png', height: 16, width: 16)),
|
|
|
|
WalletMenuItem(
|
|
|
|
title: S.current.address_book_menu,
|
|
|
|
image: Image.asset('assets/images/open_book_menu.png',
|
|
|
|
height: 16, width: 16)),
|
2021-01-18 20:52:12 +00:00
|
|
|
WalletMenuItem(
|
2021-01-20 19:27:03 +00:00
|
|
|
title: S.current.backup,
|
2021-01-18 20:52:12 +00:00
|
|
|
image: Image.asset('assets/images/restore_wallet.png',
|
|
|
|
height: 16,
|
|
|
|
width: 16,
|
|
|
|
color: Palette.darkBlue)),
|
2020-12-16 19:16:47 +00:00
|
|
|
WalletMenuItem(
|
|
|
|
title: S.current.settings_title,
|
|
|
|
image: Image.asset('assets/images/settings_menu.png',
|
|
|
|
height: 16, width: 16)),
|
2021-02-25 18:25:52 +00:00
|
|
|
WalletMenuItem(
|
|
|
|
title: S.current.settings_support,
|
|
|
|
image: Image.asset('assets/images/question_mark.png',
|
2021-02-26 16:37:41 +00:00
|
|
|
height: 16, width: 16, color: Palette.darkBlue)),
|
2020-12-16 19:16:47 +00:00
|
|
|
]);
|
|
|
|
}
|
2020-01-04 19:31:52 +00:00
|
|
|
|
2020-12-16 19:16:47 +00:00
|
|
|
final List<WalletMenuItem> items;
|
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-12-16 19:16:47 +00:00
|
|
|
final bool hasRescan;
|
2020-01-04 19:31:52 +00:00
|
|
|
|
|
|
|
void action(int index) {
|
2020-12-16 19:16:47 +00:00
|
|
|
var indx = index;
|
|
|
|
|
|
|
|
if (index > 0 && !hasRescan) {
|
|
|
|
indx += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (indx) {
|
2020-01-04 19:31:52 +00:00
|
|
|
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-10-24 14:35:55 +00:00
|
|
|
arguments: (bool isAuthenticatedSuccessfully, AuthPageState auth) {
|
|
|
|
if (isAuthenticatedSuccessfully) {
|
|
|
|
auth.close();
|
|
|
|
Navigator.of(auth.context).pushNamed(Routes.showKeys);
|
|
|
|
}
|
|
|
|
});
|
2020-01-04 19:31:52 +00:00
|
|
|
break;
|
2020-10-22 16:50:53 +00:00
|
|
|
case 5:
|
2020-04-21 18:23:40 +00:00
|
|
|
Navigator.of(context).pushNamed(Routes.addressBook);
|
2020-01-04 19:31:52 +00:00
|
|
|
break;
|
2020-10-22 16:50:53 +00:00
|
|
|
case 6:
|
2021-01-18 20:52:12 +00:00
|
|
|
Navigator.of(context).pushNamed(Routes.auth,
|
|
|
|
arguments: (bool isAuthenticatedSuccessfully, AuthPageState auth) {
|
|
|
|
if (isAuthenticatedSuccessfully) {
|
|
|
|
auth.close();
|
|
|
|
Navigator.of(auth.context).pushNamed(Routes.backup);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
case 7:
|
2020-04-21 18:23:40 +00:00
|
|
|
Navigator.of(context).pushNamed(Routes.settings);
|
2020-01-04 19:31:52 +00:00
|
|
|
break;
|
2021-02-25 18:25:52 +00:00
|
|
|
case 8:
|
|
|
|
Navigator.of(context).pushNamed(Routes.support);
|
|
|
|
break;
|
2020-01-04 19:31:52 +00:00
|
|
|
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) {
|
2020-05-04 20:12:36 +00:00
|
|
|
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 {
|
2020-05-04 20:12:36 +00:00
|
|
|
Navigator.of(context).pop();
|
2020-10-01 16:46:23 +00:00
|
|
|
await reconnect?.call();
|
2020-05-04 20:12:36 +00:00
|
|
|
},
|
2020-09-14 19:07:44 +00:00
|
|
|
actionLeftButton: () => Navigator.of(context).pop());
|
2020-01-04 19:31:52 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|