// JavaScript Document

var btn_clicado;
$(document).ready(function() {
	$("#telefone").mask("(99) 9999-9999");
});

function entsub(event,ourform) {
  if (event && event.which == 13) {
  	return false;
  }
  else
    return true;
}

$(function() {
	$( "#dialog:ui-dialog" ).dialog( "destroy" );
	
	var nome = $( "#nome" ),
		email = $( "#email" ),
		email_login = $( "#email_login" ),
		telefone = $( "#telefone" ),
		allFields = $( [] ).add( nome ).add( email ).add( email_login ).add( telefone ),
		tips = $( ".validateTips" );

	function updateTips( t ) {
		tips
			.text( t )
			.addClass( "ui-state-highlight" );
		setTimeout(function() {
			tips.removeClass( "ui-state-highlight", 1500 );
		}, 500 );
	}

	function checkLength( o, n, min, max ) {
		if ( o.val().length > max || o.val().length < min ) {
			o.addClass( "ui-state-error" );
			updateTips( "O tamanho do campo " + n + " deve estar entre " + min + " e " + max + "." );
			return false;
		} else {
			return true;
		}
	}

	function checkRegexp( o, regexp, n ) {
		if ( !( regexp.test( o.val() ) ) ) {
			o.addClass( "ui-state-error" );
			updateTips( n );
			return false;
		} else {
			return true;
		}
	}
	
	$( "#dialog-form" ).dialog({
		autoOpen: false,
		height: 350,
		width: 350,
		modal: true,
		resizable: false,
		draggable: false,
		close: function() {
			allFields.val( "" ).removeClass( "ui-state-error" );
			document.getElementById("btn_login").style.display = "block";
			document.getElementById("btn_cria_conta").style.display = "block";
			document.getElementById("box_vantagens").style.display = "block";
			document.getElementById("div_login_form").style.display = "none";
			document.getElementById("div_criar_conta").style.display = "none";
			$("#dialog-form").dialog({buttons: {}});
		}
	});

	$( "#create-user" )
		.button()
		.click(function() {
			$( "#dialog-form" ).dialog( "open" );
		});
	
	$("#btn_login").click(function() {
		btn_clicado = "login";
		$("#div_login_form").show("slow");
		$("#btn_login").hide("slow");
		$("#box_vantagens").hide("slow");
		$("#btn_cria_conta").hide("slow");
		$( "#dialog-form" ).dialog({
		buttons: {
			"Login": function() {
				var bValid = true;
				allFields.removeClass( "ui-state-error" );

				bValid = bValid && checkLength( email_login, "email_login", 6, 80 );

				// From jquery.validate.js (by joern), contributed by Scott Gonzalez: http://projects.scottsplayground.com/email_address_validation/
				bValid = bValid && checkRegexp( email_login, /^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i, "eg. ui@jquery.com" );
				
				if ( bValid ) {
					$.post("/scripts/favoritos/auth.php",
					{email_login: email_login.val()},
						function(valor){
							eval(valor)
						}
					)
					$( this ).dialog( "close" );
				}
			},
			Cancelar: function() {
				$( this ).dialog( "close" );
				document.getElementById("btn_login").style.display = "block";
				document.getElementById("btn_cria_conta").style.display = "block";
				document.getElementById("box_vantagens").style.display = "block";
				document.getElementById("div_login_form").style.display = "none";
				document.getElementById("div_criar_conta").style.display = "none";
				$("#dialog-form").dialog({buttons: {}});
			}
		}}
		);
	});
	$("#btn_cria_conta").click(function() {
		btn_clicado = "cria conta";
		$("#div_criar_conta").show("slow");
		$("#btn_login").hide("slow");
		$("#box_vantagens").hide("slow");
		$("#btn_cria_conta").hide("slow");
		$( "#dialog-form" ).dialog({
		buttons: {
			"Criar a Conta": function() {
				var bValid = true;
				allFields.removeClass( "ui-state-error" );

				bValid = bValid && checkLength( nome, "username", 2, 30);
				bValid = bValid && checkLength( email, "email", 6, 80 );
				bValid = bValid && checkLength( telefone, "telefone", 14, 14 );

				//bValid = bValid && checkRegexp( nome, /^[a-z]([0-9a-z_])+$/i, "O nome só pode conter os seguintes caracteres: a-z, 0-9, underline e começar com uma letra." );
				// From jquery.validate.js (by joern), contributed by Scott Gonzalez: http://projects.scottsplayground.com/email_address_validation/
				bValid = bValid && checkRegexp( email, /^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i, "eg. ui@jquery.com" );
				//bValid = bValid && checkRegexp( telefone, /^([0-9])+$/, "O campo Telefone só aceita caracteres: 0-9" );

				if ( bValid ) {
					$.post("/scripts/favoritos/cadastra_user.php",
					{nome: nome.val(), email: email.val(), telefone: telefone.val()},
						function(valor){
							eval(valor)
						}
					)
					$( this ).dialog( "close" );
				}
			},
			Cancelar: function() {
				$( this ).dialog( "close" );
				document.getElementById("btn_login").style.display = "block";
				document.getElementById("btn_cria_conta").style.display = "block";
				document.getElementById("box_vantagens").style.display = "block";
				document.getElementById("div_login_form").style.display = "none";
				document.getElementById("div_criar_conta").style.display = "none";
				$("#dialog-form").dialog({buttons: {}});
			}
		}}
		);
		
	});
		
});
//addfavorito
//removefavorito
function remove_fav(id) {
	var fav = $("#removefavorito"+id).attr('rel');
	$.post("/scripts/favoritos/apagafavoritos.php",
		{favorito: fav},
			function(valor){
				if (!isNaN(valor)) {
					$("#contafavoritos").html(valor);
					document.getElementById('removefavorito'+id).style.display = "none";
					document.getElementById('addfavorito'+id).style.display = "block";
				}
				else {
					eval(valor);
				}
			}
	)
}

function add_fav(id) {
	var fav = $("#addfavorito"+id).attr('rel');
	$.post("/scripts/favoritos/gravafavoritos.php",
		{favorito: fav},
			function(valor){
				if (!isNaN(valor)) {
					$("#contafavoritos").html(valor);
					document.getElementById('addfavorito'+id).style.display = "none";
					document.getElementById('removefavorito'+id).style.display = "block";
				}
				else {
					eval(valor);
				}
			}
	)
}
