mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
3a391f10a3
* fix: enhance regex, fix multiline * feat: improve scan msg, fix missing txs, use date api * feat: node fixes, enhance send modal, TX list tag & filter, refactors * fix: continuous scanning * fix: missing close * fix: resubscribe tweaks * feat: use mempool api setting toggle * handle any failure of height API and fallback to the old method [skip ci] --------- Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
64 lines
1.6 KiB
Dart
64 lines
1.6 KiB
Dart
import 'package:cake_wallet/generated/i18n.dart';
|
|
import 'package:cw_core/sync_status.dart';
|
|
|
|
String syncStatusTitle(SyncStatus syncStatus) {
|
|
if (syncStatus is SyncingSyncStatus) {
|
|
return syncStatus.blocksLeft == 1
|
|
? S.current.block_remaining
|
|
: S.current.Blocks_remaining('${syncStatus.blocksLeft}');
|
|
}
|
|
|
|
if (syncStatus is SyncedTipSyncStatus) {
|
|
return S.current.silent_payments_scanned_tip(syncStatus.tip.toString());
|
|
}
|
|
|
|
if (syncStatus is SyncedSyncStatus) {
|
|
return S.current.sync_status_syncronized;
|
|
}
|
|
|
|
if (syncStatus is NotConnectedSyncStatus) {
|
|
return S.current.sync_status_not_connected;
|
|
}
|
|
|
|
if (syncStatus is AttemptingSyncStatus) {
|
|
return S.current.sync_status_attempting_sync;
|
|
}
|
|
|
|
if (syncStatus is FailedSyncStatus) {
|
|
return S.current.sync_status_failed_connect;
|
|
}
|
|
|
|
if (syncStatus is ConnectingSyncStatus) {
|
|
return S.current.sync_status_connecting;
|
|
}
|
|
|
|
if (syncStatus is ConnectedSyncStatus) {
|
|
return S.current.sync_status_connected;
|
|
}
|
|
|
|
if (syncStatus is LostConnectionSyncStatus) {
|
|
return S.current.sync_status_failed_connect;
|
|
}
|
|
|
|
if (syncStatus is UnsupportedSyncStatus) {
|
|
return S.current.sync_status_unsupported;
|
|
}
|
|
|
|
if (syncStatus is TimedOutSyncStatus) {
|
|
return S.current.sync_status_timed_out;
|
|
}
|
|
|
|
if (syncStatus is SyncronizingSyncStatus) {
|
|
return S.current.sync_status_syncronizing;
|
|
}
|
|
|
|
if (syncStatus is StartingScanSyncStatus) {
|
|
return S.current.sync_status_starting_scan(syncStatus.beginHeight.toString());
|
|
}
|
|
|
|
if (syncStatus is AttemptingScanSyncStatus) {
|
|
return S.current.sync_status_attempting_scan;
|
|
}
|
|
|
|
return '';
|
|
}
|