mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
133fa2987a
* Remove error message if buy action is disabled * Fix wallet list selected wallet issue * Check if the widget is still mounted before showing popup * minor code readability enhancement [skip ci] * Code enhancement [skip ci] * Revert removing ask each time localization * Add Moonpay to sell flow Code Enhancements * remove error popup when sell option is disabled
117 lines
No EOL
3.8 KiB
Dart
117 lines
No EOL
3.8 KiB
Dart
import 'package:cake_wallet/generated/i18n.dart';
|
|
import 'package:cake_wallet/routes.dart';
|
|
import 'package:cake_wallet/src/widgets/alert_with_one_action.dart';
|
|
import 'package:cake_wallet/utils/show_pop_up.dart';
|
|
import 'package:cake_wallet/view_model/dashboard/dashboard_view_model.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class MainActions {
|
|
final String Function(BuildContext context) name;
|
|
final String image;
|
|
|
|
final bool Function(DashboardViewModel viewModel)? isEnabled;
|
|
final bool Function(DashboardViewModel viewModel)? canShow;
|
|
final Future<void> Function(
|
|
BuildContext context, DashboardViewModel viewModel) onTap;
|
|
|
|
MainActions._({
|
|
required this.name,
|
|
required this.image,
|
|
this.isEnabled,
|
|
this.canShow,
|
|
required this.onTap,
|
|
});
|
|
|
|
static List<MainActions> all = [
|
|
buyAction,
|
|
receiveAction,
|
|
exchangeAction,
|
|
sendAction,
|
|
sellAction,
|
|
];
|
|
|
|
static MainActions buyAction = MainActions._(
|
|
name: (context) => S.of(context).buy,
|
|
image: 'assets/images/buy.png',
|
|
isEnabled: (viewModel) => viewModel.isEnabledBuyAction,
|
|
canShow: (viewModel) => viewModel.hasBuyAction,
|
|
onTap: (BuildContext context, DashboardViewModel viewModel) async {
|
|
if (!viewModel.isEnabledBuyAction) {
|
|
return;
|
|
}
|
|
|
|
final defaultBuyProvider = viewModel.defaultBuyProvider;
|
|
try {
|
|
defaultBuyProvider != null
|
|
? await defaultBuyProvider.launchProvider(context, true)
|
|
: await Navigator.of(context).pushNamed(Routes.buySellPage, arguments: true);
|
|
} catch (e) {
|
|
await _showErrorDialog(context, defaultBuyProvider.toString(), e.toString());
|
|
}
|
|
},
|
|
);
|
|
|
|
static MainActions receiveAction = MainActions._(
|
|
name: (context) => S.of(context).receive,
|
|
image: 'assets/images/received.png',
|
|
onTap: (BuildContext context, DashboardViewModel viewModel) async {
|
|
Navigator.pushNamed(context, Routes.addressPage);
|
|
},
|
|
);
|
|
|
|
static MainActions exchangeAction = MainActions._(
|
|
name: (context) => S.of(context).exchange,
|
|
image: 'assets/images/transfer.png',
|
|
isEnabled: (viewModel) => viewModel.isEnabledExchangeAction,
|
|
canShow: (viewModel) => viewModel.hasExchangeAction,
|
|
onTap: (BuildContext context, DashboardViewModel viewModel) async {
|
|
if (viewModel.isEnabledExchangeAction) {
|
|
await Navigator.of(context).pushNamed(Routes.exchange);
|
|
}
|
|
},
|
|
);
|
|
|
|
static MainActions sendAction = MainActions._(
|
|
name: (context) => S.of(context).send,
|
|
image: 'assets/images/upload.png',
|
|
onTap: (BuildContext context, DashboardViewModel viewModel) async {
|
|
Navigator.pushNamed(context, Routes.send);
|
|
},
|
|
);
|
|
|
|
static MainActions sellAction = MainActions._(
|
|
name: (context) => S.of(context).sell,
|
|
image: 'assets/images/sell.png',
|
|
isEnabled: (viewModel) => viewModel.isEnabledSellAction,
|
|
canShow: (viewModel) => viewModel.hasSellAction,
|
|
onTap: (BuildContext context, DashboardViewModel viewModel) async {
|
|
if (!viewModel.isEnabledSellAction) {
|
|
return;
|
|
}
|
|
|
|
final defaultSellProvider = viewModel.defaultSellProvider;
|
|
try {
|
|
defaultSellProvider != null
|
|
? await defaultSellProvider.launchProvider(context, false)
|
|
: await Navigator.of(context).pushNamed(Routes.buySellPage, arguments: false);
|
|
} catch (e) {
|
|
await _showErrorDialog(context, defaultSellProvider.toString(), e.toString());
|
|
}
|
|
},
|
|
);
|
|
|
|
static Future<void> _showErrorDialog(
|
|
BuildContext context, String title, String errorMessage) async {
|
|
await showPopUp<void>(
|
|
context: context,
|
|
builder: (BuildContext context) {
|
|
return AlertWithOneAction(
|
|
alertTitle: title,
|
|
alertContent: errorMessage,
|
|
buttonText: S.of(context).ok,
|
|
buttonAction: () => Navigator.of(context).pop(),
|
|
);
|
|
},
|
|
);
|
|
}
|
|
} |