Skip to content

Commit

Permalink
Merge pull request #311 from BitPortal/nDeleteIconList
Browse files Browse the repository at this point in the history
add token placeholder
  • Loading branch information
ionush authored Nov 22, 2018
2 parents a6afc10 + 61db90f commit 6725206
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 11 deletions.
20 changes: 15 additions & 5 deletions shared/screens/Market/Overview/MarketList/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import abbreviate from 'number-abbreviate'
import { filterBgColor } from 'utils'
import { ASSET_FRACTION } from 'constants/market'
import messages from 'resources/messages'
import Images from 'resources/images'
import styles from './styles'

@connect(
Expand All @@ -24,14 +25,17 @@ import styles from './styles'
{ withRef: true }
)
class ListItem extends Component {
shouldComponentUpdate(nextProps) {
state = { imageFallback: false }

shouldComponentUpdate(nextProps, nextState) {
return (
nextProps.item.get('price_usd') !== this.props.item.get('price_usd') ||
nextProps.item.get('volume_24h_usd') !== this.props.item.get('volume_24h_usd') ||
nextProps.item.get('market_cap_usd') !== this.props.item.get('market_cap_usd') ||
nextProps.item.get('available_supply') !== this.props.item.get('available_supply') ||
nextProps.item.get('percent_change_1h') !== this.props.item.get('percent_change_1h') ||
nextProps.item.get('percent_change_7d') !== this.props.item.get('percent_change_7d')
nextProps.item.get('percent_change_7d') !== this.props.item.get('percent_change_7d') ||
nextState.imageFallback !== this.state.imageFallback
)
}

Expand All @@ -49,10 +53,16 @@ class ListItem extends Component {
/> */}
<FastImage
style={styles.icon}
source={{
uri: `https://cdn.bitportal.io/tokenicon/32/color/${item.get('symbol')?.toLowerCase()}.png`
}}
source={
this.state.imageFallback
? Images.default_icon
: {
uri: `https://cdn.bitportal.io/tokenicon/32/color/${item.get('symbol')?.toLowerCase()}.png`
}
}
onError={() => this.setState({ imageFallback: true })}
/>
{/* <View style={{ height: 40, width: 40, backgroundColor: 'red' }} /> */}
</View>

<View
Expand Down
20 changes: 14 additions & 6 deletions shared/screens/Market/Overview/TokenPage/TokenCard/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import abbreviate from 'number-abbreviate'
import * as tokenActions from 'actions/token'

import messages from 'resources/messages'
import Images from 'resources/images'
import styles from './styles'

const Tag = props => (
Expand All @@ -30,7 +31,7 @@ const Tag = props => (
@connect(
state => ({
locale: state.intl.get('locale'),
token: state.token.get('data'),
token: state.token.get('data')
// ticker: tokenTickerSelector(state),
}),
dispatch => ({
Expand All @@ -45,6 +46,8 @@ const Tag = props => (
{ withRef: true }
)
export default class TokenCard extends Component {
state = { imageFallback: false }

componentWillUnmount() {
InteractionManager.runAfterInteractions(() => {
this.props.actions.clearToken()
Expand All @@ -62,9 +65,14 @@ export default class TokenCard extends Component {
<View style={styles.titleWrapper}>
<FastImage
style={styles.icon}
source={{
uri: `https://cdn.bitportal.io/tokenicon/128/color/${token.get('symbol')?.toLowerCase()}.png`
}}
source={
this.state.imageFallback
? Images.default_icon
: {
uri: `https://cdn.bitportal.io/tokenicon/128/color/${token.get('symbol')?.toLowerCase()}.png`
}
}
onError={() => this.setState({ imageFallback: true })}
/>

<View
Expand All @@ -78,8 +86,8 @@ export default class TokenCard extends Component {
{token.size === 0
? ticker.get('symbol')
: locale === 'zh'
? token.get('name_zh') && token.get('name_zh').trim()
: token.get('name_en') && token.get('name_en')}
? token.get('name_zh') && token.get('name_zh').trim()
: token.get('name_en') && token.get('name_en')}
</Text>
</View>
<View
Expand Down

0 comments on commit 6725206

Please sign in to comment.