549 lines
26 KiB
JavaScript
549 lines
26 KiB
JavaScript
import React from 'react';
|
|
import withStyles from "@material-ui/core/styles/withStyles";
|
|
import { styles } from './styles';
|
|
import Grid from '@material-ui/core/Grid';
|
|
import Paper from '@material-ui/core/Paper';
|
|
import Typography from '@material-ui/core/Typography';
|
|
import TextField from '@material-ui/core/TextField';
|
|
import Visibility from '@material-ui/icons/Visibility';
|
|
import VisibilityOff from '@material-ui/icons/VisibilityOff';
|
|
import Button from '@material-ui/core/Button';
|
|
import Hidden from '@material-ui/core/Hidden';
|
|
import InputAdornment from '@material-ui/core/InputAdornment';
|
|
import IconButton from '@material-ui/core/IconButton';
|
|
import CircularProgress from '@material-ui/core/CircularProgress';
|
|
import Snackbar from '@material-ui/core/Snackbar';
|
|
|
|
import { Link } from 'react-router-dom'
|
|
import { inject, observer } from "mobx-react";
|
|
import schema from 'async-validator'
|
|
import { startCase } from 'lodash';
|
|
import { Upload, Icon, message } from 'antd';
|
|
|
|
import AutoComplete from './../../components/AutoComplete';
|
|
import {appConfig} from "../../config/app";
|
|
|
|
// const province = require("./../../../../assets/data/province.json");
|
|
// const city = require("./../../../../assets/data/city.json");
|
|
// const district = require("./../../../../assets/data/district.json");
|
|
// const subdistrict = require("./../../../../assets/data/subdistrict.json");
|
|
|
|
@inject('appstate')
|
|
@observer
|
|
class RegisterPage extends React.Component {
|
|
state = {
|
|
showPassword: false,
|
|
showConfirmPassword: false,
|
|
openDialog: false,
|
|
isLoading: false,
|
|
|
|
fileList_ktp: [],
|
|
fileList_photo: [],
|
|
|
|
query: {},
|
|
|
|
// form
|
|
confirmPassword: "",
|
|
phone_number: "",
|
|
email: "",
|
|
password: "",
|
|
full_name: "",
|
|
no_ktp: '',
|
|
upload_ktp: '',
|
|
upload_photo: '',
|
|
address: '',
|
|
province: '',
|
|
city: '',
|
|
district: '',
|
|
sub_district: '',
|
|
zip_code: '',
|
|
};
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.authStore = props.appstate.auth;
|
|
this.http = props.appstate.http;
|
|
this.place = props.appstate.places;
|
|
}
|
|
|
|
componentDidMount() {
|
|
let {location:{search}} = this.props;
|
|
search = search.substr(1);
|
|
|
|
const query = search.split("&")
|
|
.map(q => q.split('='))
|
|
.reduce((all, q) => {
|
|
all[q[0]] = q[1];
|
|
return all;
|
|
}, {});
|
|
|
|
this.setState({query});
|
|
|
|
this.place.getAllProvince();
|
|
}
|
|
|
|
onChangeProvince = (value) => {
|
|
this.setState({
|
|
province: value
|
|
});
|
|
this.place.getCitiesByProvince(value);
|
|
};
|
|
|
|
onChangeCity = (value) => {
|
|
this.setState({
|
|
city: value
|
|
});
|
|
this.place.getDistrictByCity(value);
|
|
};
|
|
|
|
onChangeDistrict = (value) => {
|
|
this.setState({
|
|
district: value
|
|
});
|
|
this.place.getSubdistrictByDistrict(value);
|
|
};
|
|
|
|
onChangeSubdistrict = (value) => {
|
|
this.setState({
|
|
subdistrict: value
|
|
});
|
|
};
|
|
|
|
handleChange = name => event => {
|
|
this.setState({
|
|
[name]: event.target.value,
|
|
});
|
|
};
|
|
|
|
viewPassword = () => {
|
|
this.setState({
|
|
showPassword: !this.state.showPassword
|
|
})
|
|
};
|
|
|
|
viewConfirmPassword = () => {
|
|
this.setState({
|
|
showConfirmPassword: !this.state.showConfirmPassword
|
|
})
|
|
};
|
|
|
|
register = () => {
|
|
|
|
if (this.state.upload_photo === '') {
|
|
return message.warning("please upload photo");
|
|
}
|
|
|
|
if (this.state.upload_ktp === '') {
|
|
return message.warning("please upload ktp");
|
|
}
|
|
|
|
this.setState({ isLoading: true });
|
|
let data = {
|
|
fullname: this.state.full_name,
|
|
email: this.state.email,
|
|
phone_number: this.state.phone_number,
|
|
password: this.state.password,
|
|
nric_number: this.state.no_ktp,
|
|
nric_photo_path: this.state.upload_ktp,
|
|
photo: this.state.upload_photo,
|
|
address: this.state.address,
|
|
province_id: this.state.province,
|
|
city_id: this.state.city,
|
|
district_id: this.state.district,
|
|
subdistrict_id: this.state.subdistrict,
|
|
zip_code: this.state.zip_code,
|
|
referal: this.state.query.referal,
|
|
additional_data: {}
|
|
};
|
|
this.authStore.register(data).then(res => {
|
|
setTimeout(() => {
|
|
this.setState({ isLoading: false });
|
|
message.success("Please check your email to confirm your account");
|
|
}, 1000);
|
|
}).catch(err => {
|
|
this.setState({ isLoading: false });
|
|
|
|
if (err.type === 'BodyValidationError') {
|
|
message.error(err.detail[0].message);
|
|
} else {
|
|
message.error(err.message);
|
|
}
|
|
});
|
|
};
|
|
|
|
handleChangeUploadKtp = (info) => {
|
|
if (info.file.status === 'uploading') {
|
|
this.setState({ loading: true });
|
|
return;
|
|
}
|
|
if (info.file.status === 'done') {
|
|
// Get this url from response in real world.
|
|
getBase64(info.file.originFileObj, imageUrl => this.setState({
|
|
upload_ktp,
|
|
loading: false,
|
|
}));
|
|
}
|
|
};
|
|
|
|
handleChangeUploadPhoto = (info) => {
|
|
if (info.file.status === 'uploading') {
|
|
this.setState({ loading: true });
|
|
return;
|
|
}
|
|
if (info.file.status === 'done') {
|
|
// Get this url from response in real world.
|
|
getBase64(info.file.originFileObj, imageUrl => this.setState({
|
|
upload_photo,
|
|
loading: false,
|
|
}));
|
|
}
|
|
};
|
|
|
|
uploadOnChange = (key, info) => {
|
|
let fileList = info.fileList;
|
|
|
|
this.setState({
|
|
[`fileList_${key}`]: fileList
|
|
})
|
|
};
|
|
|
|
createUploadProps = (key) => {
|
|
return {
|
|
name: 'file',
|
|
multiple: false,
|
|
action: appConfig.apiUrl + 'upload',
|
|
customRequest: ({file, onProgress}) => {
|
|
this.setState({
|
|
uploading: true
|
|
});
|
|
return this.http.upload(file)
|
|
.then(res => {
|
|
this.setState({
|
|
[`upload_${key}`]: appConfig.apiUrl + res.path.slice(1,res.path.length)
|
|
});
|
|
return res;
|
|
})
|
|
.then(res => {
|
|
message.success(`${file.name} file uploaded successfully.`);
|
|
|
|
const fileList = this.state[`fileList_${key}`];
|
|
|
|
console.log(key, fileList, this.state);
|
|
|
|
const selectedIndex = fileList.findIndex(f => f.name === file.name);
|
|
|
|
fileList[selectedIndex].status = "done";
|
|
fileList[selectedIndex].path = res.path;
|
|
|
|
// form.setFieldsValue({path: res.path});
|
|
|
|
this.setState({
|
|
uploading: false,
|
|
// fileList: []
|
|
[`fileList_${key}`]: [fileList[selectedIndex]]
|
|
});
|
|
});
|
|
},
|
|
fileList: this.state[`fileList_${key}`],
|
|
onChange: (info) => this.uploadOnChange(key, info),
|
|
onRemove: file => true
|
|
};
|
|
};
|
|
|
|
render() {
|
|
const { classes } = this.props;
|
|
|
|
const uploadButtonKtp = (
|
|
<div>
|
|
<Icon type={this.state.loading ? 'loading' : 'plus'} />
|
|
<div className="ant-upload-text">Upload KTP</div>
|
|
</div>
|
|
);
|
|
|
|
const uploadButtonPhoto = (
|
|
<div>
|
|
<Icon type={this.state.loading ? 'loading' : 'plus'} />
|
|
<div className="ant-upload-text">Upload Photo</div>
|
|
</div>
|
|
);
|
|
|
|
const upload_ktp = this.state.upload_ktp;
|
|
const upload_photo = this.state.upload_photo;
|
|
|
|
return (
|
|
<div className={classes.container}>
|
|
{/*<AlertSuccess open={appStore.global_ui.openSuccess} onClose={()=>appStore.global_ui.closeAlertSuccess()}/>*/}
|
|
|
|
<Grid container spacing={0} className={classes.gridContainer}>
|
|
<Grid item cols={12} className={classes.logoContainer}>
|
|
<img src={require('../../../../assets/images/logo_new.png')} className={classes.logo} />
|
|
</Grid>
|
|
<Grid item xs={12} sm={12} md={10} lg={10} className={classes.registerContainer} style={{
|
|
alignSelf: 'center'
|
|
}}>
|
|
<Grid container spacing={24} className={classes.registerPaper}>
|
|
<Hidden smDown>
|
|
<Grid item xs={5}>
|
|
<img src={require('../../../../assets/images/register_image_2.png')} width={"80%"} />
|
|
<Typography style={{ color: '#FFF' }} variant={"h6"}>
|
|
Redeem point, Get Your Item!
|
|
</Typography>
|
|
<Typography style={{ color: '#FFF' }} variant={"subtitle2"}>
|
|
Get promo and benefits with BTN
|
|
</Typography>
|
|
</Grid>
|
|
</Hidden>
|
|
<Grid item xs={12} sm={12} md={7} style={{ paddingLeft: 50, paddingRight: 50 }}>
|
|
<Paper className={classes.formRegister}>
|
|
<Typography variant="h6" gutterBottom>
|
|
Register Now
|
|
</Typography>
|
|
<Typography variant="subtitle2" gutterBottom>
|
|
Already have an account? <Link to={"/login"} replace>Back to Login</Link>
|
|
</Typography>
|
|
<div style={{
|
|
display: 'flex',
|
|
flexDirection: 'row'
|
|
}}>
|
|
<Grid container spacing={16}>
|
|
<Grid item xs={12} sm={12} md={6} style={{ paddingLeft: 5, paddingRight: 5 }}>
|
|
<TextField
|
|
id="name"
|
|
label="Full name"
|
|
value={this.state.full_name}
|
|
onChange={this.handleChange('full_name')}
|
|
margin="normal"
|
|
type={"text"}
|
|
variant="outlined"
|
|
fullWidth
|
|
/>
|
|
</Grid>
|
|
<Grid item xs={12} sm={12} md={6} style={{ paddingLeft: 5, paddingRight: 5 }}>
|
|
<TextField
|
|
id="phone"
|
|
label="Phone Number"
|
|
value={this.state.phone_number}
|
|
onChange={this.handleChange('phone_number')}
|
|
margin="normal"
|
|
type={"number"}
|
|
variant="outlined"
|
|
fullWidth
|
|
/>
|
|
</Grid>
|
|
|
|
<Grid item xs={12} sm={12} md={6} style={{ paddingLeft: 5, paddingRight: 5 }}>
|
|
<TextField
|
|
id="email"
|
|
label="Email"
|
|
value={this.state.email}
|
|
onChange={this.handleChange('email')}
|
|
margin="normal"
|
|
variant="outlined"
|
|
fullWidth
|
|
/>
|
|
</Grid>
|
|
<Grid item xs={12} sm={12} md={6} style={{ paddingLeft: 5, paddingRight: 5 }}>
|
|
<TextField
|
|
id="ktp"
|
|
label="Nomor KTP"
|
|
value={this.state.no_ktp}
|
|
onChange={this.handleChange('no_ktp')}
|
|
margin="normal"
|
|
type={"number"}
|
|
variant="outlined"
|
|
fullWidth
|
|
/>
|
|
</Grid>
|
|
|
|
<Grid item xs={12} sm={12} md={6} style={{ paddingLeft: 5, paddingRight: 5,paddingTop:16 }}>
|
|
<Upload
|
|
name="avatar"
|
|
listType="picture-card"
|
|
className="avatar-uploader"
|
|
showUploadList={false}
|
|
{...this.createUploadProps("ktp")}
|
|
>
|
|
{upload_ktp ? <img src={upload_ktp} alt="avatar" style={{
|
|
width: 104,
|
|
height: 104
|
|
}}/> : uploadButtonKtp}
|
|
</Upload>
|
|
</Grid>
|
|
<Grid item xs={12} sm={12} md={6} style={{ paddingLeft: 5, paddingRight: 5, paddingTop:16 }}>
|
|
<Upload
|
|
style={{ marginTop: 16, marginBottom: 8 }}
|
|
name="avatar"
|
|
listType="picture-card"
|
|
className="avatar-uploader"
|
|
showUploadList={false}
|
|
{...this.createUploadProps("photo")}
|
|
>
|
|
{upload_photo ? <img src={upload_photo} alt="avatar" style={{
|
|
width: 104,
|
|
height: 104
|
|
}}/> : uploadButtonPhoto}
|
|
</Upload>
|
|
</Grid>
|
|
|
|
<Grid item xs={12} sm={12} md={6} style={{ paddingLeft: 5, paddingRight: 5 }}>
|
|
<TextField
|
|
id="address"
|
|
label="Address"
|
|
value={this.state.address}
|
|
onChange={this.handleChange('address')}
|
|
margin="normal"
|
|
variant="outlined"
|
|
fullWidth
|
|
/>
|
|
</Grid>
|
|
<Grid item xs={12} sm={12} md={6} style={{ paddingLeft: 5, paddingRight: 5 }}>
|
|
<AutoComplete
|
|
placeholder={"Province"}
|
|
onChange={({value}) => this.onChangeProvince(value)}
|
|
suggestions={this.place.provinces.map(p => {
|
|
|
|
return {
|
|
label: p.name,
|
|
value: p.id
|
|
}
|
|
})}/>
|
|
</Grid>
|
|
|
|
<Grid item xs={12} sm={12} md={6} style={{ paddingLeft: 5, paddingRight: 5 }}>
|
|
<AutoComplete
|
|
placeholder={"City"}
|
|
onChange={({value}) => this.onChangeCity(value)}
|
|
suggestions={this.place.cities.map(p => {
|
|
|
|
return {
|
|
label: p.name,
|
|
value: p.id
|
|
}
|
|
})}/>
|
|
</Grid>
|
|
<Grid item xs={12} sm={12} md={6} style={{ paddingLeft: 5, paddingRight: 5 }}>
|
|
<AutoComplete
|
|
placeholder={"District"}
|
|
onChange={({value}) => this.onChangeDistrict(value)}
|
|
suggestions={this.place.districts.map(p => {
|
|
|
|
return {
|
|
label: p.name,
|
|
value: p.id
|
|
}
|
|
})}/>
|
|
</Grid>
|
|
|
|
<Grid item xs={12} sm={12} md={6} style={{ paddingLeft: 5, paddingRight: 5 }}>
|
|
<AutoComplete
|
|
placeholder={"Subdistrict"}
|
|
onChange={({value}) => this.onChangeSubdistrict(value)}
|
|
suggestions={this.place.subdistricts.map(p => {
|
|
|
|
return {
|
|
label: p.name,
|
|
value: p.id
|
|
}
|
|
})}/>
|
|
</Grid>
|
|
<Grid item xs={12} sm={12} md={6} style={{ paddingLeft: 5, paddingRight: 5 }}>
|
|
<TextField
|
|
id="zip_code"
|
|
label="Zip Code"
|
|
value={this.state.zip_code}
|
|
onChange={this.handleChange('zip_code')}
|
|
margin="normal"
|
|
variant="outlined"
|
|
fullWidth
|
|
/>
|
|
</Grid>
|
|
|
|
<Grid item xs={12} sm={12} md={6} style={{ paddingLeft: 5, paddingRight: 5 }}>
|
|
<TextField
|
|
id="password"
|
|
label="Password"
|
|
value={this.state.password}
|
|
onChange={this.handleChange('password')}
|
|
margin="normal"
|
|
type={this.state.showPassword ? 'text' : 'password'}
|
|
variant="outlined"
|
|
fullWidth
|
|
InputProps={{
|
|
endAdornment: (
|
|
<InputAdornment position="end">
|
|
<IconButton
|
|
aria-label="Toggle password visibility"
|
|
onClick={this.viewPassword}
|
|
>
|
|
{this.state.showPassword ? <VisibilityOff /> : <Visibility />}
|
|
</IconButton>
|
|
</InputAdornment>
|
|
),
|
|
}}
|
|
/>
|
|
</Grid>
|
|
<Grid item xs={12} sm={12} md={6} style={{ paddingLeft: 5, paddingRight: 5 }}>
|
|
<TextField
|
|
id="confirmPassword"
|
|
label="Re-type Password"
|
|
value={this.state.confirmPassword}
|
|
onChange={this.handleChange('confirmPassword')}
|
|
margin="normal"
|
|
type={this.state.showConfirmPassword ? 'text' : 'password'}
|
|
fullWidth
|
|
variant="outlined"
|
|
InputProps={{
|
|
endAdornment: (
|
|
<InputAdornment position="end">
|
|
<IconButton
|
|
aria-label="Toggle password visibility"
|
|
onClick={this.viewConfirmPassword}
|
|
>
|
|
{this.state.showConfirmPassword ? <VisibilityOff style={{ color: this.state.password == '' ? this.state.confirmPassword == '' : this.state.password != this.state.confirmPassword ? 'red' : 'green' }} /> : <Visibility style={{ color: this.state.password == '' ? this.state.confirmPassword == '' : this.state.password != this.state.confirmPassword ? 'red' : 'green' }} />}
|
|
</IconButton>
|
|
</InputAdornment>
|
|
),
|
|
}}
|
|
/>
|
|
</Grid>
|
|
</Grid>
|
|
</div>
|
|
|
|
<Grid item xs={12} sm={12} md={12}>
|
|
<TextField
|
|
label="Referal"
|
|
value={this.state.query.referal}
|
|
onChange={event => {
|
|
this.setState({
|
|
query: {
|
|
...this.state.query,
|
|
referal: event.target.value
|
|
}
|
|
})
|
|
}}
|
|
margin="normal"
|
|
type={"text"}
|
|
fullWidth
|
|
variant="outlined"
|
|
/>
|
|
</Grid>
|
|
|
|
<div style={{ padding: 5, marginTop: 20 }}>
|
|
<Button
|
|
fullWidth
|
|
variant="contained" style={{ backgroundColor: '#ffeb3b' }} onClick={this.register}>
|
|
{this.state.isLoading ? <CircularProgress className={classes.progress} /> : "Sign Up"}
|
|
</Button>
|
|
</div>
|
|
</Paper>
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default withStyles(styles)(RegisterPage);
|