mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
123 lines
4 KiB
Dart
123 lines
4 KiB
Dart
import 'package:cake_wallet/palette.dart';
|
|
import 'package:cake_wallet/src/screens/dashboard/wallet_menu_item.dart';
|
|
import 'package:cake_wallet/utils/show_pop_up.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:cake_wallet/routes.dart';
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
import 'package:cake_wallet/src/screens/auth/auth_page.dart';
|
|
import 'package:cake_wallet/src/widgets/alert_with_two_actions.dart';
|
|
|
|
// FIXME: terrible design
|
|
|
|
class WalletMenu {
|
|
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',
|
|
height: 16, width: 16)),
|
|
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)),
|
|
WalletMenuItem(
|
|
title: 'Backup',
|
|
image: Image.asset('assets/images/restore_wallet.png',
|
|
height: 16,
|
|
width: 16,
|
|
color: Palette.darkBlue)),
|
|
WalletMenuItem(
|
|
title: S.current.settings_title,
|
|
image: Image.asset('assets/images/settings_menu.png',
|
|
height: 16, width: 16)),
|
|
]);
|
|
}
|
|
|
|
final List<WalletMenuItem> items;
|
|
final BuildContext context;
|
|
final Future<void> Function() reconnect;
|
|
final bool hasRescan;
|
|
|
|
void action(int index) {
|
|
var indx = index;
|
|
|
|
if (index > 0 && !hasRescan) {
|
|
indx += 1;
|
|
}
|
|
|
|
switch (indx) {
|
|
case 0:
|
|
_presentReconnectAlert(context);
|
|
break;
|
|
case 1:
|
|
Navigator.of(context).pushNamed(Routes.rescan);
|
|
break;
|
|
case 2:
|
|
Navigator.of(context).pushNamed(Routes.walletList);
|
|
break;
|
|
case 3:
|
|
Navigator.of(context).pushNamed(Routes.nodeList);
|
|
break;
|
|
case 4:
|
|
Navigator.of(context).pushNamed(Routes.auth,
|
|
arguments: (bool isAuthenticatedSuccessfully, AuthPageState auth) {
|
|
if (isAuthenticatedSuccessfully) {
|
|
auth.close();
|
|
Navigator.of(auth.context).pushNamed(Routes.showKeys);
|
|
}
|
|
});
|
|
break;
|
|
case 5:
|
|
Navigator.of(context).pushNamed(Routes.addressBook);
|
|
break;
|
|
case 6:
|
|
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:
|
|
Navigator.of(context).pushNamed(Routes.settings);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
Future<void> _presentReconnectAlert(BuildContext context) async {
|
|
await showPopUp<void>(
|
|
context: context,
|
|
builder: (BuildContext context) {
|
|
return AlertWithTwoActions(
|
|
alertTitle: S.of(context).reconnection,
|
|
alertContent: S.of(context).reconnect_alert_text,
|
|
rightButtonText: S.of(context).ok,
|
|
leftButtonText: S.of(context).cancel,
|
|
actionRightButton: () async {
|
|
Navigator.of(context).pop();
|
|
await reconnect?.call();
|
|
},
|
|
actionLeftButton: () => Navigator.of(context).pop());
|
|
});
|
|
}
|
|
}
|