React 封装Input

前端之家收集整理的这篇文章主要介绍了React 封装Input前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

需要的第三方库:react | prop-types | classnames | 等等
两个页面 Input.js | input.less
Input.js

  1. import React,{Component} from 'react';
  2. import {PropTypes} from 'prop-types';
  3. import classNames from 'classnames';
  4. import './input.less'
  5.  
  6. export default class Input extends Component {
  7. constructor(props){
  8. super(props);
  9. this.state = {
  10. value:props.value
  11. }
  12. }
  13.  
  14. componentWillReceiveProps(props){
  15. if(props.value !== this.props.value){
  16. this.setState({value:props.value})
  17. }
  18. }
  19. handleChange(e){
  20. const { onChange,length } = this.props;
  21. let val = e.target.value
  22. if(val.length > length){
  23. e.target.value = val;
  24. }
  25. this.setState({value:val})
  26. onChange && onChange(e,val)
  27. }
  28.  
  29. render(){
  30. const {prefixCls,style,className,children,type,length,...other} = this.props;
  31. const cls = classNames(className,`${prefixCls}`,{'textarea':type ==='textarea'})
  32. if(type==='textarea') return (
  33. <textarea
  34. className={classNames(cls,`${prefixCls}-inner`)}
  35. {...other}
  36. style={style}
  37. type={type}
  38. onChange={this.handleChange.bind(this)}
  39. >
  40. </textarea>
  41. )
  42.  
  43. return (
  44. <input
  45. {...other}
  46. className={classNames(cls,`${prefixCls}-inner`)}
  47. type={type}
  48. style={style}
  49. onChange={this.handleChange.bind(this)}
  50. />
  51. )
  52. }
  53. }
  54.  
  55. DaNiu.propTypes = {
  56. prefixCls:PropTypes.string,type:PropTypes.string,}
  57.  
  58. DaNiu.defaultProps = {
  59. prefixCls:'d-input',type:"text",}

input.less

  1. .d-input{
  2. position: relative;
  3. }
  4. .d-input-inner{
  5. // iOS 中使用appearance修改输入框样式
  6. appearance: none;
  7. background-color: #fff;
  8. background-image: none;
  9. border-radius: 5px;
  10. border: 1px solid #E8E8E8;
  11. Box-sizing: border-Box;
  12. color: #1f2d3d;
  13. font-size: inherit;
  14. width: 100%;
  15. height: 30px;
  16. line-height: 14px;
  17. outline: 0;
  18. padding: 3px 10px;
  19. display: inline-block;
  20. transition: #0fa120 0.5 ease-in;
  21. &:hover{
  22. border:1px solid #aeaeae;
  23. }
  24. &:focus{
  25. border-color: #0fa120;
  26. Box-shadow: 0 0 0 2px rgba(84,220,103,0.14);
  27. }
  28. &:focus&::placeholder{
  29. color:#d5d5d5;
  30. }
  31. }


组件引用
Index.js

  1. import React,{Component} from 'react';
  2. import './index.less'
  3.  
  4. import Input from './Input'
  5.  
  6.  
  7. export default class Index extends Component{
  8. constructor(props){
  9. super(props);
  10. this.state={
  11. visible:false,loading:true,source:''
  12. }
  13.  
  14. }
  15. onChange(e,value){
  16. console.log('e',value)
  17. value && value === '大牛小伙子' ? this.setState({source:value}) : this.setState({source:''})
  18. }
  19.  
  20.  
  21.  
  22. render(){
  23. return(
  24. <div>
  25. 请输入:大牛小伙子<br/>
  26. <Input style={{width:200,marginTop:10,marginBottom:10}} onChange={this.onChange.bind(this)}/><br/>
  27. <div>{this.state.source}</div>
  28. </div>
  29. )
  30. }
  31. }

猜你在找的React相关文章