/** * 评论 */ comment = { /** * 展示回复按钮 * @param comment_id * @param article_id */ reply_show:function(comment_id,article_id){ var com_id = '#reply_'+comment_id+"_"+article_id; if($(com_id).is(":hidden")){ $(com_id).show(); //如果元素为隐藏,则将它显现 $(com_id + ' [name="comment"]').val('回复:'); $(com_id + ' [name="comment"]').focus(); }else{ $(com_id).hide(); //如果元素为显现,则将其隐藏 } }, /** * 回复保存 * @param comment_id * @param article_id * @param reply_userid * @param create_id * @param article_title */ reply_submit:function(comment_id,article_id,reply_userid,create_id,article_title){ var comment_content = $("#reply_"+comment_id+"_"+article_id+" [name='comment']").val(); if(comment_content==''){ alert('发布内容不能为空!'); return; } else if (comment_content.length > 400) { alert('发布内容长度不能大于400!'); return; } // 去除回复提示 var tmpContent = "回复:"; if(comment_content.indexOf(tmpContent) == 0){ comment_content = comment_content.substr(tmpContent.length); } comment.oper_save(comment_content,article_id,reply_userid,create_id,article_title,comment_id); $('#reply_'+comment_id+"_"+article_id).hide(); }, /** * 删除评论 */ reply_del:function(comment_id,article_id) { if(window.confirm('你确定要删除该评论吗?')){ jQuery.ajax({ type:'POST', url:jflyfox.BASE_PATH + 'front/comment/del', data:"model.id=" + comment_id + "&model.article_id=" + article_id, success:function(data){ if(data.status==1){ $('#comment_'+comment_id+'_'+article_id).remove(); var count = parseInt($('[name="count_comment"]').val()); $('[name="count_comment"]').val(count - 1); $('#count_comment_show').html("评论(" + (count - 1) + ")"); } else { alert('删除失败:'+data.msg); } $('[name="comment"]').val(''); }, error:function(html){ var flag = (typeof console != 'undefined'); if(flag) console.log("服务器忙,提交数据失败,代码:" +html.status+ ",请联系管理员!"); alert("服务器忙,提交数据失败,请联系管理员!"); } }); } } /** * 保存评论: 内容 文章id 回复人id 文章创建人id 文章题目 */ ,oper_save:function(comment_content,article_id,reply_userid,create_id , article_title, fatherId){ article_title = article_title || ''; fatherId = fatherId || 0; // var urlParams = "model.content=" + comment_content + "&model.article_id=" + article_id // + "&model.reply_userid=" + reply_userid+ "&model.create_id=" + create_id + "&model.fatherId=" + fatherId; var urlParams = { "model.content":comment_content, "model.article_id":article_id, "model.reply_userid":reply_userid, "model.create_id":create_id, "model.fatherId":fatherId }; jQuery.ajax({ type:'POST', url:jflyfox.BASE_PATH + 'front/comment/save', data:urlParams, success:function(data){ if(data.status==1){ var createTime = data.create_time; var comment_id = data.comment_id; var title_url = data.title_url||''; var username = data.create_name; var reply_username = data.reply_username; title_url = (title_url=='')?(jflyfox.BASE_PATH + 'static/images/user/user.png'):title_url; var htmlText = '
  • '; htmlText += ''; htmlText += '
    '; // 回复头 htmlText += '
    '; if(article_title != ''){ htmlText += ''+article_title+''; htmlText += '文章中'; } htmlText += ''+username+''; if(reply_userid > 0 ) { htmlText += '回复'; htmlText += '' + reply_username + ''; } htmlText += '
    '; // 回复内容 htmlText += '
    '+comment_content+'
    '; // 回复底部 htmlText += '
    '; htmlText += ''+createTime+''; htmlText += '
    '; htmlText += ' 删除'; htmlText += '
  • '; $('.comment-reply-list').prepend(htmlText); var count = parseInt($('[name="count_comment"]').val()); $('[name="count_comment"]').val(count + 1); $('#count_comment_show').html("评论(" + (count + 1) + ")"); } else { alert('保存失败:'+data.msg); } $('[name="comment"]').val(''); }, error:function(html){ var flag = (typeof console != 'undefined'); if(flag) console.log("服务器忙,提交数据失败,代码:" +html.status+ ",请联系管理员!"); alert("服务器忙,提交数据失败,请联系管理员!"); } }); } ,count:function(){ if ($("#mymessage").length <= 0){ return; } jQuery.ajax({ type:'POST', url:jflyfox.BASE_PATH + 'front/comment/count', success:function(data){ if(data.status==1){ if(data.count > 0 ){ $('#mymessage').hide(); $('#mymessage').html('我的消息('+data.count+')'); $('#mymessage').css('font-weight','bold'); $('#mymessage').css('color','green'); $('#mymessage').show(500); } else { // 如果已经读过,那么恢复初始化 if($('#mymessage').text() != '我的消息') { $('#mymessage').text('我的消息'); $('#mymessage').css('font-weight',''); $('#mymessage').css('color','#454545'); } } } else { console_log('获取评论失败:'+data.msg); } }, error:function(html){ var flag = (typeof console != 'undefined'); if(flag) console.log("服务器忙,提交数据失败,代码:" +html.status+ ",请联系管理员!"); // alert("服务器忙,提交数据失败,请联系管理员!"); } }); // 压力太大了就改大点 window.setTimeout('comment.count()',600*1000); } }; /** * 文章喜欢 */ articlelike = { click:function(article_id){ if($('#articlelike_'+article_id).hasClass('glyphicon-heart-empty')){ articlelike.yes(article_id); } else { articlelike.no(article_id); } } /** * 喜欢 * * @param article_id */ ,yes:function(article_id){ jQuery.ajax({ type:'POST', url:jflyfox.BASE_PATH + 'front/articlelike/yes/'+article_id, success:function(data){ if(data.status==1){ $('#articlelike_'+article_id).removeClass('glyphicon-heart-empty').addClass('glyphicon-heart'); $('#articlelike_'+article_id).attr("title","取消喜欢"); } else { alert('失败:'+data.msg); } }, error:function(html){ var flag = (typeof console != 'undefined'); if(flag) console.log("服务器忙,提交数据失败,代码:" +html.status+ ",请联系管理员!"); alert("服务器忙,提交数据失败,请联系管理员!"); } }); } /** * 取消喜欢 * * @param article_id */ ,no:function(article_id){ jQuery.ajax({ type:'POST', url:jflyfox.BASE_PATH + 'front/articlelike/no/'+article_id, success:function(data){ if(data.status==1){ $('#articlelike_'+article_id).removeClass('glyphicon-heart').addClass('glyphicon-heart-empty'); $('#articlelike_'+article_id).attr("title","喜欢"); } else { alert('失败:'+data.msg); } }, error:function(html){ var flag = (typeof console != 'undefined'); if(flag) console.log("服务器忙,提交数据失败,代码:" +html.status+ ",请联系管理员!"); alert("服务器忙,提交数据失败,请联系管理员!"); } }); } };