You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
139 lines
3.7 KiB
139 lines
3.7 KiB
package react.user;
|
|
import react.ReactComponent;
|
|
import react.ReactMacro.jsx;
|
|
import Common;
|
|
|
|
typedef LoginBoxProps = {
|
|
redirectUrl:String,
|
|
message:String,
|
|
?phoneRequired:Bool
|
|
}
|
|
|
|
typedef LoginBoxState = {
|
|
email:String,
|
|
password:String,
|
|
error:String
|
|
}
|
|
|
|
/**
|
|
* Login Box
|
|
* @author fbarbut
|
|
*/
|
|
class LoginBox extends react.ReactComponentOfPropsAndState<LoginBoxProps,LoginBoxState>
|
|
{
|
|
|
|
public function new(props:LoginBoxProps)
|
|
{
|
|
if (props.redirectUrl == null) props.redirectUrl = "/";
|
|
if (props.message == "") props.message = null;
|
|
super(props);
|
|
this.state = {email:"", password:"", error:null};
|
|
}
|
|
|
|
function setError(err:String){
|
|
this.setState(cast {error:err});
|
|
}
|
|
|
|
override public function render(){
|
|
|
|
return jsx('<div onKeyPress=$onKeyPress>
|
|
<$Error error="${state.error}" />
|
|
<$Message message="${props.message}" />
|
|
<form action="" method="post" className="form-horizontal">
|
|
<div className="form-group">
|
|
<label htmlFor="email" className="col-sm-4 control-label">Email : </label>
|
|
<div className="col-sm-8">
|
|
<input id="email" className="form-control" type="text" name="email" value="${state.email}" required="1" onChange={onChange}/>
|
|
</div>
|
|
</div>
|
|
<div className="form-group">
|
|
<label htmlFor="password" className="col-sm-4 control-label">Mot de passe : </label>
|
|
<div className="col-sm-8">
|
|
<input id="password" type="password" name="password" value="${state.password}" className="form-control" required="1" onChange={onChange}/>
|
|
</div>
|
|
</div>
|
|
<p className="text-center">
|
|
<a onClick={submit} className="btn btn-primary btn-lg" ><span className="glyphicon glyphicon-user"></span> S\'identifier</a>
|
|
<br/>
|
|
<br/>
|
|
<a href="/user/forgottenPassword">Mot de passe oublié ?</a>
|
|
</p>
|
|
</form>
|
|
<!--
|
|
<hr/>
|
|
<p className="text-center">
|
|
<b>C\'est votre première visite sur Cagette.net ?</b>
|
|
<a onClick={registerBox} className="btn btn-default"><span className="glyphicon glyphicon-chevron-right"></span> S\'inscrire</a>
|
|
</p>
|
|
-->
|
|
</div>');
|
|
}
|
|
|
|
/**
|
|
* @doc https://facebook.github.io/react/docs/forms.html
|
|
*/
|
|
function onChange(e:js.html.Event){
|
|
e.preventDefault();
|
|
|
|
var name :String = untyped e.target.name;
|
|
var value :String = untyped /*(e.target.value == "") ? null :*/ e.target.value;
|
|
Reflect.setField(state, name, value);
|
|
this.setState(this.state);
|
|
}
|
|
|
|
/**
|
|
* displays a registerBox
|
|
*/
|
|
public function registerBox(){
|
|
|
|
var body = js.Browser.document.querySelector('#myModal .modal-body');
|
|
ReactDOM.unmountComponentAtNode( body );
|
|
|
|
js.Browser.document.querySelector("#myModal .modal-title").innerHTML = "Inscription";
|
|
ReactDOM.render(jsx('<$RegisterBox redirectUrl="${props.redirectUrl}" phoneRequired="${props.phoneRequired}"/>'), body );
|
|
}
|
|
|
|
public function submit(?e:js.html.Event){
|
|
|
|
if (state.email == ""){
|
|
setError("Veuillez saisir votre email");
|
|
return;
|
|
}
|
|
if (state.password == ""){
|
|
setError("Veuillez saisir votre mot de passe");
|
|
return;
|
|
}
|
|
|
|
//lock button
|
|
var el: js.html.Element = null;
|
|
if(e!=null){
|
|
el = cast e.target;
|
|
el.classList.add("disabled");
|
|
}
|
|
|
|
|
|
var req = new haxe.Http("/api/user/login");
|
|
req.addParameter("email", state.email);
|
|
req.addParameter("password", state.password);
|
|
req.addParameter("redirecturl", props.redirectUrl);
|
|
|
|
req.onData = req.onError = function(d){
|
|
|
|
var d = req.responseData;
|
|
|
|
if(e!=null) el.classList.remove("disabled");
|
|
|
|
var d = haxe.Json.parse(d);
|
|
if (Reflect.hasField(d, "error")) setError(d.error.message);
|
|
if (Reflect.hasField(d, "success")) js.Browser.window.location.href = props.redirectUrl;
|
|
}
|
|
req.request(true);
|
|
}
|
|
|
|
function onKeyPress(e:js.html.KeyboardEvent){
|
|
if(e.key=="Enter") submit();
|
|
}
|
|
|
|
|
|
|
|
}
|