mirror of
https://github.com/trezor/trezor-wallet
synced 2025-02-19 03:22:02 +00:00
cleaning up SelectedAccountActions + add default loading case
This commit is contained in:
parent
04946b5f06
commit
556b2be84f
@ -63,8 +63,10 @@ const getAccountLoader = (state: State, selectedAccount: SelectedAccountState):
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
if (account) return null;
|
||||
// account not found (yet). checking why...
|
||||
if (!account) {
|
||||
|
||||
if (!discovery || (discovery.waitingForDevice || discovery.interrupted)) {
|
||||
if (device.connected) {
|
||||
// case 1: device is connected but discovery not started yet (probably waiting for auth)
|
||||
@ -76,6 +78,7 @@ const getAccountLoader = (state: State, selectedAccount: SelectedAccountState):
|
||||
};
|
||||
}
|
||||
// case 2: device is unavailable (created with different passphrase settings) account cannot be accessed
|
||||
// this is related to device instance in url, it's not used for now (device clones are disabled)
|
||||
return {
|
||||
type: 'info',
|
||||
title: `Device ${device.instanceLabel} is unavailable`,
|
||||
@ -101,16 +104,21 @@ const getAccountLoader = (state: State, selectedAccount: SelectedAccountState):
|
||||
shouldRender: false,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
// case default: account information isn't loaded yet
|
||||
return {
|
||||
type: 'progress',
|
||||
title: 'Loading account',
|
||||
shouldRender: false,
|
||||
};
|
||||
};
|
||||
|
||||
const getAccountNotification = (state: State, selectedAccount: SelectedAccountState): ?AccountStatus => {
|
||||
const device = state.wallet.selectedDevice;
|
||||
const { network, discovery } = selectedAccount;
|
||||
const { account, network, discovery } = selectedAccount;
|
||||
if (!device || !network) return null;
|
||||
|
||||
if (device && network) {
|
||||
// case 1: backend status
|
||||
const blockchain = state.blockchain.find(b => b.shortcut === network.shortcut);
|
||||
if (blockchain && !blockchain.connected) {
|
||||
return {
|
||||
@ -120,17 +128,16 @@ const getAccountNotification = (state: State, selectedAccount: SelectedAccountSt
|
||||
};
|
||||
}
|
||||
|
||||
if (discovery) {
|
||||
if (discovery && !discovery.completed && !discovery.waitingForDevice) {
|
||||
// case 2: account does exists and it's visible but shouldn't be active
|
||||
if (account && discovery && !discovery.completed && !discovery.waitingForDevice) {
|
||||
return {
|
||||
type: 'info',
|
||||
title: 'Loading accounts...',
|
||||
title: 'Loading other accounts...',
|
||||
shouldRender: true,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// Additional status: account does exists and it's visible but shouldn't be active
|
||||
// case 3: account does exists and device is disconnected
|
||||
if (!device.connected) {
|
||||
return {
|
||||
type: 'info',
|
||||
@ -138,6 +145,9 @@ const getAccountNotification = (state: State, selectedAccount: SelectedAccountSt
|
||||
shouldRender: true,
|
||||
};
|
||||
}
|
||||
|
||||
// case 4: account does exists and device is unavailable (created with different passphrase settings) account cannot be accessed
|
||||
// this is related to device instance in url, it's not used for now (device clones are disabled)
|
||||
if (!device.available) {
|
||||
return {
|
||||
type: 'info',
|
||||
@ -146,8 +156,8 @@ const getAccountNotification = (state: State, selectedAccount: SelectedAccountSt
|
||||
shouldRender: true,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// case default
|
||||
return null;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user