forked from reactstrap/reactstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInput.js
More file actions
105 lines (90 loc) · 2.75 KB
/
Copy pathInput.js
File metadata and controls
105 lines (90 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/* eslint react/prefer-stateless-function: 0 */
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { mapToCssModules, deprecated, warnOnce } from './utils';
const propTypes = {
children: PropTypes.node,
type: PropTypes.string,
size: PropTypes.string,
bsSize: PropTypes.string,
state: deprecated(PropTypes.string, 'Please use the props "valid" and "invalid" to indicate the state.'),
valid: PropTypes.bool,
invalid: PropTypes.bool,
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
innerRef: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
static: deprecated(PropTypes.bool, 'Please use the prop "plaintext"'),
plaintext: PropTypes.bool,
addon: PropTypes.bool,
className: PropTypes.string,
cssModule: PropTypes.object,
};
const defaultProps = {
type: 'text',
};
class Input extends React.Component {
render() {
let {
className,
cssModule,
type,
bsSize,
state,
valid,
invalid,
tag,
addon,
static: staticInput,
plaintext,
innerRef,
...attributes
} = this.props;
const checkInput = ['radio', 'checkbox'].indexOf(type) > -1;
const isNotaNumber = new RegExp('\\D', 'g');
const fileInput = type === 'file';
const textareaInput = type === 'textarea';
const selectInput = type === 'select';
let Tag = tag || ((selectInput || textareaInput) ? type : 'input');
let formControlClass = 'form-control';
if (plaintext || staticInput) {
formControlClass = `${formControlClass}-plaintext`;
Tag = tag || 'p';
} else if (fileInput) {
formControlClass = `${formControlClass}-file`;
} else if (checkInput) {
if (addon) {
formControlClass = null;
} else {
formControlClass = 'form-check-input';
}
}
if (state && typeof valid === 'undefined' && typeof invalid === 'undefined') {
if (state === 'danger') {
invalid = true;
} else if (state === 'success') {
valid = true;
}
}
if (attributes.size && isNotaNumber.test(attributes.size)) {
warnOnce('Please use the prop "bsSize" instead of the "size" to bootstrap\'s input sizing.');
bsSize = attributes.size;
delete attributes.size;
}
const classes = mapToCssModules(classNames(
className,
invalid && 'is-invalid',
valid && 'is-valid',
bsSize ? `form-control-${bsSize}` : false,
formControlClass
), cssModule);
if (Tag === 'input' || typeof tag !== 'string') {
attributes.type = type;
}
return (
<Tag {...attributes} ref={innerRef} className={classes} />
);
}
}
Input.propTypes = propTypes;
Input.defaultProps = defaultProps;
export default Input;