Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use getStakePlugins instead of walletStakingState #5495

Merged
merged 1 commit into from
Mar 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 27 additions & 24 deletions src/components/themed/TransactionListTop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@ import { toggleAccountBalanceVisibility } from '../../actions/LocalSettingsActio
import { updateStakingState } from '../../actions/scene/StakingActions'
import { getFiatSymbol, SPECIAL_CURRENCY_INFO } from '../../constants/WalletAndCurrencyConstants'
import { useAsyncNavigation } from '../../hooks/useAsyncNavigation'
import { useAsyncValue } from '../../hooks/useAsyncValue'
import { useHandler } from '../../hooks/useHandler'
import { useWalletName } from '../../hooks/useWalletName'
import { useWatch } from '../../hooks/useWatch'
import { formatNumber } from '../../locales/intl'
import { lstrings } from '../../locales/strings'
import { PositionAllocation } from '../../plugins/stake-plugins/types'
import { getStakePlugins } from '../../plugins/stake-plugins/stakePlugins'
import { PositionAllocation, StakePlugin } from '../../plugins/stake-plugins/types'
import { defaultWalletStakingState, WalletStakingState } from '../../reducers/StakingReducer'
import { getExchangeDenomByCurrencyCode, selectDisplayDenomByCurrencyCode } from '../../selectors/DenominationSelectors'
import { getExchangeRate } from '../../selectors/WalletSelectors'
Expand Down Expand Up @@ -90,6 +92,7 @@ interface StateProps {
exchangeRate: number
exchangeRates: GuiExchangeRates
isAccountBalanceVisible: boolean
stakePlugins: StakePlugin[]
walletName: string
walletStakingState: WalletStakingState
}
Expand Down Expand Up @@ -488,7 +491,6 @@ export class TransactionListTopComponent extends React.PureComponent<Props, Stat
const { theme, walletStakingState } = this.props
const styles = getStyles(theme)
const { countryCode } = this.state

const hideStaking = !isStakingSupported(this.props.wallet.currencyInfo.pluginId)
const bestApyText = getBestApyText(Object.values(walletStakingState.stakePolicies))

Expand All @@ -502,12 +504,12 @@ export class TransactionListTopComponent extends React.PureComponent<Props, Stat
</IconButton>
{hideStaking ? null : (
<IconButton
disabled={this.props.walletStakingState.stakePlugins.length === 0}
disabled={this.props.stakePlugins.length === 0}
label={getUkCompliantString(countryCode, 'stake_earn_button_label')}
onPress={this.handleStakePress}
superscriptLabel={bestApyText}
>
{this.props.walletStakingState.stakePlugins.length === 0 ? (
{this.props.walletStakingState.isLoading ? (
<ActivityIndicator color={theme.primaryText} />
) : (
<Feather name="percent" size={theme.rem(1.75)} color={theme.primaryText} />
Expand Down Expand Up @@ -566,7 +568,7 @@ export class TransactionListTopComponent extends React.PureComponent<Props, Stat
handleStakePress = () => {
triggerHaptic('impactLight')
const { currencyCode, wallet, navigation, tokenId } = this.props
const { stakePlugins } = this.props.walletStakingState
const { stakePlugins } = this.props
const stakePolicies = Object.values(this.props.walletStakingState.stakePolicies)

// Handle FIO staking
Expand All @@ -578,27 +580,24 @@ export class TransactionListTopComponent extends React.PureComponent<Props, Stat
}

// Handle StakePlugin staking
if (stakePlugins != null) {
if (stakePolicies.length === 1) {
const [stakePolicy] = stakePolicies
const { stakePolicyId } = stakePolicy
const stakePlugin = getPluginFromPolicy(stakePlugins, stakePolicy, {
pluginId: wallet.currencyInfo.pluginId
})
if (stakePlugin != null)
navigation.push('stakeOverview', {
stakePlugin,
walletId: wallet.id,
stakePolicyId
})
}
// More than one option or stakePolicies are not yet loaded/populated
else {
navigation.push('stakeOptions', {
if (stakePolicies.length === 1) {
const [stakePolicy] = stakePolicies
const { stakePolicyId } = stakePolicy
const stakePlugin = getPluginFromPolicy(stakePlugins, stakePolicy, {
pluginId: wallet.currencyInfo.pluginId
})
if (stakePlugin != null)
navigation.push('stakeOverview', {
stakePlugin,
walletId: wallet.id,
currencyCode
stakePolicyId
})
}
} else {
// More than one option or stakePolicies are not yet loaded/populated
navigation.push('stakeOptions', {
walletId: wallet.id,
currencyCode
})
}
}

Expand Down Expand Up @@ -755,6 +754,9 @@ export function TransactionListTop(props: OwnProps) {
// Fallback to a default state using the reducer if the wallet is not found
state => state.staking.walletStakingMap[wallet.id] ?? defaultWalletStakingState
)

const [stakePlugins] = useAsyncValue<StakePlugin[]>(async () => await getStakePlugins(wallet.currencyInfo.pluginId))

const defaultFiat = removeIsoPrefix(defaultIsoFiat)
const theme = useTheme()

Expand Down Expand Up @@ -792,6 +794,7 @@ export function TransactionListTop(props: OwnProps) {
theme={theme}
walletName={walletName}
walletStakingState={walletStakingState}
stakePlugins={stakePlugins ?? []}
/>
)
}
Loading