Skip to content

Commit

Permalink
chore(coinbox): do not rerender the coin box unnecessarily (#6252)
Browse files Browse the repository at this point in the history
  • Loading branch information
mperdomo-bc committed Jan 26, 2024
1 parent 663858d commit d34dedc
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 51 deletions.
Original file line number Diff line number Diff line change
@@ -1,39 +1,34 @@
import React from 'react'
import { FormattedMessage } from 'react-intl'
import { connect } from 'react-redux'

import SelectBox from '../SelectBox'

const ACCOUNT_TYPES = [
{
text: (
<FormattedMessage
id='components.form.selectboxbankaccounttype.checking'
defaultMessage='Checking'
/>
),
value: 'checking'
},

{
text: (
<FormattedMessage
id='components.form.selectboxbankaccounttype.savings'
defaultMessage='Savings'
/>
),
value: 'savings'
}
]
class SelectBoxBankAccountType extends React.PureComponent {
render() {
const { accountTypes, ...rest } = this.props
const elements = [{ group: '', items: accountTypes }]
return <SelectBox elements={elements} {...rest} />
const elements = [{ group: '', items: ACCOUNT_TYPES }]
return <SelectBox elements={elements} {...this.props} />
}
}

const mapStateToProps = (state, ownProps) => ({
accountTypes: [
{
text: (
<FormattedMessage
id='components.form.selectboxbankaccounttype.checking'
defaultMessage='Checking'
/>
),
value: 'checking'
},

{
text: (
<FormattedMessage
id='components.form.selectboxbankaccounttype.savings'
defaultMessage='Savings'
/>
),
value: 'savings'
}
]
})

export default connect(mapStateToProps)(SelectBoxBankAccountType)
export default SelectBoxBankAccountType
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import React from 'react'
import { connect } from 'react-redux'
import styled from 'styled-components'

import { Icon, Text } from 'blockchain-info-components'

import SelectBox from '../SelectBox'
import { getCoins } from './selectors'

const HeaderWrapper = styled.div`
display: flex;
Expand Down Expand Up @@ -43,8 +41,7 @@ const SelectBoxCoin = styled(SelectBox)`
}
`

const renderItem = (props) => {
const { text, value } = props
const renderItem = ({ text, value }) => {
const coinValue = value || 'BTC'
return (
<HeaderWrapper>
Expand All @@ -56,8 +53,7 @@ const renderItem = (props) => {
)
}

const renderDisplay = (props, children) => {
const { value } = props
const renderDisplay = ({ value }, children) => {
const coinValue = value || 'BTC'
const e2eTag = `${coinValue}CurrencyOption`

Expand All @@ -71,24 +67,27 @@ const renderDisplay = (props, children) => {
)
}

const COINS = [
{ text: 'Bitcoin', value: 'BTC' },
{ text: 'Ether', value: 'ETH' },
{ text: 'Bitcoin Cash', value: 'BCH' },
{ text: 'Stellar', value: 'XLM' }
]

class SelectBoxCoinPriceChart extends React.PureComponent {
render() {
const { coins, ...rest } = this.props
const elements = [{ group: '', items: coins }]
const elements = [{ group: '', items: COINS }]

return (
<SelectBoxCoin
elements={elements}
templateDisplay={renderDisplay}
templateItem={renderItem}
{...rest}
coins={COINS}
{...this.props}
/>
)
}
}

const mapStateToProps = (state, ownProps) => ({
coins: getCoins(state, ownProps)
})

export default connect(mapStateToProps)(SelectBoxCoinPriceChart)
export default SelectBoxCoinPriceChart

This file was deleted.

0 comments on commit d34dedc

Please sign in to comment.