Skip to content

Commit dd64a00

Browse files
committed
ui changes
1 parent 20879d6 commit dd64a00

File tree

2 files changed

+53
-38
lines changed

2 files changed

+53
-38
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "material-ui-phone-input",
33
"version": "1.0.0",
44
"description": "",
5-
"main": "index.js",
5+
"main": "build/index.js",
66
"types": "build/index.d.ts",
77
"scripts": {
88
"build": "rm -rf build && npm run compile",
@@ -11,7 +11,7 @@
1111
"compile-watch": "tsc -w -p tsconfig.prod.json",
1212
"test": "mocha '{test,xe2e}/**/*.ts*' --require=ts-node/register --require mocha-clean",
1313
"bundle-watch": "webpack-dev-server --open",
14-
"publish-local": "npm publish --@revdesk:registry=http://localhost:4873 --force",
14+
"publish-local": "npm publish --registry=http://localhost:4873 --force",
1515
"lint": "tslint '{src,test}/**/*.ts*'",
1616
"bundle": "webpack --config webpack.config.prod.js",
1717
"bundle-dev": "webpack",

src/index.tsx

+51-36
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import * as React from "react"
2-
import * as ReactDOM from "react-dom"
32
import TextField from "@material-ui/core/TextField/TextField"
43
import InputAdornment from "@material-ui/core/InputAdornment/InputAdornment"
54
import Button from "@material-ui/core/Button/Button"
@@ -8,11 +7,14 @@ import {AsYouType} from "libphonenumber-js"
87
import Input from "@material-ui/core/Input/Input"
98
import WorldIcon from "@material-ui/icons/Language"
109
import ArrowIcon from "@material-ui/icons/ArrowDropDown"
11-
import Popover from "@material-ui/core/Popover/Popover"
1210
import * as _ from "lodash"
1311
import MenuList from "@material-ui/core/MenuList/MenuList"
1412
import Icon from "@material-ui/core/Icon/Icon"
1513
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";
1618

1719
const styles = {
1820
worldIcon: {
@@ -26,13 +28,27 @@ const styles = {
2628
},
2729
popover: {
2830
maxHeight: "14em",
29-
paddingTop: 0
31+
},
32+
list: {
33+
overflow: "auto",
34+
maxHeight: "14em",
35+
},
36+
popper: {
37+
zIndex: 999
3038
}
3139
}
3240

3341
const lookup = require('country-data').lookup
3442

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> {
3652

3753
getCountries = () => {
3854
const countries = lookup.countries({status: "assigned"})
@@ -51,6 +67,7 @@ class PhoneInput extends React.Component {
5167
} as any;
5268

5369
_onChange = (e: any) => {
70+
const {phoneValueOnChange, countryValueOnChange} = this.props
5471
const asyouType = new AsYouType()
5572
const newphone = asyouType.input(e.target.value)
5673
const CC = asyouType.country
@@ -66,6 +83,8 @@ class PhoneInput extends React.Component {
6683
countryCode: CC ? CC : "",
6784
phoneNoPrefix: national
6885
})
86+
phoneValueOnChange(national)
87+
countryValueOnChange(CC ? CC : "")
6988
}
7089

7190
handleClick = (event: any) => {
@@ -102,18 +121,19 @@ class PhoneInput extends React.Component {
102121
}
103122

104123
render() {
124+
const {error, helperText} = this.props;
105125
const {anchorEl, search, allCountries} = this.state;
106-
console.log("countryCode ", this.state.countryCode)
107-
console.log("phoneNoPrefix", this.state.phoneNoPrefix)
108126
return <Grid container direction={"column"}>
109-
110127
<Grid item>
111128
<TextField
112-
id={"PhoneInput"}
129+
id={"phone-input"}
113130
onChange={this._onChange}
114-
label={"Phone Input"}
131+
label={"Phone Number"}
132+
fullWidth={true}
115133
value={this.state.phone}
116-
style={{paddingBottom: 0, width: "420px"}}
134+
style={{paddingBottom: 0}}
135+
error={error}
136+
helperText={helperText}
117137
InputProps={{
118138
startAdornment:
119139
<InputAdornment position="start" style={{marginRight: 0}}>
@@ -131,33 +151,28 @@ class PhoneInput extends React.Component {
131151
</Grid>
132152

133153
<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>
156175
</Grid>
157-
158176
</Grid>
159177
}
160178
}
161-
162-
const rootElement = document.getElementById("root");
163-
ReactDOM.render(<PhoneInput/>, rootElement);

0 commit comments

Comments
 (0)