mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-24 03:26:38 +00:00
Merge branch 'main' into CW-118-Allow-disabling-of-fiat
This commit is contained in:
commit
214c1fe0db
66 changed files with 1111 additions and 838 deletions
15
.github/workflows/pr_test_build.yml
vendored
15
.github/workflows/pr_test_build.yml
vendored
|
@ -90,6 +90,9 @@ jobs:
|
||||||
echo "const anypayToken = '${{ secrets.ANY_PAY_TOKEN }}';" >> lib/.secrets.g.dart
|
echo "const anypayToken = '${{ secrets.ANY_PAY_TOKEN }}';" >> lib/.secrets.g.dart
|
||||||
echo "const ioniaClientId = '${{ secrets.IONIA_CLIENT_ID }}';" >> lib/.secrets.g.dart
|
echo "const ioniaClientId = '${{ secrets.IONIA_CLIENT_ID }}';" >> lib/.secrets.g.dart
|
||||||
|
|
||||||
|
- name: Rename app
|
||||||
|
run: sed -i -e "s/\${APP_NAME}/$GITHUB_HEAD_REF/g" /opt/android/cake_wallet/android/app/src/main/AndroidManifest.xml
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
cd /opt/android/cake_wallet
|
cd /opt/android/cake_wallet
|
||||||
|
@ -111,6 +114,16 @@ jobs:
|
||||||
- name: Send Test APK
|
- name: Send Test APK
|
||||||
run: |
|
run: |
|
||||||
cd /opt/android/cake_wallet
|
cd /opt/android/cake_wallet
|
||||||
var=$(curl --upload-file build/app/outputs/apk/release/app-release.apk https://transfer.sh/app-release.apk)
|
var=$(curl --upload-file build/app/outputs/apk/release/app-release.apk https://transfer.sh/$GITHUB_HEAD_REF.apk -H "Max-Days: 10")
|
||||||
curl ${{ secrets.SLACK_WEB_HOOK }} -H "Content-Type: application/json" -d '{"apk_link": "'"$var"'","ticket": "'"$GITHUB_HEAD_REF"'"}'
|
curl ${{ secrets.SLACK_WEB_HOOK }} -H "Content-Type: application/json" -d '{"apk_link": "'"$var"'","ticket": "'"$GITHUB_HEAD_REF"'"}'
|
||||||
|
|
||||||
|
- name: Rename apk file
|
||||||
|
run: |
|
||||||
|
cd /opt/android/cake_wallet/build/app/outputs/apk/release
|
||||||
|
mkdir test-apk
|
||||||
|
mv app-release.apk test-apk/$GITHUB_HEAD_REF.apk
|
||||||
|
|
||||||
|
- name: Upload Artifact
|
||||||
|
uses: kittaakos/upload-artifact-as-is@v0
|
||||||
|
with:
|
||||||
|
path: /opt/android/cake_wallet/build/app/outputs/apk/release/test-apk/
|
||||||
|
|
|
@ -1,31 +1,24 @@
|
||||||
-
|
-
|
||||||
uri: xmr-node-uk.cakewallet.com:18081
|
uri: xmr-node.cakewallet.com:18081
|
||||||
is_default: true
|
is_default: true
|
||||||
-
|
-
|
||||||
uri: xmr-node-eu.cakewallet.com:18081
|
uri: cakexmrl7bonq7ovjka5kuwuyd3f7qnkz6z6s6dmsy3uckwra7bvggyd.onion:18081
|
||||||
is_default: false
|
is_default: false
|
||||||
-
|
-
|
||||||
uri: xmr-node-usa-east.cakewallet.com:18081
|
uri: node.sethforprivacy.com:18089
|
||||||
|
is_default: false
|
||||||
|
-
|
||||||
|
uri: nodes.hashvault.pro:18081
|
||||||
|
is_default: false
|
||||||
|
-
|
||||||
|
uri: node.c3pool.com:18081
|
||||||
|
is_default: false
|
||||||
|
-
|
||||||
|
uri: node.supportxmr.com:18081
|
||||||
|
is_default: false
|
||||||
|
-
|
||||||
|
uri: node.community.rino.io:18081
|
||||||
is_default: false
|
is_default: false
|
||||||
-
|
-
|
||||||
uri: node.moneroworld.com:18089
|
uri: node.moneroworld.com:18089
|
||||||
is_default: false
|
is_default: false
|
||||||
-
|
|
||||||
uri: node.xmr.pt:18081
|
|
||||||
is_default: false
|
|
||||||
-
|
|
||||||
uri: node.monero.net:18081
|
|
||||||
is_default: false
|
|
||||||
-
|
|
||||||
uri: opennode.xmr-tw.org:18089
|
|
||||||
is_default: false
|
|
||||||
-
|
|
||||||
uri: node.imonero.org:18081
|
|
||||||
is_default: false
|
|
||||||
|
|
||||||
uri: node.c3pool.com:18081
|
|
||||||
is_default: false
|
|
||||||
|
|
||||||
uri: xmr.prprpr.icu:18081
|
|
||||||
is_default: false
|
|
||||||
|
|
||||||
|
|
|
@ -129,7 +129,7 @@ abstract class ElectrumWalletBase extends WalletBase<ElectrumBalance,
|
||||||
@override
|
@override
|
||||||
Future<void> startSync() async {
|
Future<void> startSync() async {
|
||||||
try {
|
try {
|
||||||
syncStatus = StartingSyncStatus();
|
syncStatus = AttemptingSyncStatus();
|
||||||
await walletAddresses.discoverAddresses();
|
await walletAddresses.discoverAddresses();
|
||||||
await updateTransactions();
|
await updateTransactions();
|
||||||
_subscribeForUpdates();
|
_subscribeForUpdates();
|
||||||
|
|
|
@ -17,6 +17,7 @@ class Node extends HiveObject with Keyable {
|
||||||
{this.login,
|
{this.login,
|
||||||
this.password,
|
this.password,
|
||||||
this.useSSL,
|
this.useSSL,
|
||||||
|
this.trusted = false,
|
||||||
String? uri,
|
String? uri,
|
||||||
WalletType? type,}) {
|
WalletType? type,}) {
|
||||||
if (uri != null) {
|
if (uri != null) {
|
||||||
|
@ -31,7 +32,8 @@ class Node extends HiveObject with Keyable {
|
||||||
: uriRaw = map['uri'] as String? ?? '',
|
: uriRaw = map['uri'] as String? ?? '',
|
||||||
login = map['login'] as String?,
|
login = map['login'] as String?,
|
||||||
password = map['password'] as String?,
|
password = map['password'] as String?,
|
||||||
useSSL = map['useSSL'] as bool?;
|
useSSL = map['useSSL'] as bool?,
|
||||||
|
trusted = map['trusted'] as bool? ?? false;
|
||||||
|
|
||||||
static const typeId = 1;
|
static const typeId = 1;
|
||||||
static const boxName = 'Nodes';
|
static const boxName = 'Nodes';
|
||||||
|
@ -51,6 +53,9 @@ class Node extends HiveObject with Keyable {
|
||||||
@HiveField(4)
|
@HiveField(4)
|
||||||
bool? useSSL;
|
bool? useSSL;
|
||||||
|
|
||||||
|
@HiveField(5)
|
||||||
|
bool trusted;
|
||||||
|
|
||||||
bool get isSSL => useSSL ?? false;
|
bool get isSSL => useSSL ?? false;
|
||||||
|
|
||||||
Uri get uri {
|
Uri get uri {
|
||||||
|
@ -104,28 +109,28 @@ class Node extends HiveObject with Keyable {
|
||||||
final rpcUri = isSSL ? Uri.https(uri.authority, path) : Uri.http(uri.authority, path);
|
final rpcUri = isSSL ? Uri.https(uri.authority, path) : Uri.http(uri.authority, path);
|
||||||
final realm = 'monero-rpc';
|
final realm = 'monero-rpc';
|
||||||
final body = {
|
final body = {
|
||||||
'jsonrpc': '2.0',
|
'jsonrpc': '2.0',
|
||||||
'id': '0',
|
'id': '0',
|
||||||
'method': 'get_info'
|
'method': 'get_info'
|
||||||
};
|
};
|
||||||
|
|
||||||
try {
|
try {
|
||||||
final authenticatingClient = HttpClient();
|
final authenticatingClient = HttpClient();
|
||||||
|
|
||||||
authenticatingClient.addCredentials(
|
authenticatingClient.addCredentials(
|
||||||
rpcUri,
|
rpcUri,
|
||||||
realm,
|
realm,
|
||||||
HttpClientDigestCredentials(login ?? '', password ?? ''),
|
HttpClientDigestCredentials(login ?? '', password ?? ''),
|
||||||
);
|
);
|
||||||
|
|
||||||
final http.Client client = ioc.IOClient(authenticatingClient);
|
final http.Client client = ioc.IOClient(authenticatingClient);
|
||||||
|
|
||||||
final response = await client.post(
|
final response = await client.post(
|
||||||
rpcUri,
|
rpcUri,
|
||||||
headers: {'Content-Type': 'application/json'},
|
headers: {'Content-Type': 'application/json'},
|
||||||
body: json.encode(body),
|
body: json.encode(body),
|
||||||
);
|
);
|
||||||
|
|
||||||
client.close();
|
client.close();
|
||||||
|
|
||||||
final resBody = json.decode(response.body) as Map<String, dynamic>;
|
final resBody = json.decode(response.body) as Map<String, dynamic>;
|
||||||
|
|
|
@ -28,7 +28,7 @@ class NotConnectedSyncStatus extends SyncStatus {
|
||||||
double progress() => 0.0;
|
double progress() => 0.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
class StartingSyncStatus extends SyncStatus {
|
class AttemptingSyncStatus extends SyncStatus {
|
||||||
@override
|
@override
|
||||||
double progress() => 0.0;
|
double progress() => 0.0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -927,6 +927,16 @@ extern "C"
|
||||||
return static_cast<int32_t>(rates.size());
|
return static_cast<int32_t>(rates.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void set_trusted_daemon(bool arg)
|
||||||
|
{
|
||||||
|
m_wallet->setTrustedDaemon(arg);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool trusted_daemon()
|
||||||
|
{
|
||||||
|
return m_wallet->trustedDaemon();
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -137,4 +137,8 @@ typedef get_rate = Pointer<Int64> Function();
|
||||||
|
|
||||||
typedef size_of_rate = Int32 Function();
|
typedef size_of_rate = Int32 Function();
|
||||||
|
|
||||||
typedef update_rate = Void Function();
|
typedef update_rate = Void Function();
|
||||||
|
|
||||||
|
typedef set_trusted_daemon = Void Function(Int8 trusted);
|
||||||
|
|
||||||
|
typedef trusted_daemon = Int8 Function();
|
|
@ -135,4 +135,8 @@ typedef GetRate = Pointer<Int64> Function();
|
||||||
|
|
||||||
typedef SizeOfRate = int Function();
|
typedef SizeOfRate = int Function();
|
||||||
|
|
||||||
typedef UpdateRate = void Function();
|
typedef UpdateRate = void Function();
|
||||||
|
|
||||||
|
typedef SetTrustedDaemon = void Function(int);
|
||||||
|
|
||||||
|
typedef TrustedDaemon = int Function();
|
|
@ -116,6 +116,14 @@ final rescanBlockchainAsyncNative = havenApi
|
||||||
.lookup<NativeFunction<rescan_blockchain>>('rescan_blockchain')
|
.lookup<NativeFunction<rescan_blockchain>>('rescan_blockchain')
|
||||||
.asFunction<RescanBlockchainAsync>();
|
.asFunction<RescanBlockchainAsync>();
|
||||||
|
|
||||||
|
final setTrustedDaemonNative = havenApi
|
||||||
|
.lookup<NativeFunction<set_trusted_daemon>>('set_trusted_daemon')
|
||||||
|
.asFunction<SetTrustedDaemon>();
|
||||||
|
|
||||||
|
final trustedDaemonNative = havenApi
|
||||||
|
.lookup<NativeFunction<trusted_daemon>>('trusted_daemon')
|
||||||
|
.asFunction<TrustedDaemon>();
|
||||||
|
|
||||||
int getSyncingHeight() => getSyncingHeightNative();
|
int getSyncingHeight() => getSyncingHeightNative();
|
||||||
|
|
||||||
bool isNeededToRefresh() => isNeededToRefreshNative() != 0;
|
bool isNeededToRefresh() => isNeededToRefreshNative() != 0;
|
||||||
|
@ -351,3 +359,7 @@ Future<bool> isConnected() => compute(_isConnected, 0);
|
||||||
Future<int> getNodeHeight() => compute(_getNodeHeight, 0);
|
Future<int> getNodeHeight() => compute(_getNodeHeight, 0);
|
||||||
|
|
||||||
void rescanBlockchainAsync() => rescanBlockchainAsyncNative();
|
void rescanBlockchainAsync() => rescanBlockchainAsyncNative();
|
||||||
|
|
||||||
|
Future setTrustedDaemon(bool trusted) async => setTrustedDaemonNative(_boolToInt(trusted));
|
||||||
|
|
||||||
|
Future<bool> trustedDaemon() async => trustedDaemonNative() != 0;
|
||||||
|
|
|
@ -121,6 +121,8 @@ abstract class HavenWalletBase extends WalletBase<MoneroBalance,
|
||||||
password: node.password,
|
password: node.password,
|
||||||
useSSL: node.useSSL ?? false,
|
useSSL: node.useSSL ?? false,
|
||||||
isLightWallet: false); // FIXME: hardcoded value
|
isLightWallet: false); // FIXME: hardcoded value
|
||||||
|
|
||||||
|
haven_wallet.setTrustedDaemon(node.trusted);
|
||||||
syncStatus = ConnectedSyncStatus();
|
syncStatus = ConnectedSyncStatus();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
syncStatus = FailedSyncStatus();
|
syncStatus = FailedSyncStatus();
|
||||||
|
@ -135,7 +137,7 @@ abstract class HavenWalletBase extends WalletBase<MoneroBalance,
|
||||||
} catch (_) {}
|
} catch (_) {}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
syncStatus = StartingSyncStatus();
|
syncStatus = AttemptingSyncStatus();
|
||||||
haven_wallet.startRefresh();
|
haven_wallet.startRefresh();
|
||||||
_setListeners();
|
_setListeners();
|
||||||
_listener?.start();
|
_listener?.start();
|
||||||
|
|
|
@ -783,6 +783,16 @@ extern "C"
|
||||||
return strdup(get_current_wallet()->getSubaddressLabel(accountIndex, addressIndex).c_str());
|
return strdup(get_current_wallet()->getSubaddressLabel(accountIndex, addressIndex).c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void set_trusted_daemon(bool arg)
|
||||||
|
{
|
||||||
|
m_wallet->setTrustedDaemon(arg);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool trusted_daemon()
|
||||||
|
{
|
||||||
|
return m_wallet->trustedDaemon();
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -30,6 +30,9 @@ void set_refresh_from_block_height(uint64_t height);
|
||||||
void set_recovering_from_seed(bool is_recovery);
|
void set_recovering_from_seed(bool is_recovery);
|
||||||
void store(char *path);
|
void store(char *path);
|
||||||
|
|
||||||
|
void set_trusted_daemon(bool arg);
|
||||||
|
bool trusted_daemon();
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
|
@ -125,4 +125,8 @@ typedef rescan_blockchain = Void Function();
|
||||||
|
|
||||||
typedef get_subaddress_label = Pointer<Utf8> Function(
|
typedef get_subaddress_label = Pointer<Utf8> Function(
|
||||||
Int32 accountIndex,
|
Int32 accountIndex,
|
||||||
Int32 addressIndex);
|
Int32 addressIndex);
|
||||||
|
|
||||||
|
typedef set_trusted_daemon = Void Function(Int8 trusted);
|
||||||
|
|
||||||
|
typedef trusted_daemon = Int8 Function();
|
|
@ -123,4 +123,8 @@ typedef RescanBlockchainAsync = void Function();
|
||||||
|
|
||||||
typedef GetSubaddressLabel = Pointer<Utf8> Function(
|
typedef GetSubaddressLabel = Pointer<Utf8> Function(
|
||||||
int accountIndex,
|
int accountIndex,
|
||||||
int addressIndex);
|
int addressIndex);
|
||||||
|
|
||||||
|
typedef SetTrustedDaemon = void Function(int);
|
||||||
|
|
||||||
|
typedef TrustedDaemon = int Function();
|
|
@ -120,6 +120,14 @@ final getSubaddressLabelNative = moneroApi
|
||||||
.lookup<NativeFunction<get_subaddress_label>>('get_subaddress_label')
|
.lookup<NativeFunction<get_subaddress_label>>('get_subaddress_label')
|
||||||
.asFunction<GetSubaddressLabel>();
|
.asFunction<GetSubaddressLabel>();
|
||||||
|
|
||||||
|
final setTrustedDaemonNative = moneroApi
|
||||||
|
.lookup<NativeFunction<set_trusted_daemon>>('set_trusted_daemon')
|
||||||
|
.asFunction<SetTrustedDaemon>();
|
||||||
|
|
||||||
|
final trustedDaemonNative = moneroApi
|
||||||
|
.lookup<NativeFunction<trusted_daemon>>('trusted_daemon')
|
||||||
|
.asFunction<TrustedDaemon>();
|
||||||
|
|
||||||
int getSyncingHeight() => getSyncingHeightNative();
|
int getSyncingHeight() => getSyncingHeightNative();
|
||||||
|
|
||||||
bool isNeededToRefresh() => isNeededToRefreshNative() != 0;
|
bool isNeededToRefresh() => isNeededToRefreshNative() != 0;
|
||||||
|
@ -359,4 +367,8 @@ void rescanBlockchainAsync() => rescanBlockchainAsyncNative();
|
||||||
|
|
||||||
String getSubaddressLabel(int accountIndex, int addressIndex) {
|
String getSubaddressLabel(int accountIndex, int addressIndex) {
|
||||||
return convertUTF8ToString(pointer: getSubaddressLabelNative(accountIndex, addressIndex));
|
return convertUTF8ToString(pointer: getSubaddressLabelNative(accountIndex, addressIndex));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future setTrustedDaemon(bool trusted) async => setTrustedDaemonNative(_boolToInt(trusted));
|
||||||
|
|
||||||
|
Future<bool> trustedDaemon() async => trustedDaemonNative() != 0;
|
|
@ -136,6 +136,8 @@ abstract class MoneroWalletBase extends WalletBase<MoneroBalance,
|
||||||
password: node.password,
|
password: node.password,
|
||||||
useSSL: node.isSSL,
|
useSSL: node.isSSL,
|
||||||
isLightWallet: false); // FIXME: hardcoded value
|
isLightWallet: false); // FIXME: hardcoded value
|
||||||
|
|
||||||
|
monero_wallet.setTrustedDaemon(node.trusted);
|
||||||
syncStatus = ConnectedSyncStatus();
|
syncStatus = ConnectedSyncStatus();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
syncStatus = FailedSyncStatus();
|
syncStatus = FailedSyncStatus();
|
||||||
|
@ -150,7 +152,7 @@ abstract class MoneroWalletBase extends WalletBase<MoneroBalance,
|
||||||
} catch (_) {}
|
} catch (_) {}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
syncStatus = StartingSyncStatus();
|
syncStatus = AttemptingSyncStatus();
|
||||||
monero_wallet.startRefresh();
|
monero_wallet.startRefresh();
|
||||||
_setListeners();
|
_setListeners();
|
||||||
_listener?.start();
|
_listener?.start();
|
||||||
|
|
|
@ -14,8 +14,8 @@ String syncStatusTitle(SyncStatus syncStatus) {
|
||||||
return S.current.sync_status_not_connected;
|
return S.current.sync_status_not_connected;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (syncStatus is StartingSyncStatus) {
|
if (syncStatus is AttemptingSyncStatus) {
|
||||||
return S.current.sync_status_starting_sync;
|
return S.current.sync_status_attempting_sync;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (syncStatus is FailedSyncStatus) {
|
if (syncStatus is FailedSyncStatus) {
|
||||||
|
|
42
lib/di.dart
42
lib/di.dart
|
@ -5,9 +5,14 @@ import 'package:cake_wallet/ionia/ionia_anypay.dart';
|
||||||
import 'package:cake_wallet/ionia/ionia_gift_card.dart';
|
import 'package:cake_wallet/ionia/ionia_gift_card.dart';
|
||||||
import 'package:cake_wallet/ionia/ionia_tip.dart';
|
import 'package:cake_wallet/ionia/ionia_tip.dart';
|
||||||
import 'package:cake_wallet/src/screens/buy/onramper_page.dart';
|
import 'package:cake_wallet/src/screens/buy/onramper_page.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/display_settings_page.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/other_settings_page.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/privacy_page.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/security_backup_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/ionia/cards/ionia_custom_redeem_page.dart';
|
import 'package:cake_wallet/src/screens/ionia/cards/ionia_custom_redeem_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/ionia/cards/ionia_gift_card_detail_page.dart';
|
import 'package:cake_wallet/src/screens/ionia/cards/ionia_gift_card_detail_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/ionia/cards/ionia_more_options_page.dart';
|
import 'package:cake_wallet/src/screens/ionia/cards/ionia_more_options_page.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/connection_sync_page.dart';
|
||||||
import 'package:cake_wallet/view_model/ionia/ionia_auth_view_model.dart';
|
import 'package:cake_wallet/view_model/ionia/ionia_auth_view_model.dart';
|
||||||
import 'package:cake_wallet/view_model/ionia/ionia_buy_card_view_model.dart';
|
import 'package:cake_wallet/view_model/ionia/ionia_buy_card_view_model.dart';
|
||||||
import 'package:cake_wallet/view_model/ionia/ionia_custom_tip_view_model.dart';
|
import 'package:cake_wallet/view_model/ionia/ionia_custom_tip_view_model.dart';
|
||||||
|
@ -26,6 +31,10 @@ import 'package:cake_wallet/src/screens/dashboard/widgets/balance_page.dart';
|
||||||
import 'package:cake_wallet/view_model/ionia/ionia_account_view_model.dart';
|
import 'package:cake_wallet/view_model/ionia/ionia_account_view_model.dart';
|
||||||
import 'package:cake_wallet/view_model/ionia/ionia_gift_cards_list_view_model.dart';
|
import 'package:cake_wallet/view_model/ionia/ionia_gift_cards_list_view_model.dart';
|
||||||
import 'package:cake_wallet/view_model/ionia/ionia_purchase_merch_view_model.dart';
|
import 'package:cake_wallet/view_model/ionia/ionia_purchase_merch_view_model.dart';
|
||||||
|
import 'package:cake_wallet/view_model/settings/display_settings_view_model.dart';
|
||||||
|
import 'package:cake_wallet/view_model/settings/other_settings_view_model.dart';
|
||||||
|
import 'package:cake_wallet/view_model/settings/privacy_settings_view_model.dart';
|
||||||
|
import 'package:cake_wallet/view_model/settings/security_settings_view_model.dart';
|
||||||
import 'package:cw_core/unspent_coins_info.dart';
|
import 'package:cw_core/unspent_coins_info.dart';
|
||||||
import 'package:cake_wallet/core/backup_service.dart';
|
import 'package:cake_wallet/core/backup_service.dart';
|
||||||
import 'package:cw_core/wallet_service.dart';
|
import 'package:cw_core/wallet_service.dart';
|
||||||
|
@ -49,7 +58,6 @@ import 'package:cake_wallet/src/screens/exchange_trade/exchange_trade_page.dart'
|
||||||
import 'package:cake_wallet/src/screens/faq/faq_page.dart';
|
import 'package:cake_wallet/src/screens/faq/faq_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/new_wallet/new_wallet_type_page.dart';
|
import 'package:cake_wallet/src/screens/new_wallet/new_wallet_type_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/nodes/node_create_or_edit_page.dart';
|
import 'package:cake_wallet/src/screens/nodes/node_create_or_edit_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/nodes/nodes_list_page.dart';
|
|
||||||
import 'package:cake_wallet/src/screens/order_details/order_details_page.dart';
|
import 'package:cake_wallet/src/screens/order_details/order_details_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/pin_code/pin_code_widget.dart';
|
import 'package:cake_wallet/src/screens/pin_code/pin_code_widget.dart';
|
||||||
import 'package:cake_wallet/src/screens/rescan/rescan_page.dart';
|
import 'package:cake_wallet/src/screens/rescan/rescan_page.dart';
|
||||||
|
@ -59,7 +67,6 @@ import 'package:cake_wallet/src/screens/restore/wallet_restore_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/seed/pre_seed_page.dart';
|
import 'package:cake_wallet/src/screens/seed/pre_seed_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/seed/wallet_seed_page.dart';
|
import 'package:cake_wallet/src/screens/seed/wallet_seed_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/send/send_template_page.dart';
|
import 'package:cake_wallet/src/screens/send/send_template_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/settings/settings.dart';
|
|
||||||
import 'package:cake_wallet/src/screens/setup_pin_code/setup_pin_code.dart';
|
import 'package:cake_wallet/src/screens/setup_pin_code/setup_pin_code.dart';
|
||||||
import 'package:cake_wallet/src/screens/support/support_page.dart';
|
import 'package:cake_wallet/src/screens/support/support_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/trade_details/trade_details_page.dart';
|
import 'package:cake_wallet/src/screens/trade_details/trade_details_page.dart';
|
||||||
|
@ -115,7 +122,6 @@ import 'package:cake_wallet/view_model/wallet_address_list/wallet_address_list_v
|
||||||
import 'package:cake_wallet/view_model/monero_account_list/monero_account_edit_or_create_view_model.dart';
|
import 'package:cake_wallet/view_model/monero_account_list/monero_account_edit_or_create_view_model.dart';
|
||||||
import 'package:cake_wallet/view_model/monero_account_list/monero_account_list_view_model.dart';
|
import 'package:cake_wallet/view_model/monero_account_list/monero_account_list_view_model.dart';
|
||||||
import 'package:cake_wallet/view_model/send/send_view_model.dart';
|
import 'package:cake_wallet/view_model/send/send_view_model.dart';
|
||||||
import 'package:cake_wallet/view_model/settings/settings_view_model.dart';
|
|
||||||
import 'package:cake_wallet/view_model/wallet_keys_view_model.dart';
|
import 'package:cake_wallet/view_model/wallet_keys_view_model.dart';
|
||||||
import 'package:cake_wallet/view_model/wallet_list/wallet_list_view_model.dart';
|
import 'package:cake_wallet/view_model/wallet_list/wallet_list_view_model.dart';
|
||||||
import 'package:cake_wallet/view_model/wallet_restore_view_model.dart';
|
import 'package:cake_wallet/view_model/wallet_restore_view_model.dart';
|
||||||
|
@ -377,8 +383,7 @@ Future setup(
|
||||||
_transactionDescriptionBox));
|
_transactionDescriptionBox));
|
||||||
|
|
||||||
getIt.registerFactory(
|
getIt.registerFactory(
|
||||||
() => SendPage(sendViewModel: getIt.get<SendViewModel>(),
|
() => SendPage(sendViewModel: getIt.get<SendViewModel>()));
|
||||||
settingsViewModel: getIt.get<SettingsViewModel>()));
|
|
||||||
|
|
||||||
getIt.registerFactory(() => SendTemplatePage(
|
getIt.registerFactory(() => SendTemplatePage(
|
||||||
sendTemplateViewModel: getIt.get<SendTemplateViewModel>()));
|
sendTemplateViewModel: getIt.get<SendTemplateViewModel>()));
|
||||||
|
@ -434,12 +439,20 @@ Future setup(
|
||||||
getIt.get<MoneroAccountEditOrCreateViewModel>(param1: account)));
|
getIt.get<MoneroAccountEditOrCreateViewModel>(param1: account)));
|
||||||
|
|
||||||
getIt.registerFactory(() {
|
getIt.registerFactory(() {
|
||||||
final appStore = getIt.get<AppStore>();
|
return DisplaySettingsViewModel(getIt.get<SettingsStore>());
|
||||||
final yatStore = getIt.get<YatStore>();
|
|
||||||
return SettingsViewModel(appStore.settingsStore, yatStore, appStore.wallet!);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
getIt.registerFactory(() => SettingsPage(getIt.get<SettingsViewModel>()));
|
getIt.registerFactory(() {
|
||||||
|
return PrivacySettingsViewModel(getIt.get<SettingsStore>());
|
||||||
|
});
|
||||||
|
|
||||||
|
getIt.registerFactory(() {
|
||||||
|
return OtherSettingsViewModel(getIt.get<SettingsStore>(), getIt.get<AppStore>().wallet!);
|
||||||
|
});
|
||||||
|
|
||||||
|
getIt.registerFactory(() {
|
||||||
|
return SecuritySettingsViewModel(getIt.get<SettingsStore>());
|
||||||
|
});
|
||||||
|
|
||||||
getIt
|
getIt
|
||||||
.registerFactory(() => WalletSeedViewModel(getIt.get<AppStore>().wallet!));
|
.registerFactory(() => WalletSeedViewModel(getIt.get<AppStore>().wallet!));
|
||||||
|
@ -475,7 +488,15 @@ Future setup(
|
||||||
_nodeSource, appStore.wallet!, appStore.settingsStore);
|
_nodeSource, appStore.wallet!, appStore.settingsStore);
|
||||||
});
|
});
|
||||||
|
|
||||||
getIt.registerFactory(() => NodeListPage(getIt.get<NodeListViewModel>()));
|
getIt.registerFactory(() => ConnectionSyncPage(getIt.get<NodeListViewModel>(), getIt.get<DashboardViewModel>()));
|
||||||
|
|
||||||
|
getIt.registerFactory(() => SecurityBackupPage(getIt.get<SecuritySettingsViewModel>()));
|
||||||
|
|
||||||
|
getIt.registerFactory(() => PrivacyPage(getIt.get<PrivacySettingsViewModel>()));
|
||||||
|
|
||||||
|
getIt.registerFactory(() => DisplaySettingsPage(getIt.get<DisplaySettingsViewModel>()));
|
||||||
|
|
||||||
|
getIt.registerFactory(() => OtherSettingsPage(getIt.get<OtherSettingsViewModel>()));
|
||||||
|
|
||||||
getIt.registerFactory(() =>
|
getIt.registerFactory(() =>
|
||||||
NodeCreateOrEditViewModel(_nodeSource, getIt.get<AppStore>().wallet!));
|
NodeCreateOrEditViewModel(_nodeSource, getIt.get<AppStore>().wallet!));
|
||||||
|
@ -494,7 +515,6 @@ Future setup(
|
||||||
getIt.get<TradesStore>(),
|
getIt.get<TradesStore>(),
|
||||||
getIt.get<AppStore>().settingsStore,
|
getIt.get<AppStore>().settingsStore,
|
||||||
getIt.get<SharedPreferences>(),
|
getIt.get<SharedPreferences>(),
|
||||||
getIt.get<SettingsViewModel>(),
|
|
||||||
));
|
));
|
||||||
|
|
||||||
getIt.registerFactory(() => ExchangeTradeViewModel(
|
getIt.registerFactory(() => ExchangeTradeViewModel(
|
||||||
|
|
|
@ -70,6 +70,8 @@ Future defaultSettingsMigration(
|
||||||
sharedPreferences: sharedPreferences, nodes: nodes);
|
sharedPreferences: sharedPreferences, nodes: nodes);
|
||||||
await changeLitecoinCurrentElectrumServerToDefault(
|
await changeLitecoinCurrentElectrumServerToDefault(
|
||||||
sharedPreferences: sharedPreferences, nodes: nodes);
|
sharedPreferences: sharedPreferences, nodes: nodes);
|
||||||
|
await changeHavenCurrentNodeToDefault(
|
||||||
|
sharedPreferences: sharedPreferences, nodes: nodes);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
|
@ -134,19 +136,32 @@ Future defaultSettingsMigration(
|
||||||
await changeDefaultHavenNode(nodes);
|
await changeDefaultHavenNode(nodes);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 18:
|
||||||
|
await addOnionNode(nodes);
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
await sharedPreferences.setInt(
|
await sharedPreferences.setInt(
|
||||||
'current_default_settings_migration_version', version);
|
PreferencesKey.currentDefaultSettingsMigrationVersion, version);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
print('Migration error: ${e.toString()}');
|
print('Migration error: ${e.toString()}');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
await sharedPreferences.setInt(
|
await sharedPreferences.setInt(
|
||||||
'current_default_settings_migration_version', version);
|
PreferencesKey.currentDefaultSettingsMigrationVersion, version);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> addOnionNode(Box<Node> nodes) async {
|
||||||
|
final onionNodeUri = "cakexmrl7bonq7ovjka5kuwuyd3f7qnkz6z6s6dmsy3uckwra7bvggyd.onion:18081";
|
||||||
|
|
||||||
|
// check if the user has this node before (added it manually)
|
||||||
|
if (nodes.values.firstWhereOrNull((element) => element.uriRaw == onionNodeUri) == null) {
|
||||||
|
await nodes.add(Node(uri: onionNodeUri, type: WalletType.monero));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> replaceNodesMigration({required Box<Node> nodes}) async {
|
Future<void> replaceNodesMigration({required Box<Node> nodes}) async {
|
||||||
|
@ -177,7 +192,7 @@ Future<void> changeMoneroCurrentNodeToDefault(
|
||||||
final node = getMoneroDefaultNode(nodes: nodes);
|
final node = getMoneroDefaultNode(nodes: nodes);
|
||||||
final nodeId = node?.key as int ?? 0; // 0 - England
|
final nodeId = node?.key as int ?? 0; // 0 - England
|
||||||
|
|
||||||
await sharedPreferences.setInt('current_node_id', nodeId);
|
await sharedPreferences.setInt(PreferencesKey.currentNodeIdKey, nodeId);
|
||||||
}
|
}
|
||||||
|
|
||||||
Node? getBitcoinDefaultElectrumServer({required Box<Node> nodes}) {
|
Node? getBitcoinDefaultElectrumServer({required Box<Node> nodes}) {
|
||||||
|
@ -224,7 +239,7 @@ Future<void> changeBitcoinCurrentElectrumServerToDefault(
|
||||||
final server = getBitcoinDefaultElectrumServer(nodes: nodes);
|
final server = getBitcoinDefaultElectrumServer(nodes: nodes);
|
||||||
final serverId = server?.key as int ?? 0;
|
final serverId = server?.key as int ?? 0;
|
||||||
|
|
||||||
await sharedPreferences.setInt('current_node_id_btc', serverId);
|
await sharedPreferences.setInt(PreferencesKey.currentBitcoinElectrumSererIdKey, serverId);
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> changeLitecoinCurrentElectrumServerToDefault(
|
Future<void> changeLitecoinCurrentElectrumServerToDefault(
|
||||||
|
@ -233,7 +248,7 @@ Future<void> changeLitecoinCurrentElectrumServerToDefault(
|
||||||
final server = getLitecoinDefaultElectrumServer(nodes: nodes);
|
final server = getLitecoinDefaultElectrumServer(nodes: nodes);
|
||||||
final serverId = server?.key as int ?? 0;
|
final serverId = server?.key as int ?? 0;
|
||||||
|
|
||||||
await sharedPreferences.setInt('current_node_id_ltc', serverId);
|
await sharedPreferences.setInt(PreferencesKey.currentLitecoinElectrumSererIdKey, serverId);
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> changeHavenCurrentNodeToDefault(
|
Future<void> changeHavenCurrentNodeToDefault(
|
||||||
|
@ -253,7 +268,7 @@ Future<void> replaceDefaultNode(
|
||||||
'eu-node.cakewallet.io:18081',
|
'eu-node.cakewallet.io:18081',
|
||||||
'node.cakewallet.io:18081'
|
'node.cakewallet.io:18081'
|
||||||
];
|
];
|
||||||
final currentNodeId = sharedPreferences.getInt('current_node_id');
|
final currentNodeId = sharedPreferences.getInt(PreferencesKey.currentNodeIdKey);
|
||||||
final currentNode =
|
final currentNode =
|
||||||
nodes.values.firstWhereOrNull((Node node) => node.key == currentNodeId);
|
nodes.values.firstWhereOrNull((Node node) => node.key == currentNodeId);
|
||||||
final needToReplace =
|
final needToReplace =
|
||||||
|
@ -278,17 +293,29 @@ Future<void> updateNodeTypes({required Box<Node> nodes}) async {
|
||||||
|
|
||||||
Future<void> addBitcoinElectrumServerList({required Box<Node> nodes}) async {
|
Future<void> addBitcoinElectrumServerList({required Box<Node> nodes}) async {
|
||||||
final serverList = await loadBitcoinElectrumServerList();
|
final serverList = await loadBitcoinElectrumServerList();
|
||||||
await nodes.addAll(serverList);
|
for (var node in serverList) {
|
||||||
|
if (nodes.values.firstWhereOrNull((element) => element.uriRaw == node.uriRaw) == null) {
|
||||||
|
await nodes.add(node);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> addLitecoinElectrumServerList({required Box<Node> nodes}) async {
|
Future<void> addLitecoinElectrumServerList({required Box<Node> nodes}) async {
|
||||||
final serverList = await loadLitecoinElectrumServerList();
|
final serverList = await loadLitecoinElectrumServerList();
|
||||||
await nodes.addAll(serverList);
|
for (var node in serverList) {
|
||||||
|
if (nodes.values.firstWhereOrNull((element) => element.uriRaw == node.uriRaw) == null) {
|
||||||
|
await nodes.add(node);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> addHavenNodeList({required Box<Node> nodes}) async {
|
Future<void> addHavenNodeList({required Box<Node> nodes}) async {
|
||||||
final nodeList = await loadDefaultHavenNodes();
|
final nodeList = await loadDefaultHavenNodes();
|
||||||
await nodes.addAll(nodeList);
|
for (var node in nodeList) {
|
||||||
|
if (nodes.values.firstWhereOrNull((element) => element.uriRaw == node.uriRaw) == null) {
|
||||||
|
await nodes.add(node);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> addAddressesForMoneroWallets(
|
Future<void> addAddressesForMoneroWallets(
|
||||||
|
@ -432,7 +459,7 @@ Future<void> resetBitcoinElectrumServer(
|
||||||
final oldElectrumServer = nodeSource.values.firstWhereOrNull(
|
final oldElectrumServer = nodeSource.values.firstWhereOrNull(
|
||||||
(node) => node.uri.toString().contains('electrumx.cakewallet.com'));
|
(node) => node.uri.toString().contains('electrumx.cakewallet.com'));
|
||||||
var cakeWalletNode = nodeSource.values.firstWhereOrNull(
|
var cakeWalletNode = nodeSource.values.firstWhereOrNull(
|
||||||
(node) => node.uri.toString() == cakeWalletBitcoinElectrumUri);
|
(node) => node.uriRaw.toString() == cakeWalletBitcoinElectrumUri);
|
||||||
|
|
||||||
if (cakeWalletNode == null) {
|
if (cakeWalletNode == null) {
|
||||||
cakeWalletNode =
|
cakeWalletNode =
|
||||||
|
|
|
@ -4,7 +4,6 @@ import 'package:cake_wallet/entities/parsed_address.dart';
|
||||||
import 'package:cake_wallet/entities/unstoppable_domain_address.dart';
|
import 'package:cake_wallet/entities/unstoppable_domain_address.dart';
|
||||||
import 'package:cake_wallet/entities/emoji_string_extension.dart';
|
import 'package:cake_wallet/entities/emoji_string_extension.dart';
|
||||||
import 'package:cw_core/wallet_type.dart';
|
import 'package:cw_core/wallet_type.dart';
|
||||||
import 'package:flutter/foundation.dart';
|
|
||||||
import 'package:cake_wallet/entities/fio_address_provider.dart';
|
import 'package:cake_wallet/entities/fio_address_provider.dart';
|
||||||
|
|
||||||
class AddressResolver {
|
class AddressResolver {
|
||||||
|
@ -51,7 +50,7 @@ class AddressResolver {
|
||||||
return ParsedAddress(addresses: [text]);
|
return ParsedAddress(addresses: [text]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (unstoppableDomains.any((domain) => name.contains(domain))) {
|
if (unstoppableDomains.any((domain) => name.trim() == domain)) {
|
||||||
final address = await fetchUnstoppableDomainAddress(text, ticker);
|
final address = await fetchUnstoppableDomainAddress(text, ticker);
|
||||||
return ParsedAddress.fetchUnstoppableDomainAddress(address: address, name: text);
|
return ParsedAddress.fetchUnstoppableDomainAddress(address: address, name: text);
|
||||||
}
|
}
|
||||||
|
|
21
lib/entities/priority_for_wallet_type.dart
Normal file
21
lib/entities/priority_for_wallet_type.dart
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
import 'package:cake_wallet/bitcoin/bitcoin.dart';
|
||||||
|
import 'package:cake_wallet/haven/haven.dart';
|
||||||
|
import 'package:cake_wallet/monero/monero.dart';
|
||||||
|
import 'package:cw_core/transaction_priority.dart';
|
||||||
|
import 'package:cw_core/wallet_type.dart';
|
||||||
|
|
||||||
|
List<TransactionPriority> priorityForWalletType(WalletType type) {
|
||||||
|
switch (type) {
|
||||||
|
case WalletType.monero:
|
||||||
|
return monero!.getTransactionPriorities();
|
||||||
|
case WalletType.bitcoin:
|
||||||
|
return bitcoin!.getTransactionPriorities();
|
||||||
|
case WalletType.litecoin:
|
||||||
|
return bitcoin!.getLitecoinTransactionPriorities();
|
||||||
|
case WalletType.haven:
|
||||||
|
return haven!.getTransactionPriorities();
|
||||||
|
default:
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -114,7 +114,7 @@ class ChangeNowExchangeProvider extends ExchangeProvider {
|
||||||
|
|
||||||
final uri = Uri.https(apiAuthority, createTradePath);
|
final uri = Uri.https(apiAuthority, createTradePath);
|
||||||
final response = await post(uri, headers: headers, body: json.encode(body));
|
final response = await post(uri, headers: headers, body: json.encode(body));
|
||||||
|
|
||||||
if (response.statusCode == 400) {
|
if (response.statusCode == 400) {
|
||||||
final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
||||||
final error = responseJSON['error'] as String;
|
final error = responseJSON['error'] as String;
|
||||||
|
@ -130,7 +130,7 @@ class ChangeNowExchangeProvider extends ExchangeProvider {
|
||||||
final id = responseJSON['id'] as String;
|
final id = responseJSON['id'] as String;
|
||||||
final inputAddress = responseJSON['payinAddress'] as String;
|
final inputAddress = responseJSON['payinAddress'] as String;
|
||||||
final refundAddress = responseJSON['refundAddress'] as String;
|
final refundAddress = responseJSON['refundAddress'] as String;
|
||||||
final extraId = responseJSON['payinExtraId'] as String;
|
final extraId = responseJSON['payinExtraId'] as String?;
|
||||||
|
|
||||||
return Trade(
|
return Trade(
|
||||||
id: id,
|
id: id,
|
||||||
|
|
|
@ -128,7 +128,7 @@ Future<void> main() async {
|
||||||
exchangeTemplates: exchangeTemplates,
|
exchangeTemplates: exchangeTemplates,
|
||||||
transactionDescriptions: transactionDescriptions,
|
transactionDescriptions: transactionDescriptions,
|
||||||
secureStorage: secureStorage,
|
secureStorage: secureStorage,
|
||||||
initialMigrationVersion: 17);
|
initialMigrationVersion: 18);
|
||||||
runApp(App());
|
runApp(App());
|
||||||
} catch (e, stacktrace) {
|
} catch (e, stacktrace) {
|
||||||
runApp(MaterialApp(
|
runApp(MaterialApp(
|
||||||
|
|
|
@ -5,6 +5,10 @@ import 'package:cake_wallet/src/screens/backup/edit_backup_password_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/buy/buy_webview_page.dart';
|
import 'package:cake_wallet/src/screens/buy/buy_webview_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/buy/onramper_page.dart';
|
import 'package:cake_wallet/src/screens/buy/onramper_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/buy/pre_order_page.dart';
|
import 'package:cake_wallet/src/screens/buy/pre_order_page.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/display_settings_page.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/other_settings_page.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/privacy_page.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/security_backup_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/ionia/cards/ionia_account_cards_page.dart';
|
import 'package:cake_wallet/src/screens/ionia/cards/ionia_account_cards_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/ionia/cards/ionia_account_page.dart';
|
import 'package:cake_wallet/src/screens/ionia/cards/ionia_account_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/ionia/cards/ionia_custom_redeem_page.dart';
|
import 'package:cake_wallet/src/screens/ionia/cards/ionia_custom_redeem_page.dart';
|
||||||
|
@ -16,6 +20,7 @@ import 'package:cake_wallet/src/screens/pin_code/pin_code_widget.dart';
|
||||||
import 'package:cake_wallet/src/screens/restore/restore_from_backup_page.dart';
|
import 'package:cake_wallet/src/screens/restore/restore_from_backup_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/restore/wallet_restore_page.dart';
|
import 'package:cake_wallet/src/screens/restore/wallet_restore_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/seed/pre_seed_page.dart';
|
import 'package:cake_wallet/src/screens/seed/pre_seed_page.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/connection_sync_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/support/support_page.dart';
|
import 'package:cake_wallet/src/screens/support/support_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/unspent_coins/unspent_coins_details_page.dart';
|
import 'package:cake_wallet/src/screens/unspent_coins/unspent_coins_details_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/unspent_coins/unspent_coins_list_page.dart';
|
import 'package:cake_wallet/src/screens/unspent_coins/unspent_coins_list_page.dart';
|
||||||
|
@ -36,7 +41,6 @@ import 'package:cake_wallet/src/screens/dashboard/dashboard_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/seed/wallet_seed_page.dart';
|
import 'package:cake_wallet/src/screens/seed/wallet_seed_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/auth/auth_page.dart';
|
import 'package:cake_wallet/src/screens/auth/auth_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/nodes/node_create_or_edit_page.dart';
|
import 'package:cake_wallet/src/screens/nodes/node_create_or_edit_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/nodes/nodes_list_page.dart';
|
|
||||||
import 'package:cake_wallet/src/screens/receive/receive_page.dart';
|
import 'package:cake_wallet/src/screens/receive/receive_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/subaddress/address_edit_or_create_page.dart';
|
import 'package:cake_wallet/src/screens/subaddress/address_edit_or_create_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/wallet_list/wallet_list_page.dart';
|
import 'package:cake_wallet/src/screens/wallet_list/wallet_list_page.dart';
|
||||||
|
@ -56,7 +60,6 @@ import 'package:cake_wallet/src/screens/contact/contact_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/wallet_keys/wallet_keys_page.dart';
|
import 'package:cake_wallet/src/screens/wallet_keys/wallet_keys_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/restore/restore_wallet_from_seed_details.dart';
|
import 'package:cake_wallet/src/screens/restore/restore_wallet_from_seed_details.dart';
|
||||||
import 'package:cake_wallet/src/screens/exchange/exchange_page.dart';
|
import 'package:cake_wallet/src/screens/exchange/exchange_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/settings/settings.dart';
|
|
||||||
import 'package:cake_wallet/src/screens/rescan/rescan_page.dart';
|
import 'package:cake_wallet/src/screens/rescan/rescan_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/faq/faq_page.dart';
|
import 'package:cake_wallet/src/screens/faq/faq_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/trade_details/trade_details_page.dart';
|
import 'package:cake_wallet/src/screens/trade_details/trade_details_page.dart';
|
||||||
|
@ -274,10 +277,26 @@ Route<dynamic> createRoute(RouteSettings settings) {
|
||||||
param2: false),
|
param2: false),
|
||||||
onWillPop: () async => false));
|
onWillPop: () async => false));
|
||||||
|
|
||||||
case Routes.nodeList:
|
case Routes.connectionSync:
|
||||||
return CupertinoPageRoute<void>(
|
return CupertinoPageRoute<void>(
|
||||||
builder: (_) => getIt.get<NodeListPage>());
|
builder: (_) => getIt.get<ConnectionSyncPage>());
|
||||||
|
|
||||||
|
case Routes.securityBackupPage:
|
||||||
|
return CupertinoPageRoute<void>(
|
||||||
|
builder: (_) => getIt.get<SecurityBackupPage>());
|
||||||
|
|
||||||
|
case Routes.privacyPage:
|
||||||
|
return CupertinoPageRoute<void>(
|
||||||
|
builder: (_) => getIt.get<PrivacyPage>());
|
||||||
|
|
||||||
|
case Routes.displaySettingsPage:
|
||||||
|
return CupertinoPageRoute<void>(
|
||||||
|
builder: (_) => getIt.get<DisplaySettingsPage>());
|
||||||
|
|
||||||
|
case Routes.otherSettingsPage:
|
||||||
|
return CupertinoPageRoute<void>(
|
||||||
|
builder: (_) => getIt.get<OtherSettingsPage>());
|
||||||
|
|
||||||
case Routes.newNode:
|
case Routes.newNode:
|
||||||
return CupertinoPageRoute<void>(
|
return CupertinoPageRoute<void>(
|
||||||
builder: (_) => getIt.get<NodeCreateOrEditPage>());
|
builder: (_) => getIt.get<NodeCreateOrEditPage>());
|
||||||
|
@ -360,9 +379,6 @@ Route<dynamic> createRoute(RouteSettings settings) {
|
||||||
return CupertinoPageRoute<void>(
|
return CupertinoPageRoute<void>(
|
||||||
builder: (_) => getIt.get<ExchangeTemplatePage>());
|
builder: (_) => getIt.get<ExchangeTemplatePage>());
|
||||||
|
|
||||||
case Routes.settings:
|
|
||||||
return MaterialPageRoute<void>(builder: (_) => getIt.get<SettingsPage>());
|
|
||||||
|
|
||||||
case Routes.rescan:
|
case Routes.rescan:
|
||||||
return MaterialPageRoute<void>(builder: (_) => getIt.get<RescanPage>());
|
return MaterialPageRoute<void>(builder: (_) => getIt.get<RescanPage>());
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,6 @@ class Routes {
|
||||||
static const seedLanguage = '/seed_language';
|
static const seedLanguage = '/seed_language';
|
||||||
static const walletList = '/view_model.wallet_list';
|
static const walletList = '/view_model.wallet_list';
|
||||||
static const auth = '/auth';
|
static const auth = '/auth';
|
||||||
static const nodeList = '/node_list';
|
|
||||||
static const newNode = '/new_node_list';
|
static const newNode = '/new_node_list';
|
||||||
static const login = '/login';
|
static const login = '/login';
|
||||||
static const splash = '/splash';
|
static const splash = '/splash';
|
||||||
|
@ -77,4 +76,9 @@ class Routes {
|
||||||
static const ioniaMoreOptionsPage = '/ionia_more_options_page';
|
static const ioniaMoreOptionsPage = '/ionia_more_options_page';
|
||||||
static const ioniaCustomRedeemPage = '/ionia_custom_redeem_page';
|
static const ioniaCustomRedeemPage = '/ionia_custom_redeem_page';
|
||||||
static const onramperPage = '/onramper';
|
static const onramperPage = '/onramper';
|
||||||
|
static const connectionSync = '/connection_sync_page';
|
||||||
|
static const securityBackupPage = '/security_and_backup_page';
|
||||||
|
static const privacyPage = '/privacy_page';
|
||||||
|
static const displaySettingsPage = '/display_settings_page';
|
||||||
|
static const otherSettingsPage = '/other_settings_page';
|
||||||
}
|
}
|
||||||
|
|
|
@ -60,7 +60,7 @@ class DashboardPage extends BasePage {
|
||||||
Widget middle(BuildContext context) {
|
Widget middle(BuildContext context) {
|
||||||
return SyncIndicator(dashboardViewModel: walletViewModel,
|
return SyncIndicator(dashboardViewModel: walletViewModel,
|
||||||
onTap: () => Navigator.of(context, rootNavigator: true)
|
onTap: () => Navigator.of(context, rootNavigator: true)
|
||||||
.pushNamed(Routes.nodeList));
|
.pushNamed(Routes.connectionSync));
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|
|
@ -1,81 +1,64 @@
|
||||||
import 'package:cake_wallet/palette.dart';
|
import 'package:cake_wallet/palette.dart';
|
||||||
import 'package:cake_wallet/src/screens/dashboard/wallet_menu_item.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:flutter/material.dart';
|
||||||
import 'package:cake_wallet/routes.dart';
|
import 'package:cake_wallet/routes.dart';
|
||||||
import 'package:cake_wallet/generated/i18n.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';
|
|
||||||
import 'package:cake_wallet/wallet_type_utils.dart';
|
|
||||||
|
|
||||||
// FIXME: terrible design
|
// FIXME: terrible design
|
||||||
|
|
||||||
class WalletMenu {
|
class WalletMenu {
|
||||||
WalletMenu(this.context, this.reconnect, this.hasRescan) : items = [] {
|
WalletMenu(this.context, this.reconnect, this.hasRescan) : items = [] {
|
||||||
items.addAll([
|
items.addAll([
|
||||||
WalletMenuItem(
|
WalletMenuItem(
|
||||||
title: S.current.reconnect,
|
title: S.current.connection_sync,
|
||||||
image: Image.asset('assets/images/reconnect_menu.png',
|
image: Image.asset('assets/images/nodes_menu.png',
|
||||||
height: 16, width: 16),
|
height: 16, width: 16),
|
||||||
handler: () => _presentReconnectAlert(context)),
|
handler: () => Navigator.of(context).pushNamed(Routes.connectionSync),
|
||||||
if (hasRescan)
|
),
|
||||||
WalletMenuItem(
|
WalletMenuItem(
|
||||||
title: S.current.rescan,
|
title: S.current.wallets,
|
||||||
image: Image.asset('assets/images/filter_icon.png',
|
image: Image.asset('assets/images/wallet_menu.png',
|
||||||
height: 16, width: 16, color: Palette.darkBlue),
|
height: 16, width: 16),
|
||||||
handler: () => Navigator.of(context).pushNamed(Routes.rescan)),
|
handler: () => Navigator.of(context).pushNamed(Routes.walletList),
|
||||||
WalletMenuItem(
|
),
|
||||||
title: S.current.wallets,
|
WalletMenuItem(
|
||||||
image: Image.asset('assets/images/wallet_menu.png',
|
title: S.current.security_and_backup,
|
||||||
height: 16, width: 16),
|
image:
|
||||||
handler: () => Navigator.of(context).pushNamed(Routes.walletList)),
|
Image.asset('assets/images/key_menu.png', height: 16, width: 16),
|
||||||
WalletMenuItem(
|
handler: () {
|
||||||
title: S.current.nodes,
|
Navigator.of(context).pushNamed(Routes.securityBackupPage);
|
||||||
image: Image.asset('assets/images/nodes_menu.png',
|
}),
|
||||||
height: 16, width: 16),
|
WalletMenuItem(
|
||||||
handler: () => Navigator.of(context).pushNamed(Routes.nodeList)),
|
title: S.current.privacy,
|
||||||
WalletMenuItem(
|
image:
|
||||||
title: S.current.show_keys,
|
Image.asset('assets/images/eye_menu.png', height: 16, width: 16),
|
||||||
image:
|
handler: () {
|
||||||
Image.asset('assets/images/key_menu.png', height: 16, width: 16),
|
Navigator.of(context).pushNamed(Routes.privacyPage);
|
||||||
handler: () {
|
}),
|
||||||
Navigator.of(context).pushNamed(Routes.auth,
|
WalletMenuItem(
|
||||||
arguments: (bool isAuthenticatedSuccessfully, AuthPageState auth) {
|
title: S.current.address_book_menu,
|
||||||
if (isAuthenticatedSuccessfully) {
|
image: Image.asset('assets/images/open_book_menu.png',
|
||||||
auth.close(route: Routes.showKeys);
|
height: 16, width: 16),
|
||||||
}
|
handler: () => Navigator.of(context).pushNamed(Routes.addressBook),
|
||||||
});
|
),
|
||||||
}),
|
WalletMenuItem(
|
||||||
WalletMenuItem(
|
title: S.current.display_settings,
|
||||||
title: S.current.address_book_menu,
|
image: Image.asset('assets/images/eye_menu.png',
|
||||||
image: Image.asset('assets/images/open_book_menu.png',
|
height: 16, width: 16),
|
||||||
height: 16, width: 16),
|
handler: () => Navigator.of(context).pushNamed(Routes.displaySettingsPage),
|
||||||
handler: () => Navigator.of(context).pushNamed(Routes.addressBook)),
|
),
|
||||||
WalletMenuItem(
|
WalletMenuItem(
|
||||||
title: S.current.backup,
|
title: S.current.other_settings,
|
||||||
image: Image.asset('assets/images/restore_wallet.png',
|
image: Image.asset('assets/images/settings_menu.png',
|
||||||
height: 16,
|
height: 16, width: 16),
|
||||||
width: 16,
|
handler: () => Navigator.of(context).pushNamed(Routes.otherSettingsPage),
|
||||||
color: Palette.darkBlue),
|
),
|
||||||
handler: () {
|
WalletMenuItem(
|
||||||
Navigator.of(context).pushNamed(
|
title: S.current.settings_support,
|
||||||
Routes.auth,
|
image: Image.asset('assets/images/question_mark.png',
|
||||||
arguments: (bool isAuthenticatedSuccessfully, AuthPageState auth) {
|
height: 16, width: 16, color: Palette.darkBlue),
|
||||||
if (isAuthenticatedSuccessfully) {
|
handler: () => Navigator.of(context).pushNamed(Routes.support),
|
||||||
auth.close(route:Routes.backup);
|
),
|
||||||
}
|
|
||||||
});
|
|
||||||
}),
|
|
||||||
WalletMenuItem(
|
|
||||||
title: S.current.settings_title,
|
|
||||||
image: Image.asset('assets/images/settings_menu.png',
|
|
||||||
height: 16, width: 16),
|
|
||||||
handler: () => Navigator.of(context).pushNamed(Routes.settings)),
|
|
||||||
WalletMenuItem(
|
|
||||||
title: S.current.settings_support,
|
|
||||||
image: Image.asset('assets/images/question_mark.png',
|
|
||||||
height: 16, width: 16, color: Palette.darkBlue),
|
|
||||||
handler: () => Navigator.of(context).pushNamed(Routes.support)),
|
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -86,23 +69,6 @@ class WalletMenu {
|
||||||
|
|
||||||
void action(int index) {
|
void action(int index) {
|
||||||
final item = items[index];
|
final item = items[index];
|
||||||
item?.handler();
|
item.handler();
|
||||||
}
|
|
||||||
|
|
||||||
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());
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -118,7 +118,7 @@ class IoniaManageCardsPage extends BasePage {
|
||||||
width: 32,
|
width: 32,
|
||||||
padding: EdgeInsets.all(8),
|
padding: EdgeInsets.all(8),
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: Colors.white.withOpacity(0.15),
|
color: Theme.of(context).textTheme!.headline6!.backgroundColor!,
|
||||||
border: Border.all(
|
border: Border.all(
|
||||||
color: Colors.white.withOpacity(0.2),
|
color: Colors.white.withOpacity(0.2),
|
||||||
),
|
),
|
||||||
|
|
|
@ -20,7 +20,7 @@ class IoniaFilterModal extends StatelessWidget {
|
||||||
padding: EdgeInsets.all(10),
|
padding: EdgeInsets.all(10),
|
||||||
child: Image.asset(
|
child: Image.asset(
|
||||||
'assets/images/mini_search_icon.png',
|
'assets/images/mini_search_icon.png',
|
||||||
color: Theme.of(context).accentColor,
|
color: Theme.of(context).textTheme.subtitle2!.color!,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
|
@ -53,7 +53,7 @@ class IoniaFilterModal extends StatelessWidget {
|
||||||
prefixIcon: searchIcon,
|
prefixIcon: searchIcon,
|
||||||
hintText: S.of(context).search_category,
|
hintText: S.of(context).search_category,
|
||||||
contentPadding: EdgeInsets.only(bottom: 5),
|
contentPadding: EdgeInsets.only(bottom: 5),
|
||||||
fillColor: Theme.of(context).textTheme!.subtitle1!.backgroundColor!,
|
fillColor: Theme.of(context).primaryTextTheme!.caption!.decorationColor!.withOpacity(0.5),
|
||||||
border: OutlineInputBorder(
|
border: OutlineInputBorder(
|
||||||
borderSide: BorderSide.none,
|
borderSide: BorderSide.none,
|
||||||
borderRadius: BorderRadius.circular(8),
|
borderRadius: BorderRadius.circular(8),
|
||||||
|
|
|
@ -174,7 +174,22 @@ class NodeCreateOrEditPage extends BasePage {
|
||||||
caption: S.of(context).use_ssl,
|
caption: S.of(context).use_ssl,
|
||||||
))
|
))
|
||||||
],
|
],
|
||||||
))
|
)),
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsets.only(top: 20),
|
||||||
|
child: Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
children: [
|
||||||
|
Observer(
|
||||||
|
builder: (_) => StandardCheckbox(
|
||||||
|
value: nodeCreateOrEditViewModel.trusted,
|
||||||
|
onChanged: (value) =>
|
||||||
|
nodeCreateOrEditViewModel.trusted = value,
|
||||||
|
caption: S.of(context).trusted,
|
||||||
|
))
|
||||||
|
],
|
||||||
|
)),
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
)),
|
)),
|
||||||
|
|
|
@ -1,166 +0,0 @@
|
||||||
import 'package:cake_wallet/utils/show_pop_up.dart';
|
|
||||||
import 'package:cw_core/node.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:flutter/cupertino.dart';
|
|
||||||
import 'package:flutter_mobx/flutter_mobx.dart';
|
|
||||||
import 'package:cake_wallet/routes.dart';
|
|
||||||
import 'package:cake_wallet/palette.dart';
|
|
||||||
import 'package:cake_wallet/generated/i18n.dart';
|
|
||||||
import 'package:cake_wallet/src/screens/base_page.dart';
|
|
||||||
import 'package:cake_wallet/src/screens/nodes/widgets/node_list_row.dart';
|
|
||||||
import 'package:cake_wallet/src/widgets/standard_list.dart';
|
|
||||||
import 'package:cake_wallet/src/widgets/alert_with_two_actions.dart';
|
|
||||||
import 'package:cake_wallet/view_model/node_list/node_list_view_model.dart';
|
|
||||||
import 'package:flutter_slidable/flutter_slidable.dart';
|
|
||||||
|
|
||||||
class NodeListPage extends BasePage {
|
|
||||||
NodeListPage(this.nodeListViewModel);
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get title => S.current.nodes;
|
|
||||||
|
|
||||||
final NodeListViewModel nodeListViewModel;
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget trailing(context) {
|
|
||||||
return Container(
|
|
||||||
height: 32,
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
borderRadius: BorderRadius.all(Radius.circular(16)),
|
|
||||||
color: Theme.of(context).accentTextTheme.caption!.color!),
|
|
||||||
child: ButtonTheme(
|
|
||||||
minWidth: double.minPositive,
|
|
||||||
child: TextButton(
|
|
||||||
onPressed: () async {
|
|
||||||
await showPopUp<void>(
|
|
||||||
context: context,
|
|
||||||
builder: (BuildContext context) {
|
|
||||||
return AlertWithTwoActions(
|
|
||||||
alertTitle: S.of(context).node_reset_settings_title,
|
|
||||||
alertContent:
|
|
||||||
S.of(context).nodes_list_reset_to_default_message,
|
|
||||||
rightButtonText: S.of(context).reset,
|
|
||||||
leftButtonText: S.of(context).cancel,
|
|
||||||
actionRightButton: () async {
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
await nodeListViewModel.reset();
|
|
||||||
},
|
|
||||||
actionLeftButton: () => Navigator.of(context).pop());
|
|
||||||
});
|
|
||||||
},
|
|
||||||
child: Text(
|
|
||||||
S.of(context).reset,
|
|
||||||
textAlign: TextAlign.center,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 14.0,
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
color: Palette.blueCraiola),
|
|
||||||
)),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget body(BuildContext context) {
|
|
||||||
return Container(
|
|
||||||
padding: EdgeInsets.only(top: 10),
|
|
||||||
child: Observer(
|
|
||||||
builder: (BuildContext context) {
|
|
||||||
return SectionStandardList(
|
|
||||||
sectionCount: 2,
|
|
||||||
context: context,
|
|
||||||
itemCounter: (int sectionIndex) {
|
|
||||||
if (sectionIndex == 0) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return nodeListViewModel.nodes.length;
|
|
||||||
},
|
|
||||||
itemBuilder: (_, sectionIndex, index) {
|
|
||||||
if (sectionIndex == 0) {
|
|
||||||
return NodeHeaderListRow(
|
|
||||||
title: S.of(context).add_new_node,
|
|
||||||
onTap: (_) async => await Navigator.of(context)
|
|
||||||
.pushNamed(Routes.newNode));
|
|
||||||
}
|
|
||||||
|
|
||||||
final node = nodeListViewModel.nodes[index];
|
|
||||||
final isSelected =
|
|
||||||
node.keyIndex == nodeListViewModel.currentNode.keyIndex;
|
|
||||||
final nodeListRow = NodeListRow(
|
|
||||||
title: node.uriRaw,
|
|
||||||
isSelected: isSelected,
|
|
||||||
isAlive: node.requestNode(),
|
|
||||||
onTap: (_) async {
|
|
||||||
if (isSelected) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
await showPopUp<void>(
|
|
||||||
context: context,
|
|
||||||
builder: (BuildContext context) {
|
|
||||||
return AlertWithTwoActions(
|
|
||||||
alertTitle:
|
|
||||||
S.of(context).change_current_node_title,
|
|
||||||
alertContent: S
|
|
||||||
.of(context)
|
|
||||||
.change_current_node(node.uriRaw),
|
|
||||||
leftButtonText: S.of(context).cancel,
|
|
||||||
rightButtonText: S.of(context).change,
|
|
||||||
actionLeftButton: () =>
|
|
||||||
Navigator.of(context).pop(),
|
|
||||||
actionRightButton: () async {
|
|
||||||
await nodeListViewModel.setAsCurrent(node);
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
final dismissibleRow = Slidable(
|
|
||||||
key: Key('${node.keyIndex}'),
|
|
||||||
startActionPane: _actionPane(context, node),
|
|
||||||
endActionPane: _actionPane(context, node),
|
|
||||||
child: nodeListRow,
|
|
||||||
);
|
|
||||||
|
|
||||||
return isSelected ? nodeListRow : dismissibleRow;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
ActionPane _actionPane(BuildContext context, Node node) => ActionPane(
|
|
||||||
motion: const ScrollMotion(),
|
|
||||||
extentRatio: 0.3,
|
|
||||||
children: [
|
|
||||||
SlidableAction(
|
|
||||||
onPressed: (context) async {
|
|
||||||
final confirmed = await showPopUp<bool>(
|
|
||||||
context: context,
|
|
||||||
builder: (BuildContext context) {
|
|
||||||
return AlertWithTwoActions(
|
|
||||||
alertTitle: S.of(context).remove_node,
|
|
||||||
alertContent:
|
|
||||||
S.of(context).remove_node_message,
|
|
||||||
rightButtonText: S.of(context).remove,
|
|
||||||
leftButtonText: S.of(context).cancel,
|
|
||||||
actionRightButton: () =>
|
|
||||||
Navigator.pop(context, true),
|
|
||||||
actionLeftButton: () =>
|
|
||||||
Navigator.pop(context, false));
|
|
||||||
}) ??
|
|
||||||
false;
|
|
||||||
|
|
||||||
if (confirmed) {
|
|
||||||
await nodeListViewModel.delete(node);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
backgroundColor: Colors.red,
|
|
||||||
foregroundColor: Colors.white,
|
|
||||||
icon: CupertinoIcons.delete,
|
|
||||||
label: S.of(context).delete,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
}
|
|
|
@ -37,7 +37,10 @@ class NodeHeaderListRow extends StandardListRow {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget buildTrailing(BuildContext context) {
|
Widget buildTrailing(BuildContext context) {
|
||||||
return Icon(Icons.add,
|
return SizedBox(
|
||||||
color: Theme.of(context).accentTextTheme!.subtitle1!.color!, size: 24.0);
|
width: 20,
|
||||||
|
child: Icon(Icons.add,
|
||||||
|
color: Theme.of(context).accentTextTheme!.subtitle1!.color!, size: 24.0),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
import 'dart:ui';
|
|
||||||
import 'package:cake_wallet/entities/fiat_currency.dart';
|
import 'package:cake_wallet/entities/fiat_currency.dart';
|
||||||
import 'package:cake_wallet/src/screens/dashboard/widgets/sync_indicator_icon.dart';
|
import 'package:cake_wallet/src/screens/dashboard/widgets/sync_indicator_icon.dart';
|
||||||
import 'package:cake_wallet/src/screens/send/widgets/send_card.dart';
|
import 'package:cake_wallet/src/screens/send/widgets/send_card.dart';
|
||||||
|
@ -6,8 +5,6 @@ import 'package:cake_wallet/src/widgets/alert_with_two_actions.dart';
|
||||||
import 'package:cake_wallet/src/widgets/picker.dart';
|
import 'package:cake_wallet/src/widgets/picker.dart';
|
||||||
import 'package:cake_wallet/src/widgets/template_tile.dart';
|
import 'package:cake_wallet/src/widgets/template_tile.dart';
|
||||||
import 'package:cake_wallet/view_model/send/output.dart';
|
import 'package:cake_wallet/view_model/send/output.dart';
|
||||||
import 'package:cake_wallet/view_model/settings/settings_view_model.dart';
|
|
||||||
import 'package:flutter/cupertino.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_mobx/flutter_mobx.dart';
|
import 'package:flutter_mobx/flutter_mobx.dart';
|
||||||
import 'package:mobx/mobx.dart';
|
import 'package:mobx/mobx.dart';
|
||||||
|
@ -28,13 +25,11 @@ import 'package:smooth_page_indicator/smooth_page_indicator.dart';
|
||||||
import 'package:cw_core/crypto_currency.dart';
|
import 'package:cw_core/crypto_currency.dart';
|
||||||
|
|
||||||
class SendPage extends BasePage {
|
class SendPage extends BasePage {
|
||||||
SendPage({required this.sendViewModel,required this.settingsViewModel }) : _formKey = GlobalKey<FormState>(),fiatFromSettings = settingsViewModel.fiatCurrency;
|
SendPage({required this.sendViewModel}) : _formKey = GlobalKey<FormState>();
|
||||||
|
|
||||||
final SendViewModel sendViewModel;
|
final SendViewModel sendViewModel;
|
||||||
final SettingsViewModel settingsViewModel;
|
|
||||||
final GlobalKey<FormState> _formKey;
|
final GlobalKey<FormState> _formKey;
|
||||||
final controller = PageController(initialPage: 0);
|
final controller = PageController(initialPage: 0);
|
||||||
final FiatCurrency fiatFromSettings ;
|
|
||||||
|
|
||||||
bool _effectsInstalled = false;
|
bool _effectsInstalled = false;
|
||||||
|
|
||||||
|
@ -55,7 +50,7 @@ class SendPage extends BasePage {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void onClose(BuildContext context) {
|
void onClose(BuildContext context) {
|
||||||
settingsViewModel.setFiatCurrency(fiatFromSettings);
|
sendViewModel.onClose();
|
||||||
Navigator.of(context).pop();
|
Navigator.of(context).pop();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -236,7 +231,7 @@ class SendPage extends BasePage {
|
||||||
if(template.isCurrencySelected){
|
if(template.isCurrencySelected){
|
||||||
output.setCryptoAmount(template.amount);
|
output.setCryptoAmount(template.amount);
|
||||||
}else{
|
}else{
|
||||||
settingsViewModel.setFiatCurrency(fiatFromTemplate);
|
sendViewModel.setFiatCurrency(fiatFromTemplate);
|
||||||
output.setFiatAmount(template.amountFiat);
|
output.setFiatAmount(template.amountFiat);
|
||||||
}
|
}
|
||||||
output.resetParsedAddress();
|
output.resetParsedAddress();
|
||||||
|
|
|
@ -1,11 +1,10 @@
|
||||||
import 'dart:ui';
|
import 'package:cake_wallet/entities/priority_for_wallet_type.dart';
|
||||||
import 'package:cake_wallet/utils/payment_request.dart';
|
import 'package:cake_wallet/utils/payment_request.dart';
|
||||||
import 'package:cw_core/transaction_priority.dart';
|
import 'package:cw_core/transaction_priority.dart';
|
||||||
import 'package:cake_wallet/routes.dart';
|
import 'package:cake_wallet/routes.dart';
|
||||||
import 'package:cake_wallet/src/widgets/keyboard_done_button.dart';
|
import 'package:cake_wallet/src/widgets/keyboard_done_button.dart';
|
||||||
import 'package:cake_wallet/src/widgets/picker.dart';
|
import 'package:cake_wallet/src/widgets/picker.dart';
|
||||||
import 'package:cake_wallet/view_model/send/output.dart';
|
import 'package:cake_wallet/view_model/send/output.dart';
|
||||||
import 'package:cake_wallet/view_model/settings/settings_view_model.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
import 'package:flutter_mobx/flutter_mobx.dart';
|
import 'package:flutter_mobx/flutter_mobx.dart';
|
||||||
|
|
155
lib/src/screens/settings/connection_sync_page.dart
Normal file
155
lib/src/screens/settings/connection_sync_page.dart
Normal file
|
@ -0,0 +1,155 @@
|
||||||
|
import 'package:cake_wallet/src/screens/settings/widgets/settings_cell_with_arrow.dart';
|
||||||
|
import 'package:cake_wallet/utils/show_pop_up.dart';
|
||||||
|
import 'package:cake_wallet/view_model/dashboard/dashboard_view_model.dart';
|
||||||
|
import 'package:cw_core/node.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter/cupertino.dart';
|
||||||
|
import 'package:flutter_mobx/flutter_mobx.dart';
|
||||||
|
import 'package:cake_wallet/routes.dart';
|
||||||
|
import 'package:cake_wallet/generated/i18n.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/base_page.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/nodes/widgets/node_list_row.dart';
|
||||||
|
import 'package:cake_wallet/src/widgets/standard_list.dart';
|
||||||
|
import 'package:cake_wallet/src/widgets/alert_with_two_actions.dart';
|
||||||
|
import 'package:cake_wallet/view_model/node_list/node_list_view_model.dart';
|
||||||
|
import 'package:flutter_slidable/flutter_slidable.dart';
|
||||||
|
|
||||||
|
class ConnectionSyncPage extends BasePage {
|
||||||
|
ConnectionSyncPage(this.nodeListViewModel, this.dashboardViewModel);
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get title => S.current.connection_sync;
|
||||||
|
|
||||||
|
final NodeListViewModel nodeListViewModel;
|
||||||
|
final DashboardViewModel dashboardViewModel;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget body(BuildContext context) {
|
||||||
|
return Container(
|
||||||
|
padding: EdgeInsets.only(top: 10),
|
||||||
|
child: Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
SettingsCellWithArrow(
|
||||||
|
title: S.current.reconnect,
|
||||||
|
handler: (context) => _presentReconnectAlert(context),
|
||||||
|
),
|
||||||
|
StandardListSeparator(padding: EdgeInsets.symmetric(horizontal: 24)),
|
||||||
|
SettingsCellWithArrow(
|
||||||
|
title: S.current.rescan,
|
||||||
|
handler: (context) => Navigator.of(context).pushNamed(Routes.rescan),
|
||||||
|
),
|
||||||
|
StandardListSeparator(padding: EdgeInsets.symmetric(horizontal: 24)),
|
||||||
|
NodeHeaderListRow(
|
||||||
|
title: S.of(context).add_new_node,
|
||||||
|
onTap: (_) async => await Navigator.of(context).pushNamed(Routes.newNode),
|
||||||
|
),
|
||||||
|
StandardListSeparator(padding: EdgeInsets.symmetric(horizontal: 24)),
|
||||||
|
SizedBox(height: 100),
|
||||||
|
Observer(
|
||||||
|
builder: (BuildContext context) {
|
||||||
|
return Flexible(
|
||||||
|
child: SectionStandardList(
|
||||||
|
sectionCount: 1,
|
||||||
|
context: context,
|
||||||
|
dividerPadding: EdgeInsets.symmetric(horizontal: 24),
|
||||||
|
itemCounter: (int sectionIndex) {
|
||||||
|
return nodeListViewModel.nodes.length;
|
||||||
|
},
|
||||||
|
itemBuilder: (_, sectionIndex, index) {
|
||||||
|
final node = nodeListViewModel.nodes[index];
|
||||||
|
final isSelected = node.keyIndex == nodeListViewModel.currentNode.keyIndex;
|
||||||
|
final nodeListRow = NodeListRow(
|
||||||
|
title: node.uriRaw,
|
||||||
|
isSelected: isSelected,
|
||||||
|
isAlive: node.requestNode(),
|
||||||
|
onTap: (_) async {
|
||||||
|
if (isSelected) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
await showPopUp<void>(
|
||||||
|
context: context,
|
||||||
|
builder: (BuildContext context) {
|
||||||
|
return AlertWithTwoActions(
|
||||||
|
alertTitle: S.of(context).change_current_node_title,
|
||||||
|
alertContent: S.of(context).change_current_node(node.uriRaw),
|
||||||
|
leftButtonText: S.of(context).cancel,
|
||||||
|
rightButtonText: S.of(context).change,
|
||||||
|
actionLeftButton: () => Navigator.of(context).pop(),
|
||||||
|
actionRightButton: () async {
|
||||||
|
await nodeListViewModel.setAsCurrent(node);
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
},
|
||||||
|
);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
final dismissibleRow = Slidable(
|
||||||
|
key: Key('${node.keyIndex}'),
|
||||||
|
startActionPane: _actionPane(context, node),
|
||||||
|
endActionPane: _actionPane(context, node),
|
||||||
|
child: nodeListRow,
|
||||||
|
);
|
||||||
|
|
||||||
|
return isSelected ? nodeListRow : dismissibleRow;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
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 dashboardViewModel.reconnect();
|
||||||
|
},
|
||||||
|
actionLeftButton: () => Navigator.of(context).pop());
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
ActionPane _actionPane(BuildContext context, Node node) => ActionPane(
|
||||||
|
motion: const ScrollMotion(),
|
||||||
|
extentRatio: 0.3,
|
||||||
|
children: [
|
||||||
|
SlidableAction(
|
||||||
|
onPressed: (context) async {
|
||||||
|
final confirmed = await showPopUp<bool>(
|
||||||
|
context: context,
|
||||||
|
builder: (BuildContext context) {
|
||||||
|
return AlertWithTwoActions(
|
||||||
|
alertTitle: S.of(context).remove_node,
|
||||||
|
alertContent: S.of(context).remove_node_message,
|
||||||
|
rightButtonText: S.of(context).remove,
|
||||||
|
leftButtonText: S.of(context).cancel,
|
||||||
|
actionRightButton: () => Navigator.pop(context, true),
|
||||||
|
actionLeftButton: () => Navigator.pop(context, false));
|
||||||
|
}) ??
|
||||||
|
false;
|
||||||
|
|
||||||
|
if (confirmed) {
|
||||||
|
await nodeListViewModel.delete(node);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
backgroundColor: Colors.red,
|
||||||
|
foregroundColor: Colors.white,
|
||||||
|
icon: CupertinoIcons.delete,
|
||||||
|
label: S.of(context).delete,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
80
lib/src/screens/settings/display_settings_page.dart
Normal file
80
lib/src/screens/settings/display_settings_page.dart
Normal file
|
@ -0,0 +1,80 @@
|
||||||
|
import 'package:cake_wallet/entities/fiat_currency.dart';
|
||||||
|
import 'package:cake_wallet/entities/language_service.dart';
|
||||||
|
import 'package:cake_wallet/generated/i18n.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/base_page.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/widgets/settings_choices_cell.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/widgets/settings_picker_cell.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/widgets/settings_switcher_cell.dart';
|
||||||
|
import 'package:cake_wallet/themes/theme_base.dart';
|
||||||
|
import 'package:cake_wallet/themes/theme_list.dart';
|
||||||
|
import 'package:cake_wallet/view_model/settings/choices_list_item.dart';
|
||||||
|
import 'package:cake_wallet/view_model/settings/display_settings_view_model.dart';
|
||||||
|
import 'package:cake_wallet/wallet_type_utils.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_mobx/flutter_mobx.dart';
|
||||||
|
|
||||||
|
class DisplaySettingsPage extends BasePage {
|
||||||
|
DisplaySettingsPage(this._displaySettingsViewModel);
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get title => S.current.display_settings;
|
||||||
|
|
||||||
|
final DisplaySettingsViewModel _displaySettingsViewModel;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget body(BuildContext context) {
|
||||||
|
return Observer(builder: (_) {
|
||||||
|
return Container(
|
||||||
|
padding: EdgeInsets.only(top: 10),
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
SettingsSwitcherCell(
|
||||||
|
title: S.current.settings_display_balance,
|
||||||
|
value: _displaySettingsViewModel.shouldDisplayBalance,
|
||||||
|
onValueChange: (_, bool value) {
|
||||||
|
_displaySettingsViewModel.setShouldDisplayBalance(value);
|
||||||
|
}),
|
||||||
|
if (!isHaven)
|
||||||
|
SettingsPickerCell<FiatCurrency>(
|
||||||
|
title: S.current.settings_currency,
|
||||||
|
searchHintText: S.current.search_currency,
|
||||||
|
items: FiatCurrency.all,
|
||||||
|
selectedItem: _displaySettingsViewModel.fiatCurrency,
|
||||||
|
onItemSelected: (FiatCurrency currency) => _displaySettingsViewModel.setFiatCurrency(currency),
|
||||||
|
images: FiatCurrency.all.map((e) => Image.asset("assets/images/flags/${e.countryCode}.png")).toList(),
|
||||||
|
isGridView: true,
|
||||||
|
matchingCriteria: (FiatCurrency currency, String searchText) {
|
||||||
|
return currency.title.toLowerCase().contains(searchText) ||
|
||||||
|
currency.fullName.toLowerCase().contains(searchText);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
SettingsPickerCell<String>(
|
||||||
|
title: S.current.settings_change_language,
|
||||||
|
searchHintText: S.current.search_language,
|
||||||
|
items: LanguageService.list.keys.toList(),
|
||||||
|
displayItem: (dynamic code) {
|
||||||
|
return LanguageService.list[code] ?? '';
|
||||||
|
},
|
||||||
|
selectedItem: _displaySettingsViewModel.languageCode,
|
||||||
|
onItemSelected: _displaySettingsViewModel.onLanguageSelected,
|
||||||
|
images: LanguageService.list.keys
|
||||||
|
.map((e) => Image.asset("assets/images/flags/${LanguageService.localeCountryCode[e]}.png"))
|
||||||
|
.toList(),
|
||||||
|
matchingCriteria: (String code, String searchText) {
|
||||||
|
return LanguageService.list[code]?.toLowerCase().contains(searchText) ?? false;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
SettingsChoicesCell(
|
||||||
|
ChoicesListItem<ThemeBase>(
|
||||||
|
title: S.current.color_theme,
|
||||||
|
items: ThemeList.all,
|
||||||
|
selectedItem: _displaySettingsViewModel.theme,
|
||||||
|
onItemSelected: (ThemeBase theme) => _displaySettingsViewModel.setTheme(theme),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
45
lib/src/screens/settings/other_settings_page.dart
Normal file
45
lib/src/screens/settings/other_settings_page.dart
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
import 'package:cake_wallet/entities/priority_for_wallet_type.dart';
|
||||||
|
import 'package:cake_wallet/generated/i18n.dart';
|
||||||
|
import 'package:cake_wallet/routes.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/base_page.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/widgets/settings_cell_with_arrow.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/widgets/settings_picker_cell.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/widgets/settings_version_cell.dart';
|
||||||
|
import 'package:cake_wallet/src/widgets/standard_list.dart';
|
||||||
|
import 'package:cake_wallet/view_model/settings/other_settings_view_model.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_mobx/flutter_mobx.dart';
|
||||||
|
|
||||||
|
class OtherSettingsPage extends BasePage {
|
||||||
|
OtherSettingsPage(this._otherSettingsViewModel);
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get title => S.current.other_settings;
|
||||||
|
|
||||||
|
final OtherSettingsViewModel _otherSettingsViewModel;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget body(BuildContext context) {
|
||||||
|
return Observer(builder: (_) {
|
||||||
|
return Container(
|
||||||
|
padding: EdgeInsets.only(top: 10),
|
||||||
|
child: Column(children: [
|
||||||
|
SettingsPickerCell(
|
||||||
|
title: S.current.settings_fee_priority,
|
||||||
|
items: priorityForWalletType(_otherSettingsViewModel.walletType),
|
||||||
|
displayItem: _otherSettingsViewModel.getDisplayPriority,
|
||||||
|
selectedItem: _otherSettingsViewModel.transactionPriority,
|
||||||
|
onItemSelected: _otherSettingsViewModel.onDisplayPrioritySelected,
|
||||||
|
),
|
||||||
|
SettingsCellWithArrow(
|
||||||
|
title: S.current.settings_terms_and_conditions,
|
||||||
|
handler: (BuildContext context) => Navigator.of(context).pushNamed(Routes.readDisclaimer),
|
||||||
|
),
|
||||||
|
StandardListSeparator(padding: EdgeInsets.symmetric(horizontal: 24)),
|
||||||
|
Spacer(),
|
||||||
|
SettingsVersionCell(title: S.of(context).version(_otherSettingsViewModel.currentVersion))
|
||||||
|
]),
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
43
lib/src/screens/settings/privacy_page.dart
Normal file
43
lib/src/screens/settings/privacy_page.dart
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
import 'package:cake_wallet/generated/i18n.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/base_page.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/widgets/settings_switcher_cell.dart';
|
||||||
|
import 'package:cake_wallet/view_model/settings/privacy_settings_view_model.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_mobx/flutter_mobx.dart';
|
||||||
|
|
||||||
|
class PrivacyPage extends BasePage {
|
||||||
|
PrivacyPage(this._privacySettingsViewModel);
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get title => S.current.privacy_settings;
|
||||||
|
|
||||||
|
final PrivacySettingsViewModel _privacySettingsViewModel;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget body(BuildContext context) {
|
||||||
|
return Container(
|
||||||
|
padding: EdgeInsets.only(top: 10),
|
||||||
|
child: Observer(builder: (_) {
|
||||||
|
return Observer(builder: (_) {
|
||||||
|
return Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
SettingsSwitcherCell(
|
||||||
|
title: S.current.disable_exchange,
|
||||||
|
value: _privacySettingsViewModel.disableExchange,
|
||||||
|
onValueChange: (BuildContext context, bool value) {
|
||||||
|
_privacySettingsViewModel.setEnableExchange(value);
|
||||||
|
}),
|
||||||
|
SettingsSwitcherCell(
|
||||||
|
title: S.current.settings_save_recipient_address,
|
||||||
|
value: _privacySettingsViewModel.shouldSaveRecipientAddress,
|
||||||
|
onValueChange: (BuildContext _, bool value) {
|
||||||
|
_privacySettingsViewModel.setShouldSaveRecipientAddress(value);
|
||||||
|
})
|
||||||
|
],
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
84
lib/src/screens/settings/security_backup_page.dart
Normal file
84
lib/src/screens/settings/security_backup_page.dart
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
import 'package:cake_wallet/routes.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/auth/auth_page.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/base_page.dart';
|
||||||
|
import 'package:cake_wallet/generated/i18n.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/pin_code/pin_code_widget.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/widgets/settings_cell_with_arrow.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/settings/widgets/settings_switcher_cell.dart';
|
||||||
|
import 'package:cake_wallet/src/widgets/standard_list.dart';
|
||||||
|
import 'package:cake_wallet/view_model/settings/security_settings_view_model.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_mobx/flutter_mobx.dart';
|
||||||
|
|
||||||
|
class SecurityBackupPage extends BasePage {
|
||||||
|
SecurityBackupPage(this._securitySettingsViewModel);
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get title => S.current.security_and_backup;
|
||||||
|
|
||||||
|
final SecuritySettingsViewModel _securitySettingsViewModel;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget body(BuildContext context) {
|
||||||
|
return Container(
|
||||||
|
padding: EdgeInsets.only(top: 10),
|
||||||
|
child: Column(mainAxisSize: MainAxisSize.min, children: [
|
||||||
|
SettingsCellWithArrow(
|
||||||
|
title: S.current.show_keys,
|
||||||
|
handler: (_) => Navigator.of(context).pushNamed(Routes.auth,
|
||||||
|
arguments: (bool isAuthenticatedSuccessfully, AuthPageState auth) {
|
||||||
|
if (isAuthenticatedSuccessfully) {
|
||||||
|
auth.close(route: Routes.showKeys);
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
),
|
||||||
|
StandardListSeparator(padding: EdgeInsets.symmetric(horizontal: 24)),
|
||||||
|
SettingsCellWithArrow(
|
||||||
|
title: S.current.create_backup,
|
||||||
|
handler: (_) => Navigator.of(context).pushNamed(Routes.auth,
|
||||||
|
arguments: (bool isAuthenticatedSuccessfully, AuthPageState auth) {
|
||||||
|
if (isAuthenticatedSuccessfully) {
|
||||||
|
auth.close(route: Routes.backup);
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
),
|
||||||
|
StandardListSeparator(padding: EdgeInsets.symmetric(horizontal: 24)),
|
||||||
|
SettingsCellWithArrow(
|
||||||
|
title: S.current.settings_change_pin,
|
||||||
|
handler: (_) => Navigator.of(context).pushNamed(Routes.auth,
|
||||||
|
arguments: (bool isAuthenticatedSuccessfully, AuthPageState auth) {
|
||||||
|
auth.close(
|
||||||
|
route: isAuthenticatedSuccessfully ? Routes.setupPin : null,
|
||||||
|
arguments: (PinCodeState<PinCodeWidget> setupPinContext, String _) {
|
||||||
|
setupPinContext.close();
|
||||||
|
},
|
||||||
|
);
|
||||||
|
})),
|
||||||
|
StandardListSeparator(padding: EdgeInsets.symmetric(horizontal: 24)),
|
||||||
|
Observer(builder: (_) {
|
||||||
|
return SettingsSwitcherCell(
|
||||||
|
title: S.current.settings_allow_biometrical_authentication,
|
||||||
|
value: _securitySettingsViewModel.allowBiometricalAuthentication,
|
||||||
|
onValueChange: (BuildContext context, bool value) {
|
||||||
|
if (value) {
|
||||||
|
Navigator.of(context).pushNamed(Routes.auth,
|
||||||
|
arguments: (bool isAuthenticatedSuccessfully, AuthPageState auth) async {
|
||||||
|
if (isAuthenticatedSuccessfully) {
|
||||||
|
if (await _securitySettingsViewModel.biometricAuthenticated()) {
|
||||||
|
_securitySettingsViewModel.setAllowBiometricalAuthentication(isAuthenticatedSuccessfully);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
_securitySettingsViewModel.setAllowBiometricalAuthentication(isAuthenticatedSuccessfully);
|
||||||
|
}
|
||||||
|
|
||||||
|
auth.close();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
_securitySettingsViewModel.setAllowBiometricalAuthentication(value);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}),
|
||||||
|
]),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,101 +0,0 @@
|
||||||
import 'package:cake_wallet/src/screens/settings/widgets/settings_choices_cell.dart';
|
|
||||||
import 'package:cake_wallet/src/screens/settings/widgets/settings_version_cell.dart';
|
|
||||||
import 'package:cake_wallet/view_model/settings/choices_list_item.dart';
|
|
||||||
import 'package:cake_wallet/view_model/settings/version_list_item.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:flutter/cupertino.dart';
|
|
||||||
import 'package:flutter_mobx/flutter_mobx.dart';
|
|
||||||
import 'package:cake_wallet/generated/i18n.dart';
|
|
||||||
import 'package:cake_wallet/view_model/settings/settings_view_model.dart';
|
|
||||||
import 'package:cake_wallet/view_model/settings/link_list_item.dart';
|
|
||||||
import 'package:cake_wallet/view_model/settings/picker_list_item.dart';
|
|
||||||
import 'package:cake_wallet/view_model/settings/regular_list_item.dart';
|
|
||||||
import 'package:cake_wallet/view_model/settings/switcher_list_item.dart';
|
|
||||||
import 'package:cake_wallet/src/screens/settings/widgets/settings_link_provider_cell.dart';
|
|
||||||
import 'package:cake_wallet/src/screens/settings/widgets/settings_cell_with_arrow.dart';
|
|
||||||
import 'package:cake_wallet/src/screens/settings/widgets/settings_picker_cell.dart';
|
|
||||||
import 'package:cake_wallet/src/screens/settings/widgets/settings_switcher_cell.dart';
|
|
||||||
import 'package:cake_wallet/src/widgets/standard_list.dart';
|
|
||||||
import 'package:cake_wallet/src/screens/base_page.dart';
|
|
||||||
|
|
||||||
class SettingsPage extends BasePage {
|
|
||||||
SettingsPage(this.settingsViewModel);
|
|
||||||
|
|
||||||
final SettingsViewModel settingsViewModel;
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get title => S.current.settings_title;
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget body(BuildContext context) {
|
|
||||||
// FIX-ME: Added `context` it was not used here before, maby bug ?
|
|
||||||
return Observer(builder: (_) {
|
|
||||||
final sections = settingsViewModel.getSections();
|
|
||||||
return SectionStandardList(
|
|
||||||
context: context,
|
|
||||||
sectionCount: sections.length,
|
|
||||||
itemCounter: (int sectionIndex) {
|
|
||||||
if (sectionIndex < sections.length) {
|
|
||||||
return sections[sectionIndex].length;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
},
|
|
||||||
itemBuilder: (_, sectionIndex, itemIndex) {
|
|
||||||
final item = sections[sectionIndex][itemIndex];
|
|
||||||
|
|
||||||
if (item is PickerListItem) {
|
|
||||||
return Observer(builder: (_) {
|
|
||||||
return SettingsPickerCell<Object>(
|
|
||||||
displayItem: item.displayItem,
|
|
||||||
title: item.title,
|
|
||||||
selectedItem: item.selectedItem(),
|
|
||||||
items: item.items,
|
|
||||||
onItemSelected: (dynamic value) => item.onItemSelected(value),
|
|
||||||
images: item.images,
|
|
||||||
searchHintText: item.searchHintText,
|
|
||||||
isGridView: item.isGridView,
|
|
||||||
matchingCriteria: (dynamic value, String searchText) => item.matchingCriteria(value, searchText),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if (item is SwitcherListItem) {
|
|
||||||
return Observer(builder: (_) {
|
|
||||||
return SettingsSwitcherCell(
|
|
||||||
title: item.title,
|
|
||||||
value: item.value(),
|
|
||||||
onValueChange: item.onValueChange);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if (item is RegularListItem) {
|
|
||||||
return SettingsCellWithArrow(
|
|
||||||
title: item.title, handler: item.handler);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (item is LinkListItem) {
|
|
||||||
return SettingsLinkProviderCell(
|
|
||||||
title: item.title,
|
|
||||||
icon: item.icon,
|
|
||||||
link: item.link,
|
|
||||||
linkTitle: item.linkTitle);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (item is VersionListItem) {
|
|
||||||
return Observer(builder: (_) {
|
|
||||||
return SettingsVersionCell(
|
|
||||||
title:
|
|
||||||
S.of(context).version(settingsViewModel.currentVersion));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if (item is ChoicesListItem) {
|
|
||||||
return SettingsChoicesCell(item);
|
|
||||||
}
|
|
||||||
|
|
||||||
return Container();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -123,6 +123,7 @@ class SectionStandardList extends StatelessWidget {
|
||||||
required this.itemBuilder,
|
required this.itemBuilder,
|
||||||
required this.sectionCount,
|
required this.sectionCount,
|
||||||
required BuildContext context,
|
required BuildContext context,
|
||||||
|
this.dividerPadding = const EdgeInsets.only(left: 24),
|
||||||
this.themeColor,
|
this.themeColor,
|
||||||
this.dividerThemeColor,
|
this.dividerThemeColor,
|
||||||
this.sectionTitleBuilder,
|
this.sectionTitleBuilder,
|
||||||
|
@ -149,6 +150,7 @@ class SectionStandardList extends StatelessWidget {
|
||||||
final List<Widget> totalRows;
|
final List<Widget> totalRows;
|
||||||
final Color? themeColor;
|
final Color? themeColor;
|
||||||
final Color? dividerThemeColor;
|
final Color? dividerThemeColor;
|
||||||
|
final EdgeInsets dividerPadding;
|
||||||
|
|
||||||
List<Widget> transform(
|
List<Widget> transform(
|
||||||
bool hasTopSeparator,
|
bool hasTopSeparator,
|
||||||
|
@ -178,7 +180,7 @@ class SectionStandardList extends StatelessWidget {
|
||||||
|
|
||||||
items.add(sectionIndex + 1 != sectionCount
|
items.add(sectionIndex + 1 != sectionCount
|
||||||
? SectionHeaderListRow()
|
? SectionHeaderListRow()
|
||||||
: StandardListSeparator(padding: EdgeInsets.only(left: 24)));
|
: StandardListSeparator(padding: dividerPadding));
|
||||||
}
|
}
|
||||||
|
|
||||||
return items;
|
return items;
|
||||||
|
|
|
@ -6,8 +6,8 @@ import 'package:cake_wallet/entities/preferences_key.dart';
|
||||||
import 'package:cake_wallet/exchange/sideshift/sideshift_exchange_provider.dart';
|
import 'package:cake_wallet/exchange/sideshift/sideshift_exchange_provider.dart';
|
||||||
import 'package:cake_wallet/exchange/sideshift/sideshift_request.dart';
|
import 'package:cake_wallet/exchange/sideshift/sideshift_request.dart';
|
||||||
import 'package:cake_wallet/exchange/simpleswap/simpleswap_exchange_provider.dart';
|
import 'package:cake_wallet/exchange/simpleswap/simpleswap_exchange_provider.dart';
|
||||||
import 'package:cake_wallet/view_model/settings/settings_view_model.dart';
|
|
||||||
import 'package:cake_wallet/exchange/simpleswap/simpleswap_request.dart';
|
import 'package:cake_wallet/exchange/simpleswap/simpleswap_request.dart';
|
||||||
|
import 'package:cw_core/transaction_priority.dart';
|
||||||
import 'package:cw_core/wallet_base.dart';
|
import 'package:cw_core/wallet_base.dart';
|
||||||
import 'package:cw_core/crypto_currency.dart';
|
import 'package:cw_core/crypto_currency.dart';
|
||||||
import 'package:cw_core/sync_status.dart';
|
import 'package:cw_core/sync_status.dart';
|
||||||
|
@ -42,7 +42,7 @@ class ExchangeViewModel = ExchangeViewModelBase with _$ExchangeViewModel;
|
||||||
|
|
||||||
abstract class ExchangeViewModelBase with Store {
|
abstract class ExchangeViewModelBase with Store {
|
||||||
ExchangeViewModelBase(this.wallet, this.trades, this._exchangeTemplateStore,
|
ExchangeViewModelBase(this.wallet, this.trades, this._exchangeTemplateStore,
|
||||||
this.tradesStore, this._settingsStore, this.sharedPreferences, this._settingsViewModel)
|
this.tradesStore, this._settingsStore, this.sharedPreferences)
|
||||||
: _cryptoNumberFormat = NumberFormat(),
|
: _cryptoNumberFormat = NumberFormat(),
|
||||||
isReverse = false,
|
isReverse = false,
|
||||||
isFixedRateMode = false,
|
isFixedRateMode = false,
|
||||||
|
@ -189,6 +189,19 @@ abstract class ExchangeViewModelBase with Store {
|
||||||
ObservableList<ExchangeTemplate> get templates =>
|
ObservableList<ExchangeTemplate> get templates =>
|
||||||
_exchangeTemplateStore.templates;
|
_exchangeTemplateStore.templates;
|
||||||
|
|
||||||
|
|
||||||
|
@computed
|
||||||
|
TransactionPriority get transactionPriority {
|
||||||
|
final priority = _settingsStore.priority[wallet.type];
|
||||||
|
|
||||||
|
if (priority == null) {
|
||||||
|
throw Exception('Unexpected type ${wallet.type.toString()}');
|
||||||
|
}
|
||||||
|
|
||||||
|
return priority;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
bool get hasAllAmount =>
|
bool get hasAllAmount =>
|
||||||
wallet.type == WalletType.bitcoin && depositCurrency == wallet.currency;
|
wallet.type == WalletType.bitcoin && depositCurrency == wallet.currency;
|
||||||
|
|
||||||
|
@ -198,11 +211,11 @@ abstract class ExchangeViewModelBase with Store {
|
||||||
switch (wallet.type) {
|
switch (wallet.type) {
|
||||||
case WalletType.monero:
|
case WalletType.monero:
|
||||||
case WalletType.haven:
|
case WalletType.haven:
|
||||||
return _settingsViewModel.transactionPriority == monero!.getMoneroTransactionPrioritySlow();
|
return transactionPriority == monero!.getMoneroTransactionPrioritySlow();
|
||||||
case WalletType.bitcoin:
|
case WalletType.bitcoin:
|
||||||
return _settingsViewModel.transactionPriority == bitcoin!.getBitcoinTransactionPrioritySlow();
|
return transactionPriority == bitcoin!.getBitcoinTransactionPrioritySlow();
|
||||||
case WalletType.litecoin:
|
case WalletType.litecoin:
|
||||||
return _settingsViewModel.transactionPriority == bitcoin!.getLitecoinTransactionPrioritySlow();
|
return transactionPriority == bitcoin!.getLitecoinTransactionPrioritySlow();
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -220,8 +233,6 @@ abstract class ExchangeViewModelBase with Store {
|
||||||
|
|
||||||
final SettingsStore _settingsStore;
|
final SettingsStore _settingsStore;
|
||||||
|
|
||||||
final SettingsViewModel _settingsViewModel;
|
|
||||||
|
|
||||||
double _bestRate = 0.0;
|
double _bestRate = 0.0;
|
||||||
|
|
||||||
late Timer bestRateSync;
|
late Timer bestRateSync;
|
||||||
|
@ -296,12 +307,14 @@ abstract class ExchangeViewModelBase with Store {
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _calculateBestRate() async {
|
Future<void> _calculateBestRate() async {
|
||||||
|
final amount = double.tryParse(isFixedRateMode ? receiveAmount : depositAmount) ?? 1;
|
||||||
|
|
||||||
final result = await Future.wait<double>(
|
final result = await Future.wait<double>(
|
||||||
_tradeAvailableProviders
|
_tradeAvailableProviders
|
||||||
.map((element) => element.calculateAmount(
|
.map((element) => element.calculateAmount(
|
||||||
from: depositCurrency,
|
from: depositCurrency,
|
||||||
to: receiveCurrency,
|
to: receiveCurrency,
|
||||||
amount: 1,
|
amount: amount,
|
||||||
isFixedRateMode: isFixedRateMode,
|
isFixedRateMode: isFixedRateMode,
|
||||||
isReceiveAmount: false))
|
isReceiveAmount: false))
|
||||||
);
|
);
|
||||||
|
@ -311,7 +324,7 @@ abstract class ExchangeViewModelBase with Store {
|
||||||
for (int i=0;i<result.length;i++) {
|
for (int i=0;i<result.length;i++) {
|
||||||
if (result[i] != 0) {
|
if (result[i] != 0) {
|
||||||
/// add this provider as its valid for this trade
|
/// add this provider as its valid for this trade
|
||||||
_sortedAvailableProviders[result[i]] = _tradeAvailableProviders[i];
|
_sortedAvailableProviders[result[i] / amount] = _tradeAvailableProviders[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (_sortedAvailableProviders.isNotEmpty) {
|
if (_sortedAvailableProviders.isNotEmpty) {
|
||||||
|
@ -334,7 +347,7 @@ abstract class ExchangeViewModelBase with Store {
|
||||||
? depositCurrency
|
? depositCurrency
|
||||||
: receiveCurrency;
|
: receiveCurrency;
|
||||||
|
|
||||||
double lowestMin = double.maxFinite;
|
double? lowestMin = double.maxFinite;
|
||||||
double? highestMax = 0.0;
|
double? highestMax = 0.0;
|
||||||
|
|
||||||
for (var provider in selectedProviders) {
|
for (var provider in selectedProviders) {
|
||||||
|
@ -349,8 +362,8 @@ abstract class ExchangeViewModelBase with Store {
|
||||||
to: to,
|
to: to,
|
||||||
isFixedRateMode: isFixedRateMode);
|
isFixedRateMode: isFixedRateMode);
|
||||||
|
|
||||||
if (tempLimits.min != null && tempLimits.min! < lowestMin) {
|
if (lowestMin != null && (tempLimits.min ?? -1) < lowestMin) {
|
||||||
lowestMin = tempLimits.min!;
|
lowestMin = tempLimits.min;
|
||||||
}
|
}
|
||||||
if (highestMax != null && (tempLimits.max ?? double.maxFinite) > highestMax) {
|
if (highestMax != null && (tempLimits.max ?? double.maxFinite) > highestMax) {
|
||||||
highestMax = tempLimits.max;
|
highestMax = tempLimits.max;
|
||||||
|
@ -360,7 +373,7 @@ abstract class ExchangeViewModelBase with Store {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (lowestMin < double.maxFinite) {
|
if (lowestMin != double.maxFinite) {
|
||||||
limits = Limits(min: lowestMin, max: highestMax);
|
limits = Limits(min: lowestMin, max: highestMax);
|
||||||
|
|
||||||
limitsState = LimitsLoadedSuccessfully(limits: limits);
|
limitsState = LimitsLoadedSuccessfully(limits: limits);
|
||||||
|
|
|
@ -18,7 +18,8 @@ abstract class NodeCreateOrEditViewModelBase with Store {
|
||||||
address = '',
|
address = '',
|
||||||
port = '',
|
port = '',
|
||||||
login = '',
|
login = '',
|
||||||
password = '';
|
password = '',
|
||||||
|
trusted = false;
|
||||||
|
|
||||||
@observable
|
@observable
|
||||||
ExecutionState state;
|
ExecutionState state;
|
||||||
|
@ -41,6 +42,9 @@ abstract class NodeCreateOrEditViewModelBase with Store {
|
||||||
@observable
|
@observable
|
||||||
bool useSSL;
|
bool useSSL;
|
||||||
|
|
||||||
|
@observable
|
||||||
|
bool trusted;
|
||||||
|
|
||||||
@computed
|
@computed
|
||||||
bool get isReady =>
|
bool get isReady =>
|
||||||
address.isNotEmpty && port.isNotEmpty;
|
address.isNotEmpty && port.isNotEmpty;
|
||||||
|
@ -68,6 +72,7 @@ abstract class NodeCreateOrEditViewModelBase with Store {
|
||||||
login = '';
|
login = '';
|
||||||
password = '';
|
password = '';
|
||||||
useSSL = false;
|
useSSL = false;
|
||||||
|
trusted = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@action
|
@action
|
||||||
|
@ -76,7 +81,7 @@ abstract class NodeCreateOrEditViewModelBase with Store {
|
||||||
state = IsExecutingState();
|
state = IsExecutingState();
|
||||||
final node =
|
final node =
|
||||||
Node(uri: uri, type: _wallet.type, login: login, password: password,
|
Node(uri: uri, type: _wallet.type, login: login, password: password,
|
||||||
useSSL: useSSL);
|
useSSL: useSSL, trusted: trusted);
|
||||||
await _nodeSource.add(node);
|
await _nodeSource.add(node);
|
||||||
state = ExecutedSuccessfullyState();
|
state = ExecutedSuccessfullyState();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
import 'package:cake_wallet/entities/balance_display_mode.dart';
|
import 'package:cake_wallet/entities/balance_display_mode.dart';
|
||||||
|
import 'package:cake_wallet/entities/priority_for_wallet_type.dart';
|
||||||
import 'package:cake_wallet/entities/transaction_description.dart';
|
import 'package:cake_wallet/entities/transaction_description.dart';
|
||||||
import 'package:cake_wallet/view_model/dashboard/balance_view_model.dart';
|
import 'package:cake_wallet/view_model/dashboard/balance_view_model.dart';
|
||||||
import 'package:cw_core/transaction_priority.dart';
|
import 'package:cw_core/transaction_priority.dart';
|
||||||
import 'package:cake_wallet/view_model/send/output.dart';
|
import 'package:cake_wallet/view_model/send/output.dart';
|
||||||
import 'package:cake_wallet/view_model/send/send_template_view_model.dart';
|
import 'package:cake_wallet/view_model/send/send_template_view_model.dart';
|
||||||
import 'package:cake_wallet/view_model/settings/settings_view_model.dart';
|
|
||||||
import 'package:hive/hive.dart';
|
import 'package:hive/hive.dart';
|
||||||
import 'package:mobx/mobx.dart';
|
import 'package:mobx/mobx.dart';
|
||||||
import 'package:cake_wallet/entities/template.dart';
|
import 'package:cake_wallet/entities/template.dart';
|
||||||
|
@ -42,7 +42,8 @@ abstract class SendViewModelBase with Store {
|
||||||
: state = InitialExecutionState(),
|
: state = InitialExecutionState(),
|
||||||
currencies = _wallet.balance.keys.toList(),
|
currencies = _wallet.balance.keys.toList(),
|
||||||
selectedCryptoCurrency = _wallet.currency,
|
selectedCryptoCurrency = _wallet.currency,
|
||||||
outputs = ObservableList<Output>() {
|
outputs = ObservableList<Output>(),
|
||||||
|
fiatFromSettings = _settingsStore.fiatCurrency {
|
||||||
final priority = _settingsStore.priority[_wallet.type];
|
final priority = _settingsStore.priority[_wallet.type];
|
||||||
final priorities = priorityForWalletType(_wallet.type);
|
final priorities = priorityForWalletType(_wallet.type);
|
||||||
|
|
||||||
|
@ -52,7 +53,7 @@ abstract class SendViewModelBase with Store {
|
||||||
|
|
||||||
outputs.add(Output(_wallet, _settingsStore, _fiatConversationStore, () => selectedCryptoCurrency));
|
outputs.add(Output(_wallet, _settingsStore, _fiatConversationStore, () => selectedCryptoCurrency));
|
||||||
}
|
}
|
||||||
|
|
||||||
@observable
|
@observable
|
||||||
ExecutionState state;
|
ExecutionState state;
|
||||||
|
|
||||||
|
@ -133,11 +134,13 @@ abstract class SendViewModelBase with Store {
|
||||||
|
|
||||||
Validator get textValidator => TextValidator();
|
Validator get textValidator => TextValidator();
|
||||||
|
|
||||||
|
final FiatCurrency fiatFromSettings;
|
||||||
|
|
||||||
@observable
|
@observable
|
||||||
PendingTransaction? pendingTransaction;
|
PendingTransaction? pendingTransaction;
|
||||||
|
|
||||||
@computed
|
@computed
|
||||||
String get balance => balanceViewModel.availableBalance ?? '0.0';
|
String get balance => balanceViewModel.availableBalance;
|
||||||
|
|
||||||
@computed
|
@computed
|
||||||
String get pendingTransactionFiatAmountFormatted =>
|
String get pendingTransactionFiatAmountFormatted =>
|
||||||
|
@ -176,6 +179,9 @@ abstract class SendViewModelBase with Store {
|
||||||
|
|
||||||
bool get hasCurrecyChanger => walletType == WalletType.haven;
|
bool get hasCurrecyChanger => walletType == WalletType.haven;
|
||||||
|
|
||||||
|
@computed
|
||||||
|
FiatCurrency get fiatCurrency => _settingsStore.fiatCurrency;
|
||||||
|
|
||||||
final WalletBase _wallet;
|
final WalletBase _wallet;
|
||||||
final SettingsStore _settingsStore;
|
final SettingsStore _settingsStore;
|
||||||
final SendTemplateViewModel sendTemplateViewModel;
|
final SendTemplateViewModel sendTemplateViewModel;
|
||||||
|
@ -218,7 +224,7 @@ abstract class SendViewModelBase with Store {
|
||||||
state = TransactionCommitting();
|
state = TransactionCommitting();
|
||||||
await pendingTransaction!.commit();
|
await pendingTransaction!.commit();
|
||||||
|
|
||||||
if (pendingTransaction!.id?.isNotEmpty ?? false) {
|
if (pendingTransaction!.id.isNotEmpty) {
|
||||||
_settingsStore.shouldSaveRecipientAddress
|
_settingsStore.shouldSaveRecipientAddress
|
||||||
? await transactionDescriptionBox.add(TransactionDescription(
|
? await transactionDescriptionBox.add(TransactionDescription(
|
||||||
id: pendingTransaction!.id,
|
id: pendingTransaction!.id,
|
||||||
|
@ -293,4 +299,12 @@ abstract class SendViewModelBase with Store {
|
||||||
|
|
||||||
bool _isEqualCurrency(String currency) =>
|
bool _isEqualCurrency(String currency) =>
|
||||||
currency.toLowerCase() == _wallet.currency.title.toLowerCase();
|
currency.toLowerCase() == _wallet.currency.title.toLowerCase();
|
||||||
|
|
||||||
|
@action
|
||||||
|
void onClose() =>
|
||||||
|
_settingsStore.fiatCurrency = fiatFromSettings;
|
||||||
|
|
||||||
|
@action
|
||||||
|
void setFiatCurrency(FiatCurrency fiat) =>
|
||||||
|
_settingsStore.fiatCurrency = fiat;
|
||||||
}
|
}
|
||||||
|
|
57
lib/view_model/settings/display_settings_view_model.dart
Normal file
57
lib/view_model/settings/display_settings_view_model.dart
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
import 'package:cake_wallet/entities/balance_display_mode.dart';
|
||||||
|
import 'package:cake_wallet/entities/fiat_currency.dart';
|
||||||
|
import 'package:cake_wallet/store/settings_store.dart';
|
||||||
|
import 'package:cake_wallet/themes/theme_base.dart';
|
||||||
|
import 'package:mobx/mobx.dart';
|
||||||
|
|
||||||
|
part 'display_settings_view_model.g.dart';
|
||||||
|
|
||||||
|
class DisplaySettingsViewModel = DisplaySettingsViewModelBase with _$DisplaySettingsViewModel;
|
||||||
|
|
||||||
|
abstract class DisplaySettingsViewModelBase with Store {
|
||||||
|
DisplaySettingsViewModelBase(
|
||||||
|
this._settingsStore,
|
||||||
|
);
|
||||||
|
|
||||||
|
final SettingsStore _settingsStore;
|
||||||
|
|
||||||
|
@computed
|
||||||
|
FiatCurrency get fiatCurrency => _settingsStore.fiatCurrency;
|
||||||
|
|
||||||
|
@computed
|
||||||
|
String get languageCode => _settingsStore.languageCode;
|
||||||
|
|
||||||
|
@computed
|
||||||
|
BalanceDisplayMode get balanceDisplayMode => _settingsStore.balanceDisplayMode;
|
||||||
|
|
||||||
|
@computed
|
||||||
|
bool get shouldDisplayBalance => balanceDisplayMode == BalanceDisplayMode.displayableBalance;
|
||||||
|
|
||||||
|
@computed
|
||||||
|
ThemeBase get theme => _settingsStore.currentTheme;
|
||||||
|
|
||||||
|
@action
|
||||||
|
void setBalanceDisplayMode(BalanceDisplayMode value) => _settingsStore.balanceDisplayMode = value;
|
||||||
|
|
||||||
|
@action
|
||||||
|
void setShouldDisplayBalance(bool value) {
|
||||||
|
if (value) {
|
||||||
|
_settingsStore.balanceDisplayMode = BalanceDisplayMode.displayableBalance;
|
||||||
|
} else {
|
||||||
|
_settingsStore.balanceDisplayMode = BalanceDisplayMode.hiddenBalance;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@action
|
||||||
|
void onLanguageSelected(String code) {
|
||||||
|
_settingsStore.languageCode = code;
|
||||||
|
}
|
||||||
|
|
||||||
|
@action
|
||||||
|
void setTheme(ThemeBase newTheme) {
|
||||||
|
_settingsStore.currentTheme = newTheme;
|
||||||
|
}
|
||||||
|
|
||||||
|
@action
|
||||||
|
void setFiatCurrency(FiatCurrency value) => _settingsStore.fiatCurrency = value;
|
||||||
|
}
|
64
lib/view_model/settings/other_settings_view_model.dart
Normal file
64
lib/view_model/settings/other_settings_view_model.dart
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
import 'package:cake_wallet/bitcoin/bitcoin.dart';
|
||||||
|
import 'package:cake_wallet/entities/priority_for_wallet_type.dart';
|
||||||
|
import 'package:cake_wallet/store/settings_store.dart';
|
||||||
|
import 'package:cw_core/balance.dart';
|
||||||
|
import 'package:cw_core/transaction_history.dart';
|
||||||
|
import 'package:cw_core/transaction_info.dart';
|
||||||
|
import 'package:cw_core/transaction_priority.dart';
|
||||||
|
import 'package:cw_core/wallet_base.dart';
|
||||||
|
import 'package:cw_core/wallet_type.dart';
|
||||||
|
import 'package:mobx/mobx.dart';
|
||||||
|
import 'package:package_info/package_info.dart';
|
||||||
|
|
||||||
|
part 'other_settings_view_model.g.dart';
|
||||||
|
|
||||||
|
class OtherSettingsViewModel = OtherSettingsViewModelBase with _$OtherSettingsViewModel;
|
||||||
|
|
||||||
|
abstract class OtherSettingsViewModelBase with Store {
|
||||||
|
OtherSettingsViewModelBase(this._settingsStore, this._wallet)
|
||||||
|
: walletType = _wallet.type,
|
||||||
|
currentVersion = '' {
|
||||||
|
PackageInfo.fromPlatform()
|
||||||
|
.then((PackageInfo packageInfo) => currentVersion = packageInfo.version);
|
||||||
|
|
||||||
|
final priority = _settingsStore.priority[_wallet.type];
|
||||||
|
final priorities = priorityForWalletType(_wallet.type);
|
||||||
|
|
||||||
|
if (!priorities.contains(priority)) {
|
||||||
|
_settingsStore.priority[_wallet.type] = priorities.first;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
final WalletType walletType;
|
||||||
|
final WalletBase<Balance, TransactionHistoryBase<TransactionInfo>, TransactionInfo> _wallet;
|
||||||
|
|
||||||
|
@observable
|
||||||
|
String currentVersion;
|
||||||
|
|
||||||
|
final SettingsStore _settingsStore;
|
||||||
|
|
||||||
|
@computed
|
||||||
|
TransactionPriority get transactionPriority {
|
||||||
|
final priority = _settingsStore.priority[walletType];
|
||||||
|
|
||||||
|
if (priority == null) {
|
||||||
|
throw Exception('Unexpected type ${walletType.toString()}');
|
||||||
|
}
|
||||||
|
|
||||||
|
return priority;
|
||||||
|
}
|
||||||
|
|
||||||
|
String getDisplayPriority(dynamic priority) {
|
||||||
|
final _priority = priority as TransactionPriority;
|
||||||
|
|
||||||
|
if (_wallet.type == WalletType.bitcoin || _wallet.type == WalletType.litecoin) {
|
||||||
|
final rate = bitcoin!.getFeeRate(_wallet, _priority);
|
||||||
|
return bitcoin!.bitcoinTransactionPriorityWithLabel(_priority, rate);
|
||||||
|
}
|
||||||
|
|
||||||
|
return priority.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
void onDisplayPrioritySelected(TransactionPriority priority) =>
|
||||||
|
_settingsStore.priority[_wallet.type] = priority;
|
||||||
|
}
|
24
lib/view_model/settings/privacy_settings_view_model.dart
Normal file
24
lib/view_model/settings/privacy_settings_view_model.dart
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
import 'package:cake_wallet/store/settings_store.dart';
|
||||||
|
import 'package:mobx/mobx.dart';
|
||||||
|
|
||||||
|
part 'privacy_settings_view_model.g.dart';
|
||||||
|
|
||||||
|
class PrivacySettingsViewModel = PrivacySettingsViewModelBase with _$PrivacySettingsViewModel;
|
||||||
|
|
||||||
|
abstract class PrivacySettingsViewModelBase with Store {
|
||||||
|
PrivacySettingsViewModelBase(this._settingsStore);
|
||||||
|
|
||||||
|
final SettingsStore _settingsStore;
|
||||||
|
|
||||||
|
@computed
|
||||||
|
bool get disableExchange => _settingsStore.disableExchange;
|
||||||
|
|
||||||
|
@computed
|
||||||
|
bool get shouldSaveRecipientAddress => _settingsStore.shouldSaveRecipientAddress;
|
||||||
|
|
||||||
|
@action
|
||||||
|
void setShouldSaveRecipientAddress(bool value) => _settingsStore.shouldSaveRecipientAddress = value;
|
||||||
|
|
||||||
|
@action
|
||||||
|
void setEnableExchange(bool value) => _settingsStore.disableExchange = value;
|
||||||
|
}
|
25
lib/view_model/settings/security_settings_view_model.dart
Normal file
25
lib/view_model/settings/security_settings_view_model.dart
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
import 'package:cake_wallet/entities/biometric_auth.dart';
|
||||||
|
import 'package:cake_wallet/store/settings_store.dart';
|
||||||
|
import 'package:mobx/mobx.dart';
|
||||||
|
|
||||||
|
part 'security_settings_view_model.g.dart';
|
||||||
|
|
||||||
|
class SecuritySettingsViewModel = SecuritySettingsViewModelBase with _$SecuritySettingsViewModel;
|
||||||
|
|
||||||
|
abstract class SecuritySettingsViewModelBase with Store {
|
||||||
|
SecuritySettingsViewModelBase(this._settingsStore) : _biometricAuth = BiometricAuth();
|
||||||
|
|
||||||
|
final BiometricAuth _biometricAuth;
|
||||||
|
final SettingsStore _settingsStore;
|
||||||
|
|
||||||
|
@computed
|
||||||
|
bool get allowBiometricalAuthentication => _settingsStore.allowBiometricalAuthentication;
|
||||||
|
|
||||||
|
@action
|
||||||
|
Future<bool> biometricAuthenticated() async {
|
||||||
|
return await _biometricAuth.canCheckBiometrics() && await _biometricAuth.isAuthenticated();
|
||||||
|
}
|
||||||
|
|
||||||
|
@action
|
||||||
|
void setAllowBiometricalAuthentication(bool value) => _settingsStore.allowBiometricalAuthentication = value;
|
||||||
|
}
|
|
@ -1,354 +0,0 @@
|
||||||
import 'package:cake_wallet/entities/language_service.dart';
|
|
||||||
import 'package:cake_wallet/store/yat/yat_store.dart';
|
|
||||||
import 'package:cake_wallet/view_model/settings/choices_list_item.dart';
|
|
||||||
import 'package:flutter/cupertino.dart';
|
|
||||||
import 'package:mobx/mobx.dart';
|
|
||||||
import 'package:package_info/package_info.dart';
|
|
||||||
import 'package:cake_wallet/routes.dart';
|
|
||||||
import 'package:cake_wallet/generated/i18n.dart';
|
|
||||||
import 'package:cw_core/wallet_base.dart';
|
|
||||||
import 'package:cake_wallet/store/settings_store.dart';
|
|
||||||
import 'package:cake_wallet/entities/biometric_auth.dart';
|
|
||||||
import 'package:cw_core/wallet_type.dart';
|
|
||||||
import 'package:cake_wallet/entities/balance_display_mode.dart';
|
|
||||||
import 'package:cake_wallet/entities/fiat_currency.dart';
|
|
||||||
import 'package:cw_core/node.dart';
|
|
||||||
import 'package:cake_wallet/monero/monero.dart';
|
|
||||||
import 'package:cake_wallet/haven/haven.dart';
|
|
||||||
import 'package:cake_wallet/entities/action_list_display_mode.dart';
|
|
||||||
import 'package:cake_wallet/view_model/settings/version_list_item.dart';
|
|
||||||
import 'package:cake_wallet/view_model/settings/picker_list_item.dart';
|
|
||||||
import 'package:cake_wallet/view_model/settings/regular_list_item.dart';
|
|
||||||
import 'package:cake_wallet/view_model/settings/settings_list_item.dart';
|
|
||||||
import 'package:cake_wallet/view_model/settings/switcher_list_item.dart';
|
|
||||||
import 'package:cake_wallet/src/screens/auth/auth_page.dart';
|
|
||||||
import 'package:cake_wallet/bitcoin/bitcoin.dart';
|
|
||||||
import 'package:cw_core/transaction_history.dart';
|
|
||||||
import 'package:cw_core/balance.dart';
|
|
||||||
import 'package:cw_core/transaction_info.dart';
|
|
||||||
import 'package:cw_core/transaction_priority.dart';
|
|
||||||
import 'package:cake_wallet/themes/theme_base.dart';
|
|
||||||
import 'package:cake_wallet/themes/theme_list.dart';
|
|
||||||
import 'package:cake_wallet/src/screens/pin_code/pin_code_widget.dart';
|
|
||||||
import 'package:cake_wallet/wallet_type_utils.dart';
|
|
||||||
|
|
||||||
part 'settings_view_model.g.dart';
|
|
||||||
|
|
||||||
class SettingsViewModel = SettingsViewModelBase with _$SettingsViewModel;
|
|
||||||
|
|
||||||
List<TransactionPriority> priorityForWalletType(WalletType type) {
|
|
||||||
switch (type) {
|
|
||||||
case WalletType.monero:
|
|
||||||
return monero!.getTransactionPriorities();
|
|
||||||
case WalletType.bitcoin:
|
|
||||||
return bitcoin!.getTransactionPriorities();
|
|
||||||
case WalletType.litecoin:
|
|
||||||
return bitcoin!.getLitecoinTransactionPriorities();
|
|
||||||
case WalletType.haven:
|
|
||||||
return haven!.getTransactionPriorities();
|
|
||||||
default:
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
abstract class SettingsViewModelBase with Store {
|
|
||||||
SettingsViewModelBase(
|
|
||||||
this._settingsStore,
|
|
||||||
this._yatStore,
|
|
||||||
WalletBase<Balance, TransactionHistoryBase<TransactionInfo>,
|
|
||||||
TransactionInfo>
|
|
||||||
wallet)
|
|
||||||
: itemHeaders = {},
|
|
||||||
_walletType = wallet.type,
|
|
||||||
_biometricAuth = BiometricAuth(),
|
|
||||||
currentVersion = '' {
|
|
||||||
PackageInfo.fromPlatform().then(
|
|
||||||
(PackageInfo packageInfo) => currentVersion = packageInfo.version);
|
|
||||||
|
|
||||||
final priority = _settingsStore.priority[wallet.type];
|
|
||||||
final priorities = priorityForWalletType(wallet.type);
|
|
||||||
|
|
||||||
if (!priorities.contains(priority)) {
|
|
||||||
_settingsStore.priority[wallet.type] = priorities.first;
|
|
||||||
}
|
|
||||||
|
|
||||||
//var connectYatUrl = YatLink.baseUrl + YatLink.signInSuffix;
|
|
||||||
//final connectYatUrlParameters =
|
|
||||||
// _yatStore.defineQueryParameters();
|
|
||||||
|
|
||||||
//if (connectYatUrlParameters.isNotEmpty) {
|
|
||||||
// connectYatUrl += YatLink.queryParameter + connectYatUrlParameters;
|
|
||||||
//}
|
|
||||||
|
|
||||||
//var manageYatUrl = YatLink.baseUrl + YatLink.managePath;
|
|
||||||
//final manageYatUrlParameters =
|
|
||||||
// _yatStore.defineQueryParameters();
|
|
||||||
|
|
||||||
//if (manageYatUrlParameters.isNotEmpty) {
|
|
||||||
// manageYatUrl += YatLink.queryParameter + manageYatUrlParameters;
|
|
||||||
//}
|
|
||||||
|
|
||||||
//var createNewYatUrl = YatLink.startFlowUrl;
|
|
||||||
//final createNewYatUrlParameters =
|
|
||||||
// _yatStore.defineQueryParameters();
|
|
||||||
|
|
||||||
//if (createNewYatUrlParameters.isNotEmpty) {
|
|
||||||
// createNewYatUrl += '?sub1=' + createNewYatUrlParameters;
|
|
||||||
//}
|
|
||||||
|
|
||||||
|
|
||||||
getSections = () => [
|
|
||||||
[
|
|
||||||
SwitcherListItem(
|
|
||||||
title: S.current.settings_display_balance,
|
|
||||||
value: () => balanceDisplayMode == BalanceDisplayMode.displayableBalance,
|
|
||||||
onValueChange: (_, bool value) {
|
|
||||||
if (value) {
|
|
||||||
_settingsStore.balanceDisplayMode = BalanceDisplayMode.displayableBalance;
|
|
||||||
} else {
|
|
||||||
_settingsStore.balanceDisplayMode = BalanceDisplayMode.hiddenBalance;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
),
|
|
||||||
if (!isHaven && !shouldDisableFiat)
|
|
||||||
PickerListItem(
|
|
||||||
title: S.current.settings_currency,
|
|
||||||
searchHintText: S.current.search_currency,
|
|
||||||
items: FiatCurrency.all,
|
|
||||||
selectedItem: () => fiatCurrency,
|
|
||||||
onItemSelected: (FiatCurrency currency) =>
|
|
||||||
setFiatCurrency(currency),
|
|
||||||
images: FiatCurrency.all.map(
|
|
||||||
(e) => Image.asset("assets/images/flags/${e.countryCode}.png"))
|
|
||||||
.toList(),
|
|
||||||
isGridView: true,
|
|
||||||
matchingCriteria: (FiatCurrency currency, String searchText) {
|
|
||||||
return currency.title.toLowerCase().contains(searchText) || currency.fullName.toLowerCase().contains(searchText);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
PickerListItem(
|
|
||||||
title: S.current.settings_fee_priority,
|
|
||||||
items: priorityForWalletType(wallet.type),
|
|
||||||
displayItem: (dynamic priority) {
|
|
||||||
final _priority = priority as TransactionPriority;
|
|
||||||
|
|
||||||
if (wallet.type == WalletType.bitcoin
|
|
||||||
|| wallet.type == WalletType.litecoin) {
|
|
||||||
final rate = bitcoin!.getFeeRate(wallet, _priority);
|
|
||||||
return bitcoin!.bitcoinTransactionPriorityWithLabel(_priority, rate);
|
|
||||||
}
|
|
||||||
|
|
||||||
return priority.toString();
|
|
||||||
},
|
|
||||||
selectedItem: () => transactionPriority,
|
|
||||||
onItemSelected: (TransactionPriority priority) =>
|
|
||||||
_settingsStore.priority[wallet.type] = priority),
|
|
||||||
SwitcherListItem(
|
|
||||||
title: S.current.settings_save_recipient_address,
|
|
||||||
value: () => shouldSaveRecipientAddress,
|
|
||||||
onValueChange: (_, bool value) =>
|
|
||||||
setShouldSaveRecipientAddress(value))
|
|
||||||
],
|
|
||||||
[
|
|
||||||
RegularListItem(
|
|
||||||
title: S.current.settings_change_pin,
|
|
||||||
handler: (BuildContext context) {
|
|
||||||
Navigator.of(context).pushNamed(Routes.auth, arguments:
|
|
||||||
(bool isAuthenticatedSuccessfully, AuthPageState auth) {
|
|
||||||
auth.close(
|
|
||||||
route: isAuthenticatedSuccessfully ? Routes.setupPin : null,
|
|
||||||
arguments: (PinCodeState<PinCodeWidget> setupPinContext,
|
|
||||||
String _) {
|
|
||||||
setupPinContext.close();
|
|
||||||
},
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}),
|
|
||||||
PickerListItem(
|
|
||||||
title: S.current.settings_change_language,
|
|
||||||
searchHintText: S.current.search_language,
|
|
||||||
items: LanguageService.list.keys.toList(),
|
|
||||||
displayItem: (dynamic code) {
|
|
||||||
return LanguageService.list[code] ?? '';
|
|
||||||
},
|
|
||||||
selectedItem: () => _settingsStore.languageCode,
|
|
||||||
onItemSelected: (String code) {
|
|
||||||
_settingsStore.languageCode = code;
|
|
||||||
},
|
|
||||||
images: LanguageService.list.keys.map(
|
|
||||||
(e) => Image.asset("assets/images/flags/${LanguageService.localeCountryCode[e]}.png"))
|
|
||||||
.toList(),
|
|
||||||
matchingCriteria: (String code, String searchText) {
|
|
||||||
return LanguageService.list[code]?.toLowerCase().contains(searchText) ?? false;
|
|
||||||
},
|
|
||||||
),
|
|
||||||
SwitcherListItem(
|
|
||||||
title: S.current.disable_fiat,
|
|
||||||
value: () => shouldDisableFiat,
|
|
||||||
onValueChange: (_, bool value) =>
|
|
||||||
setShouldDisableFiat(value)),
|
|
||||||
SwitcherListItem(
|
|
||||||
title: S.current.settings_allow_biometrical_authentication,
|
|
||||||
value: () => allowBiometricalAuthentication,
|
|
||||||
onValueChange: (BuildContext context, bool value) {
|
|
||||||
if (value) {
|
|
||||||
Navigator.of(context).pushNamed(Routes.auth, arguments:
|
|
||||||
(bool isAuthenticatedSuccessfully,
|
|
||||||
AuthPageState auth) async {
|
|
||||||
if (isAuthenticatedSuccessfully) {
|
|
||||||
if (await _biometricAuth.canCheckBiometrics() &&
|
|
||||||
await _biometricAuth.isAuthenticated()) {
|
|
||||||
setAllowBiometricalAuthentication(
|
|
||||||
isAuthenticatedSuccessfully);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
setAllowBiometricalAuthentication(
|
|
||||||
isAuthenticatedSuccessfully);
|
|
||||||
}
|
|
||||||
|
|
||||||
auth.close();
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
setAllowBiometricalAuthentication(value);
|
|
||||||
}
|
|
||||||
}),
|
|
||||||
SwitcherListItem(
|
|
||||||
title: S.current.disable_exchange,
|
|
||||||
value: () => _settingsStore.disableExchange,
|
|
||||||
onValueChange: (BuildContext context, bool value) {
|
|
||||||
_settingsStore.disableExchange = value;
|
|
||||||
}),
|
|
||||||
ChoicesListItem(
|
|
||||||
title: S.current.color_theme,
|
|
||||||
items: ThemeList.all,
|
|
||||||
selectedItem: theme,
|
|
||||||
onItemSelected: (ThemeBase theme) => _settingsStore.currentTheme = theme,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
//[
|
|
||||||
//if (_yatStore.emoji.isNotEmpty) ...[
|
|
||||||
// LinkListItem(
|
|
||||||
// title: S.current.manage_yats,
|
|
||||||
// link: manageYatUrl,
|
|
||||||
// linkTitle: ''),
|
|
||||||
//] else ...[
|
|
||||||
//LinkListItem(
|
|
||||||
// title: S.current.connect_yats,
|
|
||||||
// link: connectYatUrl,
|
|
||||||
// linkTitle: ''),
|
|
||||||
//LinkListItem(
|
|
||||||
// title: 'Create new Yats',
|
|
||||||
// link: createNewYatUrl,
|
|
||||||
// linkTitle: '')
|
|
||||||
//]
|
|
||||||
//],
|
|
||||||
[
|
|
||||||
RegularListItem(
|
|
||||||
title: S.current.settings_terms_and_conditions,
|
|
||||||
handler: (BuildContext context) =>
|
|
||||||
Navigator.of(context).pushNamed(Routes.readDisclaimer),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
[VersionListItem(title: currentVersion)]
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
@observable
|
|
||||||
String currentVersion;
|
|
||||||
|
|
||||||
@computed
|
|
||||||
Node get node => _settingsStore.getCurrentNode(_walletType);
|
|
||||||
|
|
||||||
@computed
|
|
||||||
FiatCurrency get fiatCurrency => _settingsStore.fiatCurrency;
|
|
||||||
|
|
||||||
@computed
|
|
||||||
ObservableList<ActionListDisplayMode> get actionlistDisplayMode =>
|
|
||||||
_settingsStore.actionlistDisplayMode;
|
|
||||||
|
|
||||||
@computed
|
|
||||||
TransactionPriority get transactionPriority {
|
|
||||||
final priority = _settingsStore.priority[_walletType];
|
|
||||||
|
|
||||||
if (priority == null) {
|
|
||||||
throw Exception('Unexpected type ${_walletType.toString()}');
|
|
||||||
}
|
|
||||||
|
|
||||||
return priority;
|
|
||||||
}
|
|
||||||
|
|
||||||
@computed
|
|
||||||
BalanceDisplayMode get balanceDisplayMode =>
|
|
||||||
_settingsStore.balanceDisplayMode;
|
|
||||||
|
|
||||||
@computed
|
|
||||||
bool get shouldSaveRecipientAddress =>
|
|
||||||
_settingsStore.shouldSaveRecipientAddress;
|
|
||||||
|
|
||||||
@computed
|
|
||||||
bool get shouldDisableFiat =>
|
|
||||||
_settingsStore.shouldDisableFiat;
|
|
||||||
|
|
||||||
@computed
|
|
||||||
bool get allowBiometricalAuthentication =>
|
|
||||||
_settingsStore.allowBiometricalAuthentication;
|
|
||||||
|
|
||||||
@computed
|
|
||||||
ThemeBase get theme => _settingsStore.currentTheme;
|
|
||||||
|
|
||||||
bool get isBitcoinBuyEnabled => _settingsStore.isBitcoinBuyEnabled;
|
|
||||||
|
|
||||||
final Map<String, String> itemHeaders;
|
|
||||||
late List<List<SettingsListItem>> Function() getSections;
|
|
||||||
final SettingsStore _settingsStore;
|
|
||||||
final YatStore _yatStore;
|
|
||||||
final WalletType _walletType;
|
|
||||||
final BiometricAuth _biometricAuth;
|
|
||||||
|
|
||||||
@action
|
|
||||||
void setBalanceDisplayMode(BalanceDisplayMode value) =>
|
|
||||||
_settingsStore.balanceDisplayMode = value;
|
|
||||||
|
|
||||||
@action
|
|
||||||
void setFiatCurrency(FiatCurrency value) =>
|
|
||||||
_settingsStore.fiatCurrency = value;
|
|
||||||
|
|
||||||
@action
|
|
||||||
void setShouldSaveRecipientAddress(bool value) =>
|
|
||||||
_settingsStore.shouldSaveRecipientAddress = value;
|
|
||||||
|
|
||||||
@action
|
|
||||||
void setShouldDisableFiat(bool value) =>
|
|
||||||
_settingsStore.shouldDisableFiat = value;
|
|
||||||
|
|
||||||
@action
|
|
||||||
void setAllowBiometricalAuthentication(bool value) =>
|
|
||||||
_settingsStore.allowBiometricalAuthentication = value;
|
|
||||||
|
|
||||||
@action
|
|
||||||
void toggleTransactionsDisplay() =>
|
|
||||||
actionlistDisplayMode.contains(ActionListDisplayMode.transactions)
|
|
||||||
? _hideTransaction()
|
|
||||||
: _showTransaction();
|
|
||||||
|
|
||||||
@action
|
|
||||||
void toggleTradesDisplay() =>
|
|
||||||
actionlistDisplayMode.contains(ActionListDisplayMode.trades)
|
|
||||||
? _hideTrades()
|
|
||||||
: _showTrades();
|
|
||||||
|
|
||||||
@action
|
|
||||||
void _hideTransaction() =>
|
|
||||||
actionlistDisplayMode.remove(ActionListDisplayMode.transactions);
|
|
||||||
|
|
||||||
@action
|
|
||||||
void _hideTrades() =>
|
|
||||||
actionlistDisplayMode.remove(ActionListDisplayMode.trades);
|
|
||||||
|
|
||||||
@action
|
|
||||||
void _showTransaction() =>
|
|
||||||
actionlistDisplayMode.add(ActionListDisplayMode.transactions);
|
|
||||||
|
|
||||||
@action
|
|
||||||
void _showTrades() => actionlistDisplayMode.add(ActionListDisplayMode.trades);
|
|
||||||
}
|
|
|
@ -184,7 +184,7 @@ abstract class TransactionDetailsViewModelBase with Store {
|
||||||
case WalletType.monero:
|
case WalletType.monero:
|
||||||
return 'https://monero.com/tx/${txId}';
|
return 'https://monero.com/tx/${txId}';
|
||||||
case WalletType.bitcoin:
|
case WalletType.bitcoin:
|
||||||
return 'https://www.blockchain.com/btc/tx/${txId}';
|
return 'https://mempool.space/tx/${txId}';
|
||||||
case WalletType.litecoin:
|
case WalletType.litecoin:
|
||||||
return 'https://blockchair.com/litecoin/transaction/${txId}';
|
return 'https://blockchair.com/litecoin/transaction/${txId}';
|
||||||
case WalletType.haven:
|
case WalletType.haven:
|
||||||
|
@ -199,7 +199,7 @@ abstract class TransactionDetailsViewModelBase with Store {
|
||||||
case WalletType.monero:
|
case WalletType.monero:
|
||||||
return S.current.view_transaction_on + 'Monero.com';
|
return S.current.view_transaction_on + 'Monero.com';
|
||||||
case WalletType.bitcoin:
|
case WalletType.bitcoin:
|
||||||
return S.current.view_transaction_on + 'Blockchain.com';
|
return S.current.view_transaction_on + 'mempool.space';
|
||||||
case WalletType.litecoin:
|
case WalletType.litecoin:
|
||||||
return S.current.view_transaction_on + 'Blockchair.com';
|
return S.current.view_transaction_on + 'Blockchair.com';
|
||||||
case WalletType.haven:
|
case WalletType.haven:
|
||||||
|
|
5
model_generator.sh
Normal file
5
model_generator.sh
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
cd cw_core && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd ..
|
||||||
|
cd cw_monero && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd ..
|
||||||
|
cd cw_bitcoin && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd ..
|
||||||
|
cd cw_haven && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd ..
|
||||||
|
flutter packages pub run build_runner build --delete-conflicting-outputs
|
|
@ -356,6 +356,7 @@
|
||||||
"sync_status_failed_connect" : "GETRENNT",
|
"sync_status_failed_connect" : "GETRENNT",
|
||||||
"sync_status_connecting" : "VERBINDEN",
|
"sync_status_connecting" : "VERBINDEN",
|
||||||
"sync_status_connected" : "VERBUNDEN",
|
"sync_status_connected" : "VERBUNDEN",
|
||||||
|
"sync_status_attempting_sync" : "SYNC VERSUCHEN",
|
||||||
|
|
||||||
|
|
||||||
"transaction_priority_slow" : "Langsam",
|
"transaction_priority_slow" : "Langsam",
|
||||||
|
@ -436,6 +437,7 @@
|
||||||
"provider_error" : "${provider}-Fehler",
|
"provider_error" : "${provider}-Fehler",
|
||||||
|
|
||||||
"use_ssl" : "SSL verwenden",
|
"use_ssl" : "SSL verwenden",
|
||||||
|
"trusted" : "Vertrauenswürdige",
|
||||||
|
|
||||||
"color_theme" : "Farbthema",
|
"color_theme" : "Farbthema",
|
||||||
"light_theme" : "Hell",
|
"light_theme" : "Hell",
|
||||||
|
@ -653,5 +655,12 @@
|
||||||
"do_not_share_warning_text" : "Teilen Sie diese nicht mit anderen, einschließlich des Supports.\n\nSie werden Ihr Geld stehlen!",
|
"do_not_share_warning_text" : "Teilen Sie diese nicht mit anderen, einschließlich des Supports.\n\nSie werden Ihr Geld stehlen!",
|
||||||
"help": "hilfe",
|
"help": "hilfe",
|
||||||
"disable_fiat": "Fiat deaktivieren",
|
"disable_fiat": "Fiat deaktivieren",
|
||||||
"disable_exchange": "Exchange deaktivieren"
|
"disable_exchange": "Exchange deaktivieren",
|
||||||
|
"connection_sync": "Verbindung und Synchronisierung",
|
||||||
|
"security_and_backup": "Sicherheit und Datensicherung",
|
||||||
|
"create_backup": "Backup erstellen",
|
||||||
|
"privacy_settings": "Datenschutzeinstellungen",
|
||||||
|
"privacy": "Datenschutz",
|
||||||
|
"display_settings": "Anzeigeeinstellungen",
|
||||||
|
"other_settings": "Andere Einstellungen",
|
||||||
}
|
}
|
||||||
|
|
|
@ -356,6 +356,7 @@
|
||||||
"sync_status_failed_connect" : "DISCONNECTED",
|
"sync_status_failed_connect" : "DISCONNECTED",
|
||||||
"sync_status_connecting" : "CONNECTING",
|
"sync_status_connecting" : "CONNECTING",
|
||||||
"sync_status_connected" : "CONNECTED",
|
"sync_status_connected" : "CONNECTED",
|
||||||
|
"sync_status_attempting_sync" : "ATTEMPTING SYNC",
|
||||||
|
|
||||||
|
|
||||||
"transaction_priority_slow" : "Slow",
|
"transaction_priority_slow" : "Slow",
|
||||||
|
@ -436,6 +437,7 @@
|
||||||
"provider_error" : "${provider} error",
|
"provider_error" : "${provider} error",
|
||||||
|
|
||||||
"use_ssl" : "Use SSL",
|
"use_ssl" : "Use SSL",
|
||||||
|
"trusted" : "Trusted",
|
||||||
|
|
||||||
"color_theme" : "Color theme",
|
"color_theme" : "Color theme",
|
||||||
"light_theme" : "Light",
|
"light_theme" : "Light",
|
||||||
|
@ -653,5 +655,12 @@
|
||||||
"do_not_share_warning_text" : "Do not share these with anyone else, including support.\n\nThey will steal your money!",
|
"do_not_share_warning_text" : "Do not share these with anyone else, including support.\n\nThey will steal your money!",
|
||||||
"help": "help",
|
"help": "help",
|
||||||
"disable_fiat": "Disable fiat",
|
"disable_fiat": "Disable fiat",
|
||||||
"disable_exchange": "Disable exchange"
|
"disable_exchange": "Disable exchange",
|
||||||
|
"connection_sync": "Connection and sync",
|
||||||
|
"security_and_backup": "Security and backup",
|
||||||
|
"create_backup": "Create backup",
|
||||||
|
"privacy_settings": "Privacy settings",
|
||||||
|
"privacy": "Privacy",
|
||||||
|
"display_settings": "Display settings",
|
||||||
|
"other_settings": "Other settings"
|
||||||
}
|
}
|
||||||
|
|
|
@ -356,6 +356,7 @@
|
||||||
"sync_status_failed_connect" : "DESCONECTADO",
|
"sync_status_failed_connect" : "DESCONECTADO",
|
||||||
"sync_status_connecting" : "CONECTANDO",
|
"sync_status_connecting" : "CONECTANDO",
|
||||||
"sync_status_connected" : "CONECTADO",
|
"sync_status_connected" : "CONECTADO",
|
||||||
|
"sync_status_attempting_sync" : "INTENTAR SINCRONIZAR",
|
||||||
|
|
||||||
|
|
||||||
"transaction_priority_slow" : "Lento",
|
"transaction_priority_slow" : "Lento",
|
||||||
|
@ -436,6 +437,7 @@
|
||||||
"provider_error" : "${provider} error",
|
"provider_error" : "${provider} error",
|
||||||
|
|
||||||
"use_ssl" : "Utilice SSL",
|
"use_ssl" : "Utilice SSL",
|
||||||
|
"trusted" : "de confianza",
|
||||||
|
|
||||||
"color_theme" : "Tema de color",
|
"color_theme" : "Tema de color",
|
||||||
"light_theme" : "Ligera",
|
"light_theme" : "Ligera",
|
||||||
|
@ -653,5 +655,12 @@
|
||||||
"do_not_share_warning_text" : "No comparta estos con nadie más, incluido el soporte.\n\n¡Te robarán tu dinero!",
|
"do_not_share_warning_text" : "No comparta estos con nadie más, incluido el soporte.\n\n¡Te robarán tu dinero!",
|
||||||
"help": "ayuda",
|
"help": "ayuda",
|
||||||
"disable_fiat": "Deshabilitar fiat",
|
"disable_fiat": "Deshabilitar fiat",
|
||||||
"disable_exchange": "Deshabilitar intercambio"
|
"disable_exchange": "Deshabilitar intercambio",
|
||||||
|
"connection_sync": "Conexión y sincronización",
|
||||||
|
"security_and_backup": "Seguridad y respaldo",
|
||||||
|
"create_backup": "Crear copia de seguridad",
|
||||||
|
"privacy_settings": "Configuración de privacidad",
|
||||||
|
"privacy": "Privacidad",
|
||||||
|
"display_settings": "Configuración de pantalla",
|
||||||
|
"other_settings": "Otras configuraciones"
|
||||||
}
|
}
|
||||||
|
|
|
@ -354,6 +354,7 @@
|
||||||
"sync_status_failed_connect" : "DÉCONNECTÉ",
|
"sync_status_failed_connect" : "DÉCONNECTÉ",
|
||||||
"sync_status_connecting" : "CONNEXION EN COURS",
|
"sync_status_connecting" : "CONNEXION EN COURS",
|
||||||
"sync_status_connected" : "CONNECTÉ",
|
"sync_status_connected" : "CONNECTÉ",
|
||||||
|
"sync_status_attempting_sync" : "TENTATIVE DE SYNCHRONISATION",
|
||||||
|
|
||||||
|
|
||||||
"transaction_priority_slow" : "Lent",
|
"transaction_priority_slow" : "Lent",
|
||||||
|
@ -434,6 +435,7 @@
|
||||||
"provider_error" : "Erreur de ${provider}",
|
"provider_error" : "Erreur de ${provider}",
|
||||||
|
|
||||||
"use_ssl" : "Utiliser SSL",
|
"use_ssl" : "Utiliser SSL",
|
||||||
|
"trusted" : "de confiance",
|
||||||
|
|
||||||
"color_theme" : "Thème",
|
"color_theme" : "Thème",
|
||||||
"light_theme" : "Clair",
|
"light_theme" : "Clair",
|
||||||
|
@ -651,5 +653,12 @@
|
||||||
"do_not_share_warning_text" : "Ne les partagez avec personne d'autre, y compris avec l'assistance.\n\nIls vont voler votre argent!",
|
"do_not_share_warning_text" : "Ne les partagez avec personne d'autre, y compris avec l'assistance.\n\nIls vont voler votre argent!",
|
||||||
"help": "aider",
|
"help": "aider",
|
||||||
"disable_fiat": "Désactiver fiat",
|
"disable_fiat": "Désactiver fiat",
|
||||||
"disable_exchange": "Désactiver l'échange"
|
"disable_exchange": "Désactiver l'échange",
|
||||||
|
"connection_sync": "Connexion et synchronisation",
|
||||||
|
"security_and_backup": "Sécurité et sauvegarde",
|
||||||
|
"create_backup": "Créer une sauvegarde",
|
||||||
|
"privacy_settings": "Paramètres de confidentialité",
|
||||||
|
"privacy": "Confidentialité",
|
||||||
|
"display_settings": "Paramètres d'affichage",
|
||||||
|
"other_settings": "Autres paramètres"
|
||||||
}
|
}
|
||||||
|
|
|
@ -356,6 +356,7 @@
|
||||||
"sync_status_failed_connect" : "डिस्कनेक्ट किया गया",
|
"sync_status_failed_connect" : "डिस्कनेक्ट किया गया",
|
||||||
"sync_status_connecting" : "कनेक्ट",
|
"sync_status_connecting" : "कनेक्ट",
|
||||||
"sync_status_connected" : "जुड़े हुए",
|
"sync_status_connected" : "जुड़े हुए",
|
||||||
|
"sync_status_attempting_sync" : "सिंक करने का प्रयास",
|
||||||
|
|
||||||
|
|
||||||
"transaction_priority_slow" : "धीरे",
|
"transaction_priority_slow" : "धीरे",
|
||||||
|
@ -436,6 +437,7 @@
|
||||||
"provider_error" : "${provider} त्रुटि",
|
"provider_error" : "${provider} त्रुटि",
|
||||||
|
|
||||||
"use_ssl" : "उपयोग SSL",
|
"use_ssl" : "उपयोग SSL",
|
||||||
|
"trusted" : "भरोसा",
|
||||||
|
|
||||||
"color_theme" : "रंग विषय",
|
"color_theme" : "रंग विषय",
|
||||||
"light_theme" : "रोशनी",
|
"light_theme" : "रोशनी",
|
||||||
|
@ -653,5 +655,12 @@
|
||||||
"do_not_share_warning_text" : "इन्हें समर्थन सहित किसी और के साथ साझा न करें।\n\nवे आपका पैसा चुरा लेंगे!",
|
"do_not_share_warning_text" : "इन्हें समर्थन सहित किसी और के साथ साझा न करें।\n\nवे आपका पैसा चुरा लेंगे!",
|
||||||
"help": "मदद करना",
|
"help": "मदद करना",
|
||||||
"disable_fiat": "िएट अक्षम करें",
|
"disable_fiat": "िएट अक्षम करें",
|
||||||
"disable_exchange": "एक्सचेंज अक्षम करें"
|
"disable_exchange": "एक्सचेंज अक्षम करें",
|
||||||
|
"connection_sync": "कनेक्शन और सिंक",
|
||||||
|
"security_and_backup": "सुरक्षा और बैकअप",
|
||||||
|
"create_backup": "बैकअप बनाएँ",
|
||||||
|
"privacy_settings": "गोपनीयता सेटिंग्स",
|
||||||
|
"privacy": "गोपनीयता",
|
||||||
|
"display_settings": "प्रदर्शन सेटिंग्स",
|
||||||
|
"other_settings": "अन्य सेटिंग्स"
|
||||||
}
|
}
|
||||||
|
|
|
@ -356,6 +356,7 @@
|
||||||
"sync_status_failed_connect" : "ISKLJUČENO",
|
"sync_status_failed_connect" : "ISKLJUČENO",
|
||||||
"sync_status_connecting" : "SPAJANJE",
|
"sync_status_connecting" : "SPAJANJE",
|
||||||
"sync_status_connected" : "SPOJENO",
|
"sync_status_connected" : "SPOJENO",
|
||||||
|
"sync_status_attempting_sync" : "POKUŠAJ SINKRONIZACIJE",
|
||||||
|
|
||||||
|
|
||||||
"transaction_priority_slow" : "Sporo",
|
"transaction_priority_slow" : "Sporo",
|
||||||
|
@ -436,6 +437,7 @@
|
||||||
"provider_error" : "${provider} greška",
|
"provider_error" : "${provider} greška",
|
||||||
|
|
||||||
"use_ssl" : "Koristi SSL",
|
"use_ssl" : "Koristi SSL",
|
||||||
|
"trusted" : "vjerovao",
|
||||||
|
|
||||||
"color_theme" : "Shema boja",
|
"color_theme" : "Shema boja",
|
||||||
"light_theme" : "Svijetla",
|
"light_theme" : "Svijetla",
|
||||||
|
@ -653,5 +655,12 @@
|
||||||
"do_not_share_warning_text" : "Nemojte ih dijeliti ni s kim, uključujući podršku.\n\nUkrast će vam novac!",
|
"do_not_share_warning_text" : "Nemojte ih dijeliti ni s kim, uključujući podršku.\n\nUkrast će vam novac!",
|
||||||
"help": "pomozite",
|
"help": "pomozite",
|
||||||
"disable_fiat": "Isključi, fiat",
|
"disable_fiat": "Isključi, fiat",
|
||||||
"disable_exchange": "Onemogući exchange"
|
"disable_exchange": "Onemogući exchange",
|
||||||
|
"connection_sync": "Povezivanje i sinkronizacija",
|
||||||
|
"security_and_backup": "Sigurnost i sigurnosna kopija",
|
||||||
|
"create_backup": "Stvori sigurnosnu kopiju",
|
||||||
|
"privacy_settings": "Postavke privatnosti",
|
||||||
|
"privacy": "Privatnost",
|
||||||
|
"display_settings": "Postavke zaslona",
|
||||||
|
"other_settings": "Ostale postavke"
|
||||||
}
|
}
|
||||||
|
|
|
@ -356,6 +356,7 @@
|
||||||
"sync_status_failed_connect" : "DISCONNESSO",
|
"sync_status_failed_connect" : "DISCONNESSO",
|
||||||
"sync_status_connecting" : "CONNESSIONE",
|
"sync_status_connecting" : "CONNESSIONE",
|
||||||
"sync_status_connected" : "CONNESSO",
|
"sync_status_connected" : "CONNESSO",
|
||||||
|
"sync_status_attempting_sync" : "TENTATIVO DI SINCRONIZZAZIONE",
|
||||||
|
|
||||||
|
|
||||||
"transaction_priority_slow" : "Bassa",
|
"transaction_priority_slow" : "Bassa",
|
||||||
|
@ -436,6 +437,7 @@
|
||||||
"provider_error" : "${provider} errore",
|
"provider_error" : "${provider} errore",
|
||||||
|
|
||||||
"use_ssl" : "Usa SSL",
|
"use_ssl" : "Usa SSL",
|
||||||
|
"trusted" : "di fiducia",
|
||||||
|
|
||||||
"color_theme" : "Colore tema",
|
"color_theme" : "Colore tema",
|
||||||
"light_theme" : "Bianco",
|
"light_theme" : "Bianco",
|
||||||
|
@ -653,5 +655,12 @@
|
||||||
"do_not_share_warning_text" : "Non condividerli con nessun altro, incluso il supporto.\n\nTi ruberanno i soldi!",
|
"do_not_share_warning_text" : "Non condividerli con nessun altro, incluso il supporto.\n\nTi ruberanno i soldi!",
|
||||||
"help": "aiuto",
|
"help": "aiuto",
|
||||||
"disable_fiat": "Disabilita fiat",
|
"disable_fiat": "Disabilita fiat",
|
||||||
"disable_exchange": "Disabilita scambio"
|
"disable_exchange": "Disabilita scambio",
|
||||||
|
"connection_sync": "Connessione e sincronizzazione",
|
||||||
|
"security_and_backup": "Sicurezza e backup",
|
||||||
|
"create_backup": "Crea backup",
|
||||||
|
"privacy_settings": "Impostazioni privacy",
|
||||||
|
"privacy": "Privacy",
|
||||||
|
"display_settings": "Impostazioni di visualizzazione",
|
||||||
|
"other_settings": "Altre impostazioni"
|
||||||
}
|
}
|
||||||
|
|
|
@ -356,6 +356,7 @@
|
||||||
"sync_status_failed_connect" : "切断されました",
|
"sync_status_failed_connect" : "切断されました",
|
||||||
"sync_status_connecting" : "接続中",
|
"sync_status_connecting" : "接続中",
|
||||||
"sync_status_connected" : "接続済み",
|
"sync_status_connected" : "接続済み",
|
||||||
|
"sync_status_attempting_sync" : "同期を試みています",
|
||||||
|
|
||||||
|
|
||||||
"transaction_priority_slow" : "スロー",
|
"transaction_priority_slow" : "スロー",
|
||||||
|
@ -436,6 +437,7 @@
|
||||||
"provider_error" : "${provider} エラー",
|
"provider_error" : "${provider} エラー",
|
||||||
|
|
||||||
"use_ssl" : "SSLを使用する",
|
"use_ssl" : "SSLを使用する",
|
||||||
|
"trusted" : "信頼できる",
|
||||||
|
|
||||||
"color_theme" : "カラーテーマ",
|
"color_theme" : "カラーテーマ",
|
||||||
"light_theme" : "光",
|
"light_theme" : "光",
|
||||||
|
@ -653,5 +655,12 @@
|
||||||
"do_not_share_warning_text" : "サポートを含め、これらを他の誰とも共有しないでください。\n\n彼らはあなたのお金を盗みます!",
|
"do_not_share_warning_text" : "サポートを含め、これらを他の誰とも共有しないでください。\n\n彼らはあなたのお金を盗みます!",
|
||||||
"help": "ヘルプ",
|
"help": "ヘルプ",
|
||||||
"disable_fiat": "フィアットを無効にする",
|
"disable_fiat": "フィアットを無効にする",
|
||||||
"disable_exchange": "交換を無効にする"
|
"disable_exchange": "交換を無効にする",
|
||||||
|
"connection_sync": "接続と同期",
|
||||||
|
"security_and_backup": "セキュリティとバックアップ",
|
||||||
|
"create_backup": "バックアップを作成",
|
||||||
|
"privacy_settings": "プライバシー設定",
|
||||||
|
"privacy": "プライバシー",
|
||||||
|
"display_settings": "表示設定",
|
||||||
|
"other_settings": "その他の設定"
|
||||||
}
|
}
|
||||||
|
|
|
@ -356,6 +356,7 @@
|
||||||
"sync_status_failed_connect" : "연결 해제",
|
"sync_status_failed_connect" : "연결 해제",
|
||||||
"sync_status_connecting" : "연결 중",
|
"sync_status_connecting" : "연결 중",
|
||||||
"sync_status_connected" : "연결됨",
|
"sync_status_connected" : "연결됨",
|
||||||
|
"sync_status_attempting_sync" : "동기화 시도 중",
|
||||||
|
|
||||||
|
|
||||||
"transaction_priority_slow" : "느린",
|
"transaction_priority_slow" : "느린",
|
||||||
|
@ -436,6 +437,7 @@
|
||||||
"provider_error" : "${provider} 오류",
|
"provider_error" : "${provider} 오류",
|
||||||
|
|
||||||
"use_ssl" : "SSL 사용",
|
"use_ssl" : "SSL 사용",
|
||||||
|
"trusted" : "신뢰할 수 있는",
|
||||||
|
|
||||||
"color_theme" : "색상 테마",
|
"color_theme" : "색상 테마",
|
||||||
"light_theme" : "빛",
|
"light_theme" : "빛",
|
||||||
|
@ -653,5 +655,12 @@
|
||||||
"do_not_share_warning_text" : "지원을 포함하여 다른 사람과 이러한 정보를 공유하지 마십시오.\n\n그들은 당신의 돈을 훔칠 것입니다!",
|
"do_not_share_warning_text" : "지원을 포함하여 다른 사람과 이러한 정보를 공유하지 마십시오.\n\n그들은 당신의 돈을 훔칠 것입니다!",
|
||||||
"help": "돕다",
|
"help": "돕다",
|
||||||
"disable_fiat": "법정화폐 비활성화",
|
"disable_fiat": "법정화폐 비활성화",
|
||||||
"disable_exchange": "교환 비활성화"
|
"disable_exchange": "교환 비활성화",
|
||||||
|
"connection_sync": "연결 및 동기화",
|
||||||
|
"security_and_backup": "보안 및 백업",
|
||||||
|
"create_backup": "백업 생성",
|
||||||
|
"privacy_settings": "개인정보 설정",
|
||||||
|
"privacy": "프라이버시",
|
||||||
|
"display_settings": "디스플레이 설정",
|
||||||
|
"other_settings": "기타 설정"
|
||||||
}
|
}
|
||||||
|
|
|
@ -356,6 +356,7 @@
|
||||||
"sync_status_failed_connect" : "LOSGEKOPPELD",
|
"sync_status_failed_connect" : "LOSGEKOPPELD",
|
||||||
"sync_status_connecting" : "AANSLUITING",
|
"sync_status_connecting" : "AANSLUITING",
|
||||||
"sync_status_connected" : "VERBONDEN",
|
"sync_status_connected" : "VERBONDEN",
|
||||||
|
"sync_status_attempting_sync" : "SYNCHRONISATIE PROBEREN",
|
||||||
|
|
||||||
|
|
||||||
"transaction_priority_slow" : "Langzaam",
|
"transaction_priority_slow" : "Langzaam",
|
||||||
|
@ -436,6 +437,7 @@
|
||||||
"provider_error" : "${provider} fout",
|
"provider_error" : "${provider} fout",
|
||||||
|
|
||||||
"use_ssl" : "Gebruik SSL",
|
"use_ssl" : "Gebruik SSL",
|
||||||
|
"trusted" : "vertrouwd",
|
||||||
|
|
||||||
"color_theme" : "Kleur thema",
|
"color_theme" : "Kleur thema",
|
||||||
"light_theme" : "Licht",
|
"light_theme" : "Licht",
|
||||||
|
@ -653,5 +655,12 @@
|
||||||
"do_not_share_warning_text" : "Deel deze met niemand anders, ook niet met support.\n\nZe zullen je geld stelen!",
|
"do_not_share_warning_text" : "Deel deze met niemand anders, ook niet met support.\n\nZe zullen je geld stelen!",
|
||||||
"help": "helpen",
|
"help": "helpen",
|
||||||
"disable_fiat": "법정화폐 비활성화",
|
"disable_fiat": "법정화폐 비활성화",
|
||||||
"disable_exchange": "Uitwisseling uitschakelen"
|
"disable_exchange": "Uitwisseling uitschakelen",
|
||||||
|
"connection_sync": "Verbinding en synchronisatie",
|
||||||
|
"security_and_backup": "Beveiliging en back-up",
|
||||||
|
"create_backup": "Maak een back-up",
|
||||||
|
"privacy_settings": "Privacy-instellingen",
|
||||||
|
"privacy": "Privacy",
|
||||||
|
"display_settings": "Weergave-instellingen",
|
||||||
|
"other_settings": "Andere instellingen"
|
||||||
}
|
}
|
||||||
|
|
|
@ -356,6 +356,7 @@
|
||||||
"sync_status_failed_connect" : "NIEPOWIĄZANY",
|
"sync_status_failed_connect" : "NIEPOWIĄZANY",
|
||||||
"sync_status_connecting" : "ZŁĄCZONY",
|
"sync_status_connecting" : "ZŁĄCZONY",
|
||||||
"sync_status_connected" : "POŁĄCZONY",
|
"sync_status_connected" : "POŁĄCZONY",
|
||||||
|
"sync_status_attempting_sync" : "PRÓBA SYNCHRONIZACJI",
|
||||||
|
|
||||||
|
|
||||||
"transaction_priority_slow" : "Powolny",
|
"transaction_priority_slow" : "Powolny",
|
||||||
|
@ -436,6 +437,7 @@
|
||||||
"provider_error" : "${provider} pomyłka",
|
"provider_error" : "${provider} pomyłka",
|
||||||
|
|
||||||
"use_ssl" : "Użyj SSL",
|
"use_ssl" : "Użyj SSL",
|
||||||
|
"trusted" : "zaufany",
|
||||||
|
|
||||||
"color_theme" : "Motyw kolorystyczny",
|
"color_theme" : "Motyw kolorystyczny",
|
||||||
"light_theme" : "Lekki",
|
"light_theme" : "Lekki",
|
||||||
|
@ -653,5 +655,12 @@
|
||||||
"do_not_share_warning_text" : "Nie udostępniaj ich nikomu innemu, w tym wsparcia.\n\nUkradną twoje pieniądze!",
|
"do_not_share_warning_text" : "Nie udostępniaj ich nikomu innemu, w tym wsparcia.\n\nUkradną twoje pieniądze!",
|
||||||
"help": "pomoc",
|
"help": "pomoc",
|
||||||
"disable_fiat": "Wyłącz fiat",
|
"disable_fiat": "Wyłącz fiat",
|
||||||
"disable_exchange": "Wyłącz wymianę"
|
"disable_exchange": "Wyłącz wymianę",
|
||||||
|
"connection_sync": "Połączenie i synchronizacja",
|
||||||
|
"security_and_backup": "Bezpieczeństwo i kopia zapasowa",
|
||||||
|
"create_backup": "Utwórz kopię zapasową",
|
||||||
|
"privacy_settings": "Ustawienia prywatności",
|
||||||
|
"privacy": "Prywatność",
|
||||||
|
"display_settings": "Ustawienia wyświetlania",
|
||||||
|
"other_settings": "Inne ustawienia"
|
||||||
}
|
}
|
||||||
|
|
|
@ -356,6 +356,7 @@
|
||||||
"sync_status_failed_connect" : "DESCONECTADO",
|
"sync_status_failed_connect" : "DESCONECTADO",
|
||||||
"sync_status_connecting" : "CONECTANDO",
|
"sync_status_connecting" : "CONECTANDO",
|
||||||
"sync_status_connected" : "CONECTADO",
|
"sync_status_connected" : "CONECTADO",
|
||||||
|
"sync_status_attempting_sync" : "TENTANDO SINCRONIZAR",
|
||||||
|
|
||||||
|
|
||||||
"transaction_priority_slow" : "Lenta",
|
"transaction_priority_slow" : "Lenta",
|
||||||
|
@ -436,6 +437,7 @@
|
||||||
"provider_error" : "${provider} erro",
|
"provider_error" : "${provider} erro",
|
||||||
|
|
||||||
"use_ssl" : "Use SSL",
|
"use_ssl" : "Use SSL",
|
||||||
|
"trusted" : "confiável",
|
||||||
|
|
||||||
"color_theme" : "Tema de cor",
|
"color_theme" : "Tema de cor",
|
||||||
"light_theme" : "Luz",
|
"light_theme" : "Luz",
|
||||||
|
@ -544,7 +546,6 @@
|
||||||
"create_account": "Criar conta",
|
"create_account": "Criar conta",
|
||||||
"privacy_policy": "Política de privacidade",
|
"privacy_policy": "Política de privacidade",
|
||||||
"welcome_to_cakepay": "Bem-vindo ao Cake Pay!",
|
"welcome_to_cakepay": "Bem-vindo ao Cake Pay!",
|
||||||
"create_account": "Registar-se",
|
|
||||||
"forgot_password": "Esqueci a senha",
|
"forgot_password": "Esqueci a senha",
|
||||||
"reset_password": "Redefinir senha",
|
"reset_password": "Redefinir senha",
|
||||||
"gift_cards": "Cartões de presente",
|
"gift_cards": "Cartões de presente",
|
||||||
|
@ -653,5 +654,12 @@
|
||||||
"do_not_share_warning_text" : "Não os compartilhe com mais ninguém, incluindo suporte.\n\nEles vão roubar seu dinheiro!",
|
"do_not_share_warning_text" : "Não os compartilhe com mais ninguém, incluindo suporte.\n\nEles vão roubar seu dinheiro!",
|
||||||
"help": "ajuda",
|
"help": "ajuda",
|
||||||
"disable_fiat": "Desativar fiat",
|
"disable_fiat": "Desativar fiat",
|
||||||
"disable_exchange": "Desativar troca"
|
"disable_exchange": "Desativar troca",
|
||||||
|
"connection_sync": "Conexão e sincronização",
|
||||||
|
"security_and_backup": "Segurança e backup",
|
||||||
|
"create_backup": "Criar backup",
|
||||||
|
"privacy_settings": "Configurações de privacidade",
|
||||||
|
"privacy": "Privacidade",
|
||||||
|
"display_settings": "Configurações de exibição",
|
||||||
|
"other_settings": "Outras configurações"
|
||||||
}
|
}
|
||||||
|
|
|
@ -356,6 +356,7 @@
|
||||||
"sync_status_failed_connect" : "ОТКЛЮЧЕНО",
|
"sync_status_failed_connect" : "ОТКЛЮЧЕНО",
|
||||||
"sync_status_connecting" : "ПОДКЛЮЧЕНИЕ",
|
"sync_status_connecting" : "ПОДКЛЮЧЕНИЕ",
|
||||||
"sync_status_connected" : "ПОДКЛЮЧЕНО",
|
"sync_status_connected" : "ПОДКЛЮЧЕНО",
|
||||||
|
"sync_status_attempting_sync" : "ПОПЫТКА СИНХРОНИЗАЦИИ",
|
||||||
|
|
||||||
|
|
||||||
"transaction_priority_slow" : "Медленный",
|
"transaction_priority_slow" : "Медленный",
|
||||||
|
@ -436,6 +437,7 @@
|
||||||
"provider_error" : "${provider} ошибка",
|
"provider_error" : "${provider} ошибка",
|
||||||
|
|
||||||
"use_ssl" : "Использовать SSL",
|
"use_ssl" : "Использовать SSL",
|
||||||
|
"trusted" : "доверенный",
|
||||||
|
|
||||||
"color_theme" : "Цветовая тема",
|
"color_theme" : "Цветовая тема",
|
||||||
"light_theme" : "Светлая",
|
"light_theme" : "Светлая",
|
||||||
|
@ -653,5 +655,12 @@
|
||||||
"do_not_share_warning_text" : "Не делитесь ими с кем-либо еще, в том числе со службой поддержки.\n\nОни украдут ваши деньги!",
|
"do_not_share_warning_text" : "Не делитесь ими с кем-либо еще, в том числе со службой поддержки.\n\nОни украдут ваши деньги!",
|
||||||
"help": "помощь",
|
"help": "помощь",
|
||||||
"disable_fiat": "Отключить фиат",
|
"disable_fiat": "Отключить фиат",
|
||||||
"disable_exchange": "Отключить обмен"
|
"disable_exchange": "Отключить обмен",
|
||||||
|
"connection_sync": "Подключение и синхронизация",
|
||||||
|
"security_and_backup": "Безопасность и резервное копирование",
|
||||||
|
"create_backup": "Создать резервную копию",
|
||||||
|
"privacy_settings": "Настройки конфиденциальности",
|
||||||
|
"privacy": "Конфиденциальность",
|
||||||
|
"display_settings": "Настройки отображения",
|
||||||
|
"other_settings": "Другие настройки"
|
||||||
}
|
}
|
||||||
|
|
|
@ -355,6 +355,7 @@
|
||||||
"sync_status_failed_connect" : "ВІДКЛЮЧЕНО",
|
"sync_status_failed_connect" : "ВІДКЛЮЧЕНО",
|
||||||
"sync_status_connecting" : "ПІДКЛЮЧЕННЯ",
|
"sync_status_connecting" : "ПІДКЛЮЧЕННЯ",
|
||||||
"sync_status_connected" : "ПІДКЛЮЧЕНО",
|
"sync_status_connected" : "ПІДКЛЮЧЕНО",
|
||||||
|
"sync_status_attempting_sync" : "СПРОБА СИНХРОНІЗАЦІЇ",
|
||||||
|
|
||||||
|
|
||||||
"transaction_priority_slow" : "Повільний",
|
"transaction_priority_slow" : "Повільний",
|
||||||
|
@ -435,6 +436,7 @@
|
||||||
"provider_error" : "${provider} помилка",
|
"provider_error" : "${provider} помилка",
|
||||||
|
|
||||||
"use_ssl" : "Використати SSL",
|
"use_ssl" : "Використати SSL",
|
||||||
|
"trusted" : "довіряють",
|
||||||
|
|
||||||
"color_theme" : "Кольорова тема",
|
"color_theme" : "Кольорова тема",
|
||||||
"light_theme" : "Світла",
|
"light_theme" : "Світла",
|
||||||
|
@ -652,5 +654,13 @@
|
||||||
"do_not_share_warning_text" : "Не повідомляйте їх нікому, включно зі службою підтримки.\n\nВони вкрадуть ваші гроші!",
|
"do_not_share_warning_text" : "Не повідомляйте їх нікому, включно зі службою підтримки.\n\nВони вкрадуть ваші гроші!",
|
||||||
"help": "допомога",
|
"help": "допомога",
|
||||||
"disable_fiat": "Вимкнути фиат",
|
"disable_fiat": "Вимкнути фиат",
|
||||||
"disable_exchange": "Вимкнути exchange"
|
"disable_exchange": "Вимкнути exchange",
|
||||||
|
"connection_sync": "Підключення та синхронізація",
|
||||||
|
"security_and_backup": "Безпека та резервне копіювання",
|
||||||
|
"create_backup": "Створити резервну копію",
|
||||||
|
"privacy_settings": "Налаштування конфіденційності",
|
||||||
|
"privacy": "Конфіденційність",
|
||||||
|
"display_settings": "Налаштування дисплея",
|
||||||
|
"other_settings": "Інші налаштування"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -356,6 +356,7 @@
|
||||||
"sync_status_failed_connect" : "断线",
|
"sync_status_failed_connect" : "断线",
|
||||||
"sync_status_connecting" : "连接中",
|
"sync_status_connecting" : "连接中",
|
||||||
"sync_status_connected" : "已连接",
|
"sync_status_connected" : "已连接",
|
||||||
|
"sync_status_attempting_sync" : "嘗試同步",
|
||||||
|
|
||||||
|
|
||||||
"transaction_priority_slow" : "慢速",
|
"transaction_priority_slow" : "慢速",
|
||||||
|
@ -435,6 +436,7 @@
|
||||||
"provider_error" : "${provider} 错误",
|
"provider_error" : "${provider} 错误",
|
||||||
|
|
||||||
"use_ssl" : "使用SSL",
|
"use_ssl" : "使用SSL",
|
||||||
|
"trusted" : "值得信赖",
|
||||||
|
|
||||||
"color_theme" : "主题",
|
"color_theme" : "主题",
|
||||||
"light_theme" : "艳丽",
|
"light_theme" : "艳丽",
|
||||||
|
@ -651,5 +653,12 @@
|
||||||
"do_not_share_warning_text" : "不要與其他任何人分享這些內容,包括支持。\n\n他們會偷你的錢!",
|
"do_not_share_warning_text" : "不要與其他任何人分享這些內容,包括支持。\n\n他們會偷你的錢!",
|
||||||
"help": "帮助",
|
"help": "帮助",
|
||||||
"disable_fiat": "禁用法令",
|
"disable_fiat": "禁用法令",
|
||||||
"disable_exchange": "禁用交换"
|
"disable_exchange": "禁用交换",
|
||||||
|
"connection_sync": "连接和同步",
|
||||||
|
"security_and_backup": "安全和备份",
|
||||||
|
"create_backup": "创建备份",
|
||||||
|
"privacy_settings": "隐私设置",
|
||||||
|
"privacy":"隐私",
|
||||||
|
"display_settings": "显示设置",
|
||||||
|
"other_settings": "其他设置"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue