mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-14 21:10:25 +01:00
46 lines
978 B
JavaScript
46 lines
978 B
JavaScript
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { getFiat } from './utils'
|
|
import styles from './Conversion.module.scss'
|
|
|
|
export default class Conversion extends PureComponent {
|
|
static propTypes = {
|
|
amount: PropTypes.string.isRequired
|
|
}
|
|
|
|
state = {
|
|
euro: '0.00',
|
|
dollar: '0.00'
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.getFiatResponse()
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
const { amount } = this.state
|
|
if (amount !== prevProps.amount) {
|
|
this.getFiatResponse()
|
|
}
|
|
}
|
|
|
|
async getFiatResponse() {
|
|
const { dollar, euro } = await getFiat(this.props.amount)
|
|
this.setState({
|
|
euro: euro,
|
|
dollar: dollar
|
|
})
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div className={styles.conversion}>
|
|
<span>
|
|
{this.state.dollar !== '0.00' && `= $ ${this.state.dollar}`}
|
|
</span>
|
|
<span>{this.state.euro !== '0.00' && `= € ${this.state.euro}`}</span>
|
|
</div>
|
|
)
|
|
}
|
|
}
|