2020-09-21 11:50:26 +00:00
|
|
|
import 'dart:async';
|
|
|
|
import 'package:cake_wallet/core/fiat_conversion_service.dart';
|
2022-03-30 15:57:04 +00:00
|
|
|
import 'package:cake_wallet/entities/update_haven_rate.dart';
|
2020-09-21 11:50:26 +00:00
|
|
|
import 'package:cake_wallet/store/app_store.dart';
|
|
|
|
import 'package:cake_wallet/store/dashboard/fiat_conversion_store.dart';
|
|
|
|
import 'package:cake_wallet/store/settings_store.dart';
|
2022-03-30 15:57:04 +00:00
|
|
|
import 'package:cw_core/wallet_type.dart';
|
2020-09-21 11:50:26 +00:00
|
|
|
|
2022-10-12 17:09:57 +00:00
|
|
|
Timer? _timer;
|
2020-09-21 11:50:26 +00:00
|
|
|
|
|
|
|
Future<void> startFiatRateUpdate(AppStore appStore, SettingsStore settingsStore,
|
|
|
|
FiatConversionStore fiatConversionStore) async {
|
|
|
|
if (_timer != null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-10-12 17:09:57 +00:00
|
|
|
if (appStore.wallet != null) {
|
|
|
|
fiatConversionStore.prices[appStore.wallet!.currency] =
|
2020-12-15 16:29:10 +00:00
|
|
|
await FiatConversionService.fetchPrice(
|
2022-10-12 17:09:57 +00:00
|
|
|
appStore.wallet!.currency, settingsStore.fiatCurrency);
|
|
|
|
}
|
2020-09-21 11:50:26 +00:00
|
|
|
|
|
|
|
_timer = Timer.periodic(
|
|
|
|
Duration(seconds: 30),
|
2022-03-30 15:57:04 +00:00
|
|
|
(_) async {
|
|
|
|
try {
|
2022-10-12 17:09:57 +00:00
|
|
|
if (appStore.wallet!.type == WalletType.haven) {
|
2022-03-30 15:57:04 +00:00
|
|
|
await updateHavenRate(fiatConversionStore);
|
|
|
|
} else {
|
2022-10-12 17:09:57 +00:00
|
|
|
fiatConversionStore.prices[appStore.wallet!.currency] = await FiatConversionService.fetchPrice(
|
|
|
|
appStore.wallet!.currency, settingsStore.fiatCurrency);
|
2022-03-30 15:57:04 +00:00
|
|
|
}
|
|
|
|
} catch(e) {
|
|
|
|
print(e);
|
|
|
|
}
|
|
|
|
});
|
2020-09-21 11:50:26 +00:00
|
|
|
}
|