feat: referal checker
This commit is contained in:
parent
4bbeb66ea6
commit
0c0e321b05
|
@ -45,6 +45,7 @@ class RegisterPage extends React.Component {
|
||||||
errors: {
|
errors: {
|
||||||
email_exists: '',
|
email_exists: '',
|
||||||
phone_exists: '',
|
phone_exists: '',
|
||||||
|
referal_not_found: '',
|
||||||
},
|
},
|
||||||
|
|
||||||
// form
|
// form
|
||||||
|
@ -209,8 +210,16 @@ class RegisterPage extends React.Component {
|
||||||
phone_exists: 'Nomer handphone sudah terdaftar'
|
phone_exists: 'Nomer handphone sudah terdaftar'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
} else if (err.message.toLowerCase().includes('referal')) {
|
||||||
|
this.setState({
|
||||||
|
errors: {
|
||||||
|
...this.state.errors,
|
||||||
|
referal_not_found: 'Kode Referal Salah - Silahkan Hubungi Petugas BTN'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
message.error(err.message);
|
||||||
}
|
}
|
||||||
// message.error(err.message);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
@ -576,7 +585,8 @@ class RegisterPage extends React.Component {
|
||||||
margin="normal"
|
margin="normal"
|
||||||
type={"password"}
|
type={"password"}
|
||||||
fullWidth
|
fullWidth
|
||||||
helperText={"Hubungi petugas untuk mendapatkan hadiah"}
|
error={!!this.state.errors.referal_not_found}
|
||||||
|
helperText={this.state.errors.referal_not_found || 'Hubungi petugas untuk mendapatkan hadiah'}
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
/>
|
/>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user