该组件从其父组件获取两个道具(分别是加密和加密)。
我正在启动一个状态属性selectedCrypto
,它负责显示第一个输入的值this.props.crypto
。
这个想法是,当用户单击列表中的一个密码时,它应该使用所选密码的名称呈现输入,但这不会发生。道具收到很好。我可以在组件上 console.log 它显示当前的加密,但由于某种原因,组件的状态在第一次渲染时没有得到它。
转换器组件:
import React, {Component} from 'react';
import Select from 'react-select';
import sortBy from 'sort-by';
import numeral from 'numeral';
import styles from '../../style/css/select_style.css';
class Conversor extends Component {
constructor(props){
super(props);
this.state = {
selectedCrypto: props.crypto || {},
cryptoToConvert: {name: 'USD'},
amount: 0,
result: 0
}
}
updateValue (newValue) {
let result = this.conversorFunc(this.state.amount, newValue, this.state.cryptoToConvert);
this.setState({
selectedCrypto: newValue,
result
});
}
updateValue2(newValue){
let result = this.conversorFunc(this.state.amount, this.state.selectedCrypto, newValue);
this.setState({
cryptoToConvert: newValue,
result
});
}
converterHandler(event){
let inputCrypto = this.state.selectedCrypto;
let ouputCrypto = this.state.cryptoToConvert;
let result = this.conversorFunc(event.target.value, inputCrypto, ouputCrypto);
this.setState({result, amount: event.target.value});
}
conversorFunc(amount, inputCrypto, ouputCrypto){
let result;
if(ouputCrypto.name == 'USD'){
result = numeral(inputCrypto.price_usd*parseInt(amount)).format('0,0.00');
}else{
result = numeral((inputCrypto.price_usd/ouputCrypto.price_usd)*parseInt(amount)).format('0,0.00');
}
return result;
}
render(){
return(
<div className='container conversor-container'>
{console.log(this.state.selectedCrypto)}
<h4>Currency Converter</h4>
<div className='input-container'>
<input onKeyUp={this.converterHandler.bind(this)} placeholder='Enter Amount To Convert' className='amount form-control' type="text"/>
<div className='selectComp-div'>
<Select
name="crypto-select"
value={this.state.selectedCrypto}
onBlurResetsInput={false}
onSelectResetsInput={false}
clearable={false}
onChange={this.updateValue.bind(this)}
searchable={true}
options={this.props.cryptos}
labelKey='name'
valueKey='name'
/>
</div>
<span>to</span>
<div className='selectComp-div'>
<Select
name="crypto-select"
value={this.state.cryptoToConvert}
clearable={false}
onChange={this.updateValue2.bind(this)}
searchable={true}
options={this.props.cryptos}
labelKey='name'
valueKey='name'
/>
</div>
<div className='result-div'>
{this.state.amount}{this.state.selectedCrypto.name}={this.state.result}{this.state.cryptoToConvert.name}
</div>
</div>
</div>
);
}
}
export default Conversor;