/*
 * Páginas Fixas
 */

self.alterar_aba = function(aba) {
  $('#aba-1').hide();
  $('#aba-2').hide();
  $('#aba-3').hide();
  $('#aba-4').hide();
  $('#aba-5').hide();
  $(aba).show();
  //alert(aba + '-li');
  //$(aba + "-li").attr('style', 'color: #000000; background-color: #ffffff;');
  //alert("nome classe" + $(aba + "-li").attr("class"));
  //$(aba + "-li").addClass('teste-ativo');
  /*
  alert(aba);
  $('.menu-informacoes-a li').each(function() {
      if($(this).text() != '') {
        //$(this).attr('class', 'teste-ativo');
        //$(this).attr('style', 'color: #000000; background-color: #ffffff;');
      }
  });*/

}

self.exibir_produto_indicacao = function(produto_id) {
  $.ajax({
    url: '/home/indique?produto_id='+produto_id,
    success: function(data) {
      $('#aba-4').html(data);
    }
  }); 
}

/*
 * Checkout
 */

self.efetuar_pagamento = function(forma_de_pagamento) {
  if(forma_de_pagamento == 'pagseguro') {
    $('#form-pagseguro').submit();
  }
  if(forma_de_pagamento == 'transferencia' || forma_de_pagamento == 'boleto') {
    $('#form-a-vista').submit();
  }
}

$(document).ready(function()
{
  /* Construtor Menu */
  $('.cnm-submenu').hide();
  $('.cnm li').each(function()
  {
    if($(this).children().next().is('.cnm-submenu'))
    {
      $(this).hover(function(){
        $(this).children('.cnm-submenu').show();
      }, function(){
        $(this).children('.cnm-submenu').hide();
      });
    }
  });

  /* Limpando Busca e Newsletter */
  if($('#busca_palavra_chave').val() != '') {
    $('#busca_palavra_chave').clearField();
  }

  $('#busca_familia_pai_id').change(function() {
    $('#busca_palavra_chave').val(' ');
  });

  if($('#newsletter_nome').val() != '') {
    $('#newsletter_nome').clearField();
  }

  if($('#newsletter_email').val() != '') {
    $('#newsletter_email').clearField();
  }

  if($('#login').val() != '') {
    $('#login').clearField();
  }

  if($('#senha').val() != '') {
    $('#senha').clearField();
  }

  /* Formulário de Cadastro */

  $('#cadastro_class_name_cliente_fisica').click(function() {
    $('#s_nome_extendido').html("* Nome Completo:");
    $('#s_nome_resumido').html("* Quero ser chamado por:");
    $('#s_cpf_cnpj').html("* CPF:");
    $('#tr_sexo').show();
    $('#tr_data_nascimento').show();
    $('#tr_inscricao_estadual').hide();
    $('#tr_contato').hide();
  });

  $('#cadastro_class_name_cliente_juridica').click(function() {
    $('#s_nome_extendido').html("* Razão social:");
    $('#s_nome_resumido').html("* Nome Fantasia:");
    $('#s_cpf_cnpj').html("* CNPJ:");
    $('#tr_contato').show();
    $('#tr_sexo').hide();
    $('#tr_data_nascimento').hide();
    $('#tr_inscricao_estadual').show();
  });

  if($('#cadastro_class_name').val() == "Cliente_Fisica") {
    $('#s_nome_extendido').html("* Nome Completo:");
    $('#s_nome_resumido').html("* Quero ser chamado por:");
    $('#s_cpf_cnpj').html("* CPF:");
    $('#tr_sexo').show();
    $('#tr_data_nascimento').show();
    $('#tr_inscricao_estadual').hide();
    $('#tr_contato').hide();
  }

  if($('#cadastro_class_name').val() == "Cliente_Juridica"){
    $('#s_nome_extendido').html("* Razão social:");
    $('#s_nome_resumido').html("* Nome Fantasia:");
    $('#s_cpf_cnpj').html("* CNPJ:");
    $('#tr_contato').show();
    $('#tr_sexo').hide();
    $('#tr_data_nascimento').hide();
    $('#tr_inscricao_estadual').show();
  }

  /* Cálculo de Frete */

  $("input:radio[name=endereco_entrega_id]").click(function() {
    endereco_entrega_id = $("input:radio[name=endereco_entrega_id]:checked").val();
    $.ajax({
      url: "/home/selecionar_endereco_entrega?endereco_entrega_id=" + endereco_entrega_id
    });
  });

  /* Fechar Pedido */

  self.gerar_pagamento = function(forma_pagamento) {
    if(forma_pagamento == "pagseguro") {
      $('#form-pagseguro').submit();
    } else {
      $('#form-a-vista').submit();
    }

  }

  if($("#pedido-forma-pagamento").text() != undefined && $("#pedido-forma-pagamento").text() != '') {
    gerar_pagamento($("#pedido-forma-pagamento").text());
    $("#pedido-forma-pagamento").html(" ");
  }

  $("select:[id$=_quantidade]").change(function(){
    $("#form-alterar-item").submit();
  });

  $('#bt-frete').click(function(){
    if($("#cep_destino").val() == '' || $("#cep_destino").val() == null) {
      alert("Digite um cep de destino.");
      return false;
    }
  });

  /* Imprimir Pedido */

  $("#bt-imprimir").click(function(){
    $('#basic-modal-content').modal();
    $('#form-impressao').submit();
  });

  /* Efetuar Pagamento */

  $('#bt-efetuar-pagamento').click(function(){
    var forma_de_pagamento = $('#div-forma-pagamento').text();
    efetuar_pagamento(forma_de_pagamento);
  });

  /* Alterar subpáginas */

  $('#sub_paginas').change(function(){
    if($(this).val() != "") {
      window.location.href = $(this).val();
    }
  });

  /* Exibir detalhes de pedido */

    $('#[id$=-bt-exibir-detalhes-pedido]').click(function(){
      $("#"+parseInt(this.id).toString()+"-bt-exibir-detalhes-pedido").hide();
      $("#"+parseInt(this.id).toString()+"-bt-ocultar-detalhes-pedido").show();
      $("#detalhes-pedido-"+parseInt(this.id).toString()).show();
    });

    $('#[id$=-bt-ocultar-detalhes-pedido]').click(function(){
      $("#"+parseInt(this.id).toString()+"-bt-exibir-detalhes-pedido").show();
      $("#"+parseInt(this.id).toString()+"-bt-ocultar-detalhes-pedido").hide();
      $("#detalhes-pedido-"+parseInt(this.id).toString()).hide();
    });
});

