mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
12e3001b3a
* Disable Ledger for MacOS * increase update duration for Solana [skip ci] * change tron default Node Update build number * Add disabling tron grid to privacy settings * update monero.com versions [skip ci]
113 lines
2.9 KiB
Dart
113 lines
2.9 KiB
Dart
import 'package:cake_wallet/generated/i18n.dart';
|
|
import 'package:cake_wallet/reactions/wallet_connect.dart';
|
|
import 'package:cake_wallet/routes.dart';
|
|
import 'package:cake_wallet/store/app_store.dart';
|
|
import 'package:cake_wallet/store/authentication_store.dart';
|
|
import 'package:cake_wallet/store/settings_store.dart';
|
|
import 'package:cake_wallet/utils/payment_request.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:fluttertoast/fluttertoast.dart';
|
|
|
|
class LinkViewModel {
|
|
LinkViewModel({
|
|
required this.settingsStore,
|
|
required this.appStore,
|
|
required this.authenticationStore,
|
|
required this.navigatorKey,
|
|
});
|
|
|
|
final SettingsStore settingsStore;
|
|
final AppStore appStore;
|
|
final AuthenticationStore authenticationStore;
|
|
final GlobalKey<NavigatorState> navigatorKey;
|
|
Uri? currentLink;
|
|
|
|
bool get _isValidPaymentUri => currentLink?.path.isNotEmpty ?? false;
|
|
bool get isWalletConnectLink => currentLink?.authority == 'wc';
|
|
bool get isNanoGptLink => currentLink?.scheme == 'nano-gpt';
|
|
|
|
String? getRouteToGo() {
|
|
if (isWalletConnectLink) {
|
|
if (!isEVMCompatibleChain(appStore.wallet!.type)) {
|
|
_errorToast(S.current.switchToEVMCompatibleWallet);
|
|
return null;
|
|
}
|
|
return Routes.walletConnectConnectionsListing;
|
|
}
|
|
|
|
if (authenticationStore.state == AuthenticationState.uninitialized) {
|
|
return null;
|
|
}
|
|
|
|
if (isNanoGptLink) {
|
|
switch (currentLink?.authority ?? '') {
|
|
case "exchange":
|
|
return Routes.exchange;
|
|
case "send":
|
|
return Routes.send;
|
|
case "buy":
|
|
return Routes.buySellPage;
|
|
}
|
|
}
|
|
|
|
if (_isValidPaymentUri) {
|
|
return Routes.send;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
dynamic getRouteArgs() {
|
|
if (isWalletConnectLink) {
|
|
return currentLink;
|
|
}
|
|
|
|
if (isNanoGptLink) {
|
|
switch (currentLink?.authority ?? '') {
|
|
case "exchange":
|
|
case "send":
|
|
return PaymentRequest.fromUri(currentLink);
|
|
case "buy":
|
|
return true;
|
|
}
|
|
}
|
|
|
|
if (_isValidPaymentUri) {
|
|
return PaymentRequest.fromUri(currentLink);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
Future<void> _errorToast(String message, {double fontSize = 16}) async {
|
|
Fluttertoast.showToast(
|
|
msg: message,
|
|
toastLength: Toast.LENGTH_LONG,
|
|
gravity: ToastGravity.SNACKBAR,
|
|
backgroundColor: Colors.black,
|
|
textColor: Colors.white,
|
|
fontSize: fontSize,
|
|
);
|
|
}
|
|
|
|
Future<void> handleLink() async {
|
|
String? route = getRouteToGo();
|
|
dynamic args = getRouteArgs();
|
|
if (route != null) {
|
|
if (appStore.wallet == null) {
|
|
return;
|
|
}
|
|
|
|
if (isNanoGptLink) {
|
|
if (route == Routes.buySellPage || route == Routes.exchange) {
|
|
await _errorToast(S.current.nano_gpt_thanks_message, fontSize: 14);
|
|
}
|
|
}
|
|
currentLink = null;
|
|
navigatorKey.currentState?.pushNamed(
|
|
route,
|
|
arguments: args,
|
|
);
|
|
}
|
|
}
|
|
}
|