﻿/*----- Carrega os Lancamentos -----*/
$(function () {
    CarregaNoticiasNovasIndex()
});

/*----- Funcao que Carrega as Notícias -----*/
function CarregaNoticiasNovasIndex() {
    $.ajax({
        type: "get",
        url: "Handlers/Index/CarregaNoticiasNovasIndex.ashx",
        contentType: "application/json",
        data: ({}),
        success: function (data) {
            Exibe_Noticias(data);
        },
        Error: function (jqXHR, textStatus, errorThrown) {
           
        }
    });
}

function Exibe_Noticias(Lista_Noticias) {
    var i;
    for (i = 0; i < Lista_Noticias.length; i++) {

        var Id_Noticia = Lista_Noticias[i].Id_Noticia;
        Id_Noticia = $.trim(Id_Noticia);

        var Titulo_Noticia = Lista_Noticias[i].Titulo_Noticia;
        Titulo_Noticia = $.trim(Titulo_Noticia);

        var Nome_Foto_Noticia = Lista_Noticias[i].Foto_Noticia;
        Nome_Foto_Noticia = $.trim(Nome_Foto_Noticia);

        var Foto_Noticia = '<img src="Arquivos/Index/img/Noticias/img_noticias/' + Nome_Foto_Noticia + '.png" alt="' + Titulo_Noticia + '" title="' + Titulo_Noticia + '" class="ImagemNoticia" />';

        var Descricao_Noticia = Lista_Noticias[i].Descricao_Noticia;
        Descricao_Noticia = $.trim(Descricao_Noticia);

        var Link_Noticia = Lista_Noticias[i].Link_Noticia;
        Link_Noticia = $.trim(Link_Noticia);

        $("#NoticiasMinipa").append('<div class="Noticia" style="border-bottom:1px solid #dadada;">'
            + '<span class="NoticiaImg">'
                + '<a href="' + Link_Noticia + '" target=_blank">' + Foto_Noticia + '</a>'
            + '</span>'
            + '<a href="' + Link_Noticia + '" target=_blank" class="TituloNoticia" >' + Titulo_Noticia + '</span></a>'
            + '<p class="TextoNoticia">' + Descricao_Noticia + '</p>'
        + '</div><div class="LinkVerMais"><a href="' + Link_Noticia + '" target=_blank">Saiba Mais ></a></div>');
    }
}
