mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
239 lines
7.8 KiB
JavaScript
239 lines
7.8 KiB
JavaScript
/* eslint-disable react/prop-types */
|
|
import { useAsyncStorage } from '@react-native-async-storage/async-storage';
|
|
import React, { createContext, useEffect, useState } from 'react';
|
|
import { LayoutAnimation } from 'react-native';
|
|
import { AppStorage } from '../class';
|
|
import { FiatUnit } from '../models/fiatUnit';
|
|
const BlueApp = require('../BlueApp');
|
|
const BlueElectrum = require('./BlueElectrum');
|
|
|
|
const _lastTimeTriedToRefetchWallet = {}; // hashmap of timestamps we _started_ refetching some wallet
|
|
|
|
export const WalletTransactionsStatus = { NONE: false, ALL: true };
|
|
export const BlueStorageContext = createContext();
|
|
export const BlueStorageProvider = ({ children }) => {
|
|
const [wallets, setWallets] = useState([]);
|
|
const [pendingWallets, setPendingWallets] = useState([]);
|
|
const [selectedWallet, setSelectedWallet] = useState('');
|
|
const [walletTransactionUpdateStatus, setWalletTransactionUpdateStatus] = useState(WalletTransactionsStatus.NONE);
|
|
const [walletsInitialized, setWalletsInitialized] = useState(false);
|
|
const [preferredFiatCurrency, _setPreferredFiatCurrency] = useState(FiatUnit.USD);
|
|
const [language, _setLanguage] = useState();
|
|
const getPreferredCurrencyAsyncStorage = useAsyncStorage(AppStorage.PREFERRED_CURRENCY).getItem;
|
|
const getLanguageAsyncStorage = useAsyncStorage(AppStorage.LANG).getItem;
|
|
const [newWalletAdded, setNewWalletAdded] = useState(false);
|
|
const [isHandOffUseEnabled, setIsHandOffUseEnabled] = useState(false);
|
|
const [isDrawerListBlurred, _setIsDrawerListBlurred] = useState(false);
|
|
|
|
const setIsHandOffUseEnabledAsyncStorage = value => {
|
|
setIsHandOffUseEnabled(value);
|
|
return BlueApp.setItem(AppStorage.HANDOFF_STORAGE_KEY, value === true ? '1' : '');
|
|
};
|
|
|
|
const saveToDisk = async () => {
|
|
BlueApp.tx_metadata = txMetadata;
|
|
await BlueApp.saveToDisk();
|
|
setWallets([...BlueApp.getWallets()]);
|
|
txMetadata = BlueApp.tx_metadata;
|
|
};
|
|
|
|
useEffect(() => {
|
|
setWallets(BlueApp.getWallets());
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
(async () => {
|
|
try {
|
|
const enabledHandoff = await BlueApp.getItem(AppStorage.HANDOFF_STORAGE_KEY);
|
|
setIsHandOffUseEnabled(!!enabledHandoff);
|
|
} catch (_e) {
|
|
setIsHandOffUseEnabledAsyncStorage(false);
|
|
setIsHandOffUseEnabled(false);
|
|
}
|
|
})();
|
|
}, []);
|
|
|
|
const setIsDrawerListBlurred = value => {
|
|
LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut);
|
|
_setIsDrawerListBlurred(value);
|
|
};
|
|
|
|
const getPreferredCurrency = async () => {
|
|
const item = await getPreferredCurrencyAsyncStorage();
|
|
_setPreferredFiatCurrency(item);
|
|
};
|
|
|
|
const setPreferredFiatCurrency = () => {
|
|
getPreferredCurrency();
|
|
};
|
|
|
|
const getLanguage = async () => {
|
|
const item = await getLanguageAsyncStorage();
|
|
_setLanguage(item);
|
|
};
|
|
|
|
const setLanguage = () => {
|
|
getLanguage();
|
|
};
|
|
|
|
useEffect(() => {
|
|
getPreferredCurrency();
|
|
getLanguageAsyncStorage();
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, []);
|
|
|
|
const resetWallets = () => {
|
|
setWallets(BlueApp.getWallets());
|
|
};
|
|
|
|
const setWalletsWithNewOrder = wallets => {
|
|
BlueApp.wallets = wallets;
|
|
saveToDisk();
|
|
};
|
|
|
|
const refreshAllWalletTransactions = async (lastSnappedTo, showUpdateStatusIndicator = true) => {
|
|
let noErr = true;
|
|
try {
|
|
if (showUpdateStatusIndicator) {
|
|
setWalletTransactionUpdateStatus(WalletTransactionsStatus.ALL);
|
|
}
|
|
await BlueElectrum.waitTillConnected();
|
|
const balanceStart = +new Date();
|
|
await fetchWalletBalances(lastSnappedTo);
|
|
const balanceEnd = +new Date();
|
|
console.log('fetch balance took', (balanceEnd - balanceStart) / 1000, 'sec');
|
|
const start = +new Date();
|
|
await fetchWalletTransactions(lastSnappedTo);
|
|
const end = +new Date();
|
|
console.log('fetch tx took', (end - start) / 1000, 'sec');
|
|
} catch (err) {
|
|
noErr = false;
|
|
console.warn(err);
|
|
} finally {
|
|
setWalletTransactionUpdateStatus(WalletTransactionsStatus.NONE);
|
|
}
|
|
if (noErr) await saveToDisk(); // caching
|
|
};
|
|
|
|
const fetchAndSaveWalletTransactions = async walletID => {
|
|
const index = wallets.findIndex(wallet => wallet.getID() === walletID);
|
|
let noErr = true;
|
|
try {
|
|
// 5sec debounce:
|
|
setWalletTransactionUpdateStatus(walletID);
|
|
if (+new Date() - _lastTimeTriedToRefetchWallet[walletID] < 5000) {
|
|
console.log('re-fetch wallet happens too fast; NOP');
|
|
return;
|
|
}
|
|
_lastTimeTriedToRefetchWallet[walletID] = +new Date();
|
|
|
|
await BlueElectrum.waitTillConnected();
|
|
const balanceStart = +new Date();
|
|
await fetchWalletBalances(index);
|
|
const balanceEnd = +new Date();
|
|
console.log('fetch balance took', (balanceEnd - balanceStart) / 1000, 'sec');
|
|
const start = +new Date();
|
|
await fetchWalletTransactions(index);
|
|
const end = +new Date();
|
|
console.log('fetch tx took', (end - start) / 1000, 'sec');
|
|
} catch (err) {
|
|
noErr = false;
|
|
console.warn(err);
|
|
} finally {
|
|
setWalletTransactionUpdateStatus(WalletTransactionsStatus.NONE);
|
|
}
|
|
if (noErr) await saveToDisk(); // caching
|
|
};
|
|
|
|
const addWallet = wallet => {
|
|
BlueApp.wallets.push(wallet);
|
|
setWallets([...BlueApp.getWallets()]);
|
|
};
|
|
|
|
const deleteWallet = wallet => {
|
|
BlueApp.deleteWallet(wallet);
|
|
setWallets([...BlueApp.getWallets()]);
|
|
};
|
|
|
|
let txMetadata = BlueApp.tx_metadata || {};
|
|
const getTransactions = BlueApp.getTransactions;
|
|
const isAdancedModeEnabled = BlueApp.isAdancedModeEnabled;
|
|
|
|
const fetchWalletBalances = BlueApp.fetchWalletBalances;
|
|
const fetchWalletTransactions = BlueApp.fetchWalletTransactions;
|
|
const getBalance = BlueApp.getBalance;
|
|
const isStorageEncrypted = BlueApp.storageIsEncrypted;
|
|
const startAndDecrypt = BlueApp.startAndDecrypt;
|
|
const encryptStorage = BlueApp.encryptStorage;
|
|
const sleep = BlueApp.sleep;
|
|
const setHodlHodlApiKey = BlueApp.setHodlHodlApiKey;
|
|
const getHodlHodlApiKey = BlueApp.getHodlHodlApiKey;
|
|
const createFakeStorage = BlueApp.createFakeStorage;
|
|
const decryptStorage = BlueApp.decryptStorage;
|
|
const isPasswordInUse = BlueApp.isPasswordInUse;
|
|
const cachedPassword = BlueApp.cachedPassword;
|
|
const setIsAdancedModeEnabled = BlueApp.setIsAdancedModeEnabled;
|
|
const getHodlHodlSignatureKey = BlueApp.getHodlHodlSignatureKey;
|
|
const addHodlHodlContract = BlueApp.addHodlHodlContract;
|
|
const getHodlHodlContracts = BlueApp.getHodlHodlContracts;
|
|
const getItem = BlueApp.getItem;
|
|
const setItem = BlueApp.setItem;
|
|
|
|
return (
|
|
<BlueStorageContext.Provider
|
|
value={{
|
|
wallets,
|
|
setWalletsWithNewOrder,
|
|
pendingWallets,
|
|
setPendingWallets,
|
|
txMetadata,
|
|
saveToDisk,
|
|
getTransactions,
|
|
selectedWallet,
|
|
setSelectedWallet,
|
|
addWallet,
|
|
deleteWallet,
|
|
setItem,
|
|
getItem,
|
|
getHodlHodlContracts,
|
|
isAdancedModeEnabled,
|
|
fetchWalletBalances,
|
|
fetchWalletTransactions,
|
|
fetchAndSaveWalletTransactions,
|
|
isStorageEncrypted,
|
|
getHodlHodlSignatureKey,
|
|
encryptStorage,
|
|
startAndDecrypt,
|
|
cachedPassword,
|
|
addHodlHodlContract,
|
|
getBalance,
|
|
walletsInitialized,
|
|
setWalletsInitialized,
|
|
refreshAllWalletTransactions,
|
|
sleep,
|
|
setHodlHodlApiKey,
|
|
createFakeStorage,
|
|
newWalletAdded,
|
|
setNewWalletAdded,
|
|
resetWallets,
|
|
getHodlHodlApiKey,
|
|
decryptStorage,
|
|
isPasswordInUse,
|
|
setIsAdancedModeEnabled,
|
|
setPreferredFiatCurrency,
|
|
preferredFiatCurrency,
|
|
setLanguage,
|
|
language,
|
|
isHandOffUseEnabled,
|
|
setIsHandOffUseEnabledAsyncStorage,
|
|
walletTransactionUpdateStatus,
|
|
setWalletTransactionUpdateStatus,
|
|
isDrawerListBlurred,
|
|
setIsDrawerListBlurred,
|
|
}}
|
|
>
|
|
{children}
|
|
</BlueStorageContext.Provider>
|
|
);
|
|
};
|