Guest User

Untitled

a guest
Dec 16th, 2016
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.81 KB | None | 0 0
  1. class Input extends Component{
  2. constructor(props) {
  3. super(props);
  4. this.state = {
  5. clicked: false,
  6. value: this.props.value,
  7. value1: this.props.value1,
  8. active: null,
  9. enable: this.props.enable == undefined ? true : this.props.enable
  10. };
  11. }
  12.  
  13. render(){
  14. const{unit, unit1, name, name1, even, modal,type} = this.props;
  15. return(
  16. <tr className={"table-row " + (!modal ? even : false)}>
  17. {this.state.clicked ? <NumpadModal value={this.state.active === "input1" ? this.state.value : this.state.value1}
  18. onUpdate={this.handleClick.bind(this)} editValue={this.editValue.bind(this)}/>: false}
  19. {type.map(function(item){
  20. switch(item){
  21. case "name1":
  22. return <td className="table-cell caption"><label key={item} className={'captionLabel'}>{name}</label></td>;
  23. case "name2":
  24. return <td className="table-cell caption"><label key={item} className={'captionLabel2'}>{name1}</label></td>;
  25. case "unit1":
  26. return <td className="table-cell unit"><label key={item} className={'unitLabel'}>{unit}</label></td>;
  27. case "unit2":
  28. return <td className="table-cell unit"><label key={item} className={'unitLabel'}>{unit1}</label></td>;
  29. case "input1":
  30. return <td className="table-cell input"><input key={item} disabled={!this.state.enable} className={this.state.active === item ? 'textInput active' : 'textInput'} onClick={this.handleClick.bind(this,item)}
  31. value={this.state.value} type="text"/></td>;
  32. case "input2":
  33. return <td className="table-cell input"><input key={item} disabled={!this.state.enable} className={this.state.active === item ? 'textInput active' : 'textInput'} onClick={this.handleClick.bind(this,item)}
  34. value={this.state.value1} type="text"/></td>;
  35. case "box":
  36. return <td className="table-cell box"><input key={item} className={'boxInput'} onChange={this.toggleChange.bind(this)} checked={this.state.enable} type="checkbox" ref="box"/></td>;
  37. default:
  38. break;
  39. }
  40. },this)}
  41. </tr>
  42. )
  43. }
  44.  
  45. componentWillReceiveProps (nextProps){
  46. this.setState({
  47. value: nextProps.value,
  48. value1: nextProps.value1,
  49. enable: nextProps.enable == undefined ? true : nextProps.enable
  50. });
  51. }
  52.  
  53. handleClick(active){
  54. this.setState({
  55. clicked: !this.state.clicked,
  56. active: active
  57. })
  58. }
  59.  
  60. toggleChange(){
  61. this.setState({
  62. enable: !this.state.enable
  63. });
  64. this.props.changeValue(null,null,!this.state.enable,this.props.inputKey);
  65. }
  66.  
  67. editValue(value) {
  68. if(this.state.active === "input1") {
  69. this.setState({
  70. value: value,
  71. clicked: false,
  72. active: false
  73. });
  74. this.props.changeValue(this.props.name,value,this.state.enable,this.props.inputKey);
  75. }
  76. else {
  77. this.setState({
  78. value1: value,
  79. clicked: false,
  80. active: false
  81. });
  82. this.props.changeValue(this.props.name1,value,this.state.enable,this.props.inputKey);
  83. }
  84. }
  85. }
  86.  
  87. export default Input;
Add Comment
Please, Sign In to add comment