1
1
import * as React from "react"
2
- import * as ReactDOM from "react-dom"
3
2
import TextField from "@material-ui/core/TextField/TextField"
4
3
import InputAdornment from "@material-ui/core/InputAdornment/InputAdornment"
5
4
import Button from "@material-ui/core/Button/Button"
@@ -8,11 +7,14 @@ import {AsYouType} from "libphonenumber-js"
8
7
import Input from "@material-ui/core/Input/Input"
9
8
import WorldIcon from "@material-ui/icons/Language"
10
9
import ArrowIcon from "@material-ui/icons/ArrowDropDown"
11
- import Popover from "@material-ui/core/Popover/Popover"
12
10
import * as _ from "lodash"
13
11
import MenuList from "@material-ui/core/MenuList/MenuList"
14
12
import Icon from "@material-ui/core/Icon/Icon"
15
13
import Grid from "@material-ui/core/Grid/Grid"
14
+ import Paper from "@material-ui/core/Paper/Paper" ;
15
+ import Popper from "@material-ui/core/Popper/Popper" ;
16
+ import ClickAwayListener from "@material-ui/core/ClickAwayListener/ClickAwayListener" ;
17
+ import MenuItem from "@material-ui/core/MenuItem/MenuItem" ;
16
18
17
19
const styles = {
18
20
worldIcon : {
@@ -26,13 +28,27 @@ const styles = {
26
28
} ,
27
29
popover : {
28
30
maxHeight : "14em" ,
29
- paddingTop : 0
31
+ } ,
32
+ list : {
33
+ overflow : "auto" ,
34
+ maxHeight : "14em" ,
35
+ } ,
36
+ popper : {
37
+ zIndex : 999
30
38
}
31
39
}
32
40
33
41
const lookup = require ( 'country-data' ) . lookup
34
42
35
- class PhoneInput extends React . Component {
43
+
44
+ export interface PhoneInputProps {
45
+ phoneValueOnChange : ( a : string ) => void ,
46
+ countryValueOnChange : ( a : string ) => void ,
47
+ error : boolean ,
48
+ helperText : string
49
+ }
50
+
51
+ export default class PhoneInput extends React . Component < PhoneInputProps > {
36
52
37
53
getCountries = ( ) => {
38
54
const countries = lookup . countries ( { status : "assigned" } )
@@ -51,6 +67,7 @@ class PhoneInput extends React.Component {
51
67
} as any ;
52
68
53
69
_onChange = ( e : any ) => {
70
+ const { phoneValueOnChange, countryValueOnChange} = this . props
54
71
const asyouType = new AsYouType ( )
55
72
const newphone = asyouType . input ( e . target . value )
56
73
const CC = asyouType . country
@@ -66,6 +83,8 @@ class PhoneInput extends React.Component {
66
83
countryCode : CC ? CC : "" ,
67
84
phoneNoPrefix : national
68
85
} )
86
+ phoneValueOnChange ( national )
87
+ countryValueOnChange ( CC ? CC : "" )
69
88
}
70
89
71
90
handleClick = ( event : any ) => {
@@ -102,18 +121,19 @@ class PhoneInput extends React.Component {
102
121
}
103
122
104
123
render ( ) {
124
+ const { error, helperText} = this . props ;
105
125
const { anchorEl, search, allCountries} = this . state ;
106
- console . log ( "countryCode " , this . state . countryCode )
107
- console . log ( "phoneNoPrefix" , this . state . phoneNoPrefix )
108
126
return < Grid container direction = { "column" } >
109
-
110
127
< Grid item >
111
128
< TextField
112
- id = { "PhoneInput " }
129
+ id = { "phone-input " }
113
130
onChange = { this . _onChange }
114
- label = { "Phone Input" }
131
+ label = { "Phone Number" }
132
+ fullWidth = { true }
115
133
value = { this . state . phone }
116
- style = { { paddingBottom : 0 , width : "420px" } }
134
+ style = { { paddingBottom : 0 } }
135
+ error = { error }
136
+ helperText = { helperText }
117
137
InputProps = { {
118
138
startAdornment :
119
139
< InputAdornment position = "start" style = { { marginRight : 0 } } >
@@ -131,33 +151,28 @@ class PhoneInput extends React.Component {
131
151
</ Grid >
132
152
133
153
< Grid item >
134
- < Popover open = { Boolean ( anchorEl ) }
135
- style = { styles . popover }
136
- onClose = { this . handleClose }
137
- anchorOrigin = { {
138
- vertical : "bottom" ,
139
- horizontal : "left" ,
140
- } }
141
- >
142
- < Input onChange = { this . handleSearch } style = { styles . hiddenInput } autoFocus disableUnderline
143
- inputProps = { { padding : 0 } } />
144
- < MenuList style = { { padding : 0 } } >
145
- { allCountries . map ( ( x : any ) =>
146
- < CountryMenuItem
147
- key = { x . name }
148
- onClick = { event => this . handleClickItem ( event , x . countryCallingCodes [ 0 ] , x . emoji , x . alpha2 ) }
149
- flagSVG = { x . emoji }
150
- name = { x . name }
151
- countryCode = { x . countryCallingCodes }
152
- search = { search }
153
- /> ) }
154
- </ MenuList >
155
- </ Popover >
154
+ < Popper open = { Boolean ( anchorEl ) } anchorEl = { anchorEl } placement = { "bottom-start" } style = { styles . popper } >
155
+ < Paper >
156
+ < ClickAwayListener onClickAway = { this . handleClose } >
157
+ < MenuList style = { styles . list } >
158
+ < MenuItem style = { styles . hiddenInput } >
159
+ < Input onChange = { this . handleSearch } autoFocus disableUnderline
160
+ inputProps = { { padding : 0 } } />
161
+ </ MenuItem >
162
+ { allCountries . map ( ( x : any ) =>
163
+ < CountryMenuItem
164
+ key = { x . name }
165
+ onClick = { event => this . handleClickItem ( event , x . countryCallingCodes [ 0 ] , x . emoji , x . alpha2 ) }
166
+ flagSVG = { x . emoji }
167
+ name = { x . name }
168
+ countryCode = { x . countryCallingCodes }
169
+ search = { search }
170
+ /> ) }
171
+ </ MenuList >
172
+ </ ClickAwayListener >
173
+ </ Paper >
174
+ </ Popper >
156
175
</ Grid >
157
-
158
176
</ Grid >
159
177
}
160
178
}
161
-
162
- const rootElement = document . getElementById ( "root" ) ;
163
- ReactDOM . render ( < PhoneInput /> , rootElement ) ;
0 commit comments