{{$c.Author}}{{date $c.CommentDate "Y-m-d H:i:s"}}
- - {{$i}}# + + {{$c.Index}}# + {{if eq $c.ShowDel 1}} + + {{end}}
diff --git a/controllers/CommentController.go b/controllers/CommentController.go index 9cb4a3ca..d8706a18 100644 --- a/controllers/CommentController.go +++ b/controllers/CommentController.go @@ -16,16 +16,14 @@ type CommentController struct { } func (c *CommentController) Lists() { - docid, _ := c.GetInt("docid", 0) pageIndex, _ := c.GetInt("page", 1) beego.Info("CommentController.Lists", docid, pageIndex) // 获取评论、分页 - comments, count := models.NewComment().QueryCommentByDocumentId(docid, pageIndex, conf.PageSize) + comments, count, pageIndex := models.NewComment().QueryCommentByDocumentId(docid, pageIndex, conf.PageSize, c.Member.MemberId) page := pagination.PageUtil(int(count), pageIndex, conf.PageSize, comments) - beego.Info("docid=", docid, "Page", page) var data struct { DocId int `json:"doc_id"` @@ -57,11 +55,30 @@ func (c *CommentController) Create() { beego.Info(m) m.Insert() - c.JsonResult(0, "ok") + var data struct { + DocId int `json:"doc_id"` + } + data.DocId = id + + c.JsonResult(0, "ok", data) } func (c *CommentController) Index() { - c.Prepare() c.TplName = "comment/index.tpl" } + +func (c *CommentController) Delete() { + if c.Ctx.Input.IsPost() { + id, _ := c.GetInt("id", 0) + beego.Info("delete id=", id) + m := models.NewComment() + m.CommentId = id + err := m.Delete() + if err != nil { + c.JsonResult(1, "删除错误") + } else { + c.JsonResult(0, "ok") + } + } +} diff --git a/controllers/DocumentController.go b/controllers/DocumentController.go index 46448494..2a7b06f8 100644 --- a/controllers/DocumentController.go +++ b/controllers/DocumentController.go @@ -70,10 +70,9 @@ func (c *DocumentController) Index() { c.Data["DocumentId"] = doc.DocumentId // 获取评论、分页 - comments, count := models.NewComment().QueryCommentByDocumentId(doc.DocumentId, 1, conf.PageSize) + comments, count, _ := models.NewComment().QueryCommentByDocumentId(doc.DocumentId, 1, conf.PageSize, c.Member.MemberId) page := pagination.PageUtil(int(count), 1, conf.PageSize, comments) c.Data["Page"] = page - beego.Info("docid=", doc.DocumentId, "Page", page) } } else { c.Data["Title"] = "概要" @@ -156,10 +155,9 @@ func (c *DocumentController) Read() { c.Data["ViewCount"] = doc.ViewCount + 1 // 获取评论、分页 - comments, count := models.NewComment().QueryCommentByDocumentId(doc.DocumentId, 1, conf.PageSize) + comments, count, _ := models.NewComment().QueryCommentByDocumentId(doc.DocumentId, 1, conf.PageSize, c.Member.MemberId) page := pagination.PageUtil(int(count), 1, conf.PageSize, comments) c.Data["Page"] = page - beego.Info("docid=", doc.DocumentId, "Page", page) if c.IsAjax() { var data struct { diff --git a/models/CommentModel.go b/models/CommentModel.go index 84a68100..7876da05 100644 --- a/models/CommentModel.go +++ b/models/CommentModel.go @@ -33,6 +33,8 @@ type Comment struct { ParentId int `orm:"column(parent_id);type(int);default(0)" json:"parent_id"` AgreeCount int `orm:"column(agree_count);type(int);default(0)" json:"agree_count"` AgainstCount int `orm:"column(against_count);type(int);default(0)" json:"against_count"` + Index int `orm:"-" json:"index"` + ShowDel int `orm:"-" json:"show_del"` } // TableName 获取对应数据库表名. @@ -64,11 +66,26 @@ func (m *Comment) Find(id int) (*Comment, error) { } // 根据文档id查询文档评论 -func (m *Comment) QueryCommentByDocumentId(doc_id, page, pagesize int) (comments []Comment, count int64) { +func (m *Comment) QueryCommentByDocumentId(doc_id, page, pagesize, userid int) (comments []Comment, count int64, ret_page int) { o := orm.NewOrm() - offset := (page - 1) * pagesize - o.QueryTable(m.TableNameWithPrefix()).Filter("document_id", doc_id).OrderBy("comment_date").Offset(offset).Limit(pagesize).All(&comments) count, _ = o.QueryTable(m.TableNameWithPrefix()).Filter("document_id", doc_id).Count() + if -1 == page { // 请求最后一页 + var total int = int(count) + if total % pagesize == 0 { + page = total / pagesize + } else { + page = total / pagesize + 1 + } + } + offset := (page - 1) * pagesize + ret_page = page + o.QueryTable(m.TableNameWithPrefix()).Filter("document_id", doc_id).OrderBy("comment_date").Offset(offset).Limit(pagesize).All(&comments) + for i := 0; i < len(comments); i++ { + comments[i].Index = (i + 1) + (page - 1) * pagesize + if userid == comments[i].MemberId { + comments[i].ShowDel = 1 + } + } return } @@ -145,3 +162,10 @@ func (m *Comment) Insert() error { return err } + +// 删除一条评论 +func (m *Comment) Delete() error { + o := orm.NewOrm() + _, err := o.Delete(m) + return err +} \ No newline at end of file diff --git a/routers/router.go b/routers/router.go index d6f4cf36..7cde2673 100644 --- a/routers/router.go +++ b/routers/router.go @@ -134,6 +134,7 @@ func init() { beego.Router("/attach_files/:key/:attach_id", &controllers.DocumentController{}, "get:DownloadAttachment") beego.Router("/comment/create", &controllers.CommentController{}, "post:Create") + beego.Router("/comment/delete", &controllers.CommentController{}, "post:Delete") beego.Router("/comment/lists", &controllers.CommentController{}, "get:Lists") beego.Router("/comment/index", &controllers.CommentController{}, "*:Index") diff --git a/static/js/bootstrap-paginator.min.js b/static/js/bootstrap-paginator.min.js new file mode 100644 index 00000000..d482d962 --- /dev/null +++ b/static/js/bootstrap-paginator.min.js @@ -0,0 +1 @@ +!function($){"use strict";var BootstrapPaginator=function(element,options){this.init(element,options)},old=null;BootstrapPaginator.prototype={init:function(element,options){this.$element=$(element);var version=options&&options.bootstrapMajorVersion?options.bootstrapMajorVersion:$.fn.bootstrapPaginator.defaults.bootstrapMajorVersion,id=this.$element.attr("id");if(2===version&&!this.$element.is("div"))throw"in Bootstrap version 2 the pagination must be a div element. Or if you are using Bootstrap pagination 3. Please specify it in bootstrapMajorVersion in the option";if(version>2&&!this.$element.is("ul"))throw"in Bootstrap version 3 the pagination root item must be an ul element.";this.currentPage=1,this.lastPage=1,this.setOptions(options),this.initialized=!0},setOptions:function(options){this.options=$.extend({},this.options||$.fn.bootstrapPaginator.defaults,options),this.totalPages=parseInt(this.options.totalPages,10),this.numberOfPages=parseInt(this.options.numberOfPages,10),options&&"undefined"!=typeof options.currentPage&&this.setCurrentPage(options.currentPage),this.listen(),this.render(),this.initialized||this.lastPage===this.currentPage||this.$element.trigger("page-changed",[this.lastPage,this.currentPage])},listen:function(){this.$element.off("page-clicked"),this.$element.off("page-changed"),"function"==typeof this.options.onPageClicked&&this.$element.bind("page-clicked",this.options.onPageClicked),"function"==typeof this.options.onPageChanged&&this.$element.on("page-changed",this.options.onPageChanged),this.$element.bind("page-clicked",this.onPageClicked)},destroy:function(){this.$element.off("page-clicked"),this.$element.off("page-changed"),this.$element.removeData("bootstrapPaginator"),this.$element.empty()},show:function(page){this.setCurrentPage(page),this.render(),this.lastPage!==this.currentPage&&this.$element.trigger("page-changed",[this.lastPage,this.currentPage])},showNext:function(){var pages=this.getPages();pages.next&&this.show(pages.next)},showPrevious:function(){var pages=this.getPages();pages.prev&&this.show(pages.prev)},showFirst:function(){var pages=this.getPages();pages.first&&this.show(pages.first)},showLast:function(){var pages=this.getPages();pages.last&&this.show(pages.last)},onPageItemClicked:function(event){var type=event.data.type,page=event.data.page;this.$element.trigger("page-clicked",[event,type,page])},onPageClicked:function(event,originalEvent,type,page){var currentTarget=$(event.currentTarget);switch(type){case"first":currentTarget.bootstrapPaginator("showFirst");break;case"prev":currentTarget.bootstrapPaginator("showPrevious");break;case"next":currentTarget.bootstrapPaginator("showNext");break;case"last":currentTarget.bootstrapPaginator("showLast");break;case"page":currentTarget.bootstrapPaginator("show",page)}},render:function(){var containerClass=this.getValueFromOption(this.options.containerClass,this.$element),size=this.options.size||"normal",alignment=this.options.alignment||"left",pages=this.getPages(),listContainer=2===this.options.bootstrapMajorVersion?$("
" + c[i].author + "" + timeFormat(c[i].comment_date) + "
"; html += ""; - html += ""; - html += "" + i + "#"; + if (c[i].show_del == 1) html += ""; + else html += ""; + html += "" + c[i].index + "#"; + if (c[i].show_del == 1) html += ""; html += ""; html += "
"; html += ""; } $("#commentList").append(html); - if (page.TotalPage > 1) { + if ($page.TotalPage > 1) { $("#page").bootstrapPaginator({ - currentPage: page.PageNo, - totalPages: page.TotalPage, + currentPage: $page.PageNo, + totalPages: $page.TotalPage, bootstrapMajorVersion: 3, size: "middle", - onPageClicked: function(e,originalEvent,type,page){ - onPageClicked(page, docid); + onPageClicked: function(e, originalEvent, type, page){ + pageClicked(page, $docid); } }); } else { @@ -111,15 +124,36 @@ function loadComment(page, docid) { } } +// 删除评论 +function onDelComment($id) { + console.log($id); + $.ajax({ + url : "/comment/delete", + data : {"id": $id}, + type : "POST", + success : function ($res) { + if ($res.errcode == 0) { + layer.msg("删除成功"); + $("div[data-id=" + $id + "]").remove(); + } else { + layer.msg($res.message); + } + }, + error : function () { + layer.msg("删除失败"); + } + }); +} + // 重新渲染页面 -function renderPage(data) { - $("#page-content").html(data.body); - $("title").text(data.title); - $("#article-title").text(data.doc_title); - $("#article-info").text(data.doc_info); - $("#view_count").text("阅读次数:" + data.view_count); - $("#doc_id").val(data.doc_id); - loadComment(data.page, data.doc_id); +function renderPage($data) { + $("#page-content").html($data.body); + $("title").text($data.title); + $("#article-title").text($data.doc_title); + $("#article-info").text($data.doc_info); + $("#view_count").text("阅读次数:" + $data.view_count); + $("#doc_id").val($data.doc_id); + loadComment($data.page, $data.doc_id); } /*** @@ -132,7 +166,7 @@ function loadDocument($url, $id, $callback) { $.ajax({ url : $url, type : "GET", - beforeSend : function (xhr) { + beforeSend : function () { var data = events.data($id); if(data) { if (typeof $callback === "function") { @@ -150,19 +184,19 @@ function loadDocument($url, $id, $callback) { NProgress.start(); }, - success : function (res) { - if (res.errcode === 0) { - renderPage(res.data); + success : function ($res) { + if ($res.errcode === 0) { + renderPage($res.data); - $body = res.data.body; + $body = $res.data.body; if (typeof $callback === "function" ) { $body = $callback(body); } - events.data($id, res.data); + events.data($id, $res.data); events.trigger('article.open', { $url : $url, $id : $id }); - } else if (res.errcode === 6000) { + } else if ($res.errcode === 6000) { window.location.href = "/"; } else { layer.msg("加载失败"); @@ -349,4 +383,25 @@ $(function () { console.log($param); } }; + + // 提交评论 + $("#commentForm").ajaxForm({ + beforeSubmit : function () { + $("#btnSubmitComment").button("loading"); + }, + success : function (res) { + if(res.errcode === 0){ + showSuccess("保存成功") + }else{ + showError("保存失败") + } + $("#btnSubmitComment").button("reset"); + $("#commentContent").val(""); + pageClicked(-1, res.data.doc_id); // -1 表示请求最后一页 + }, + error : function () { + showError("服务错误"); + $("#btnSaveBookInfo").button("reset"); + } + }); }); \ No newline at end of file diff --git a/views/document/default_read.tpl b/views/document/default_read.tpl index 58637df2..369eea76 100644 --- a/views/document/default_read.tpl +++ b/views/document/default_read.tpl @@ -167,6 +167,7 @@ +{{$c.Author}}{{date $c.CommentDate "Y-m-d H:i:s"}}
- - {{$i}}# + + {{$c.Index}}# + {{if eq $c.ShowDel 1}} + + {{end}}