-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcolored.js
151 lines (148 loc) · 3.25 KB
/
colored.js
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
import React from 'react';
import { makeStyles } from '@material-ui/core/styles';
import classNames from 'classnames';
import {
InputAdornment,
InputLabel,
MenuItem,
TextField,
} from '@material-ui/core';
/**
*
* @param {*boolean : change the border color} isError
* @param {*string : plaseHolder of input} placeHolder
* @param {*string: ex : text,number,password,email...} type
* @param {*fun: on input change} onChange
* @param {*value of input} value
* @param {*defaultValue of input} defaultValue
* @returns input field with type (type)
*/
const TextInput = ({
isError = false,
placeHolder = 'Enter Your Text',
type = 'text',
iconPosition = 'start',
icon,
onChange = () => {},
value,
defaultValue,
disabled,
style,
select = false,
multiline = false,
options = [],
borderNone,
...props
}) => {
const classes = useStyles();
const inputStyle = classNames([classes.inputContainer], {
[classes.mainBorderColor]: !isError,
[classes.errorBorderColor]: isError,
[classes.disabledField]: disabled,
[classes.borderNone]: borderNone,
});
const menuProps = {
getContentAnchorEl: null,
anchorOrigin: {
vertical: 'bottom',
horizontal: 'left',
},
};
const ICON =
iconPosition === 'start'
? {
startAdornment: (
<InputAdornment position="start">{icon}</InputAdornment>
),
}
: {
endAdornment: (
<InputAdornment position="end">{icon}</InputAdornment>
),
};
return (
<TextField
{...props}
className={inputStyle}
classes={{ root: classes.root }}
onChange={onChange}
placeholder={placeHolder}
type={type}
defaultValue={defaultValue}
disabled={disabled}
value={value}
select={select}
multiline={multiline}
MenuProps={menuProps}
SelectProps={{
MenuProps: {
getContentAnchorEl: null,
anchorOrigin: {
vertical: 'bottom',
horizontal: 'center',
},
transformOrigin: {
vertical: 'top',
horizontal: 'center',
},
},
}}
InputProps={{
...ICON,
disableUnderline: true,
className: classes.textStyle,
style: { ...style },
}}
>
{options?.map((option) => (
<MenuItem
key={option.value}
value={option.value}
style={{ backgroundColor: option.color }}
className={classes.menuItem}
>
{option.label}
</MenuItem>
))}
</TextField>
);
};
export default TextInput;
const useStyles = makeStyles((theme) => ({
root: {},
inputContainer: {
width: '100%',
backgroundColor: theme.palette.grey[50],
borderRadius: theme.borderRadius.borderRadius8px,
border: '0.5px solid #ffffff',
color: theme.palette.common.black,
},
textStyle: {
...theme.typography.textInput,
borderRadius: theme.borderRadius.borderRadius8px,
},
mainBorderColor: {
// borderColor: theme.palette.primary.main,
borderColor: '#7E7E7E29',
},
errorBorderColor: {
borderColor: theme.palette.error.main,
},
disabledField: {
border: 'none',
backgroundColor: theme.palette.background.disabled,
},
borderNone: {
border: 'none',
backgroundColor: 'transparent',
},
menuItem: {
marginBottom: theme.spacing(5),
borderRadius: theme.spacing(35),
marginRight: theme.spacing(25),
textAlign: 'center',
marginLeft: theme.spacing(7),
fontSize: theme.spacing(16),
justifyContent: 'center',
},
}));