Skip to content

Commit cf28b38

Browse files
committed
Makes possible to preview in editing comment
1 parent f1ca711 commit cf28b38

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

src/main/scala/gitbucket/gist/controller/GistController.scala

+1-2
Original file line numberDiff line numberDiff line change
@@ -394,8 +394,7 @@ trait GistControllerBase extends ControllerBase {
394394
getGist(userName, repoName).flatMap { gist =>
395395
getGistComment(userName, repoName, commentId).map { comment =>
396396
params.get("dataType") collect {
397-
case t if t == "html" => gitbucket.gist.html.commentedit(
398-
comment.content, comment.commentId, comment.userName, comment.repositoryName)
397+
case t if t == "html" => gitbucket.gist.html.commentedit(gist, comment.content, comment.commentId)
399398
} getOrElse {
400399
contentType = formats("json")
401400
org.json4s.jackson.Serialization.write(

src/main/twirl/gitbucket/gist/commentedit.scala.html

+14-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1-
@(content: String, commentId: Int, userName: String, repoName: String)(implicit context: gitbucket.core.controller.Context)
1+
@(gist: gitbucket.gist.model.Gist, content: String, commentId: Int)(implicit context: gitbucket.core.controller.Context)
22
<span id="error-edit-content-@commentId" class="error"></span>
3-
<textarea class="form-control" style="height: 100px;" id="edit-content-@commentId">@content</textarea>
4-
<div style="margin-top: 6px;">
5-
<input type="button" id="cancel-comment-@commentId" class="btn btn-danger" value="Cancel"/>
6-
<input type="button" id="update-comment-@commentId" class="btn btn-default pull-right" value="Update comment"/>
3+
@gitbucket.gist.html.commentpreview(
4+
gist = gist,
5+
content = content,
6+
style = "height: 100px; max-height: 150px;",
7+
elastic = true,
8+
uid = commentId
9+
)
10+
<div style="margin-top: 6px;" class="text-right">
11+
<input type="button" id="cancel-comment-@commentId" class="btn btn-default" value="Cancel"/>
12+
<input type="button" id="update-comment-@commentId" class="btn btn-success" value="Update comment"/>
713
</div>
814
<script>
915
$(function(){
@@ -16,11 +22,11 @@
1622
$('#update-comment-@commentId').click(function(){
1723
$('#update-comment-@commentId, #cancel-comment-@commentId').attr('disabled', 'disabled');
1824
$.ajax({
19-
url: '@context.path/gist/@userName/@repoName/_comments/@commentId/_update',
25+
url: '@context.path/gist/@gist.userName/@gist.repositoryName/_comments/@commentId/_update',
2026
type: 'POST',
2127
data: {
2228
issueId : 0, // TODO
23-
content : $('#edit-content-@commentId').val()
29+
content : $('#content@commentId').val()
2430
}
2531
}).done(
2632
callback
@@ -32,7 +38,7 @@
3238

3339
$('#cancel-comment-@commentId').click(function(){
3440
$('#update-comment-@commentId, #cancel-comment-@commentId').attr('disabled', 'disabled');
35-
$.get('@context.path/gist/@userName/@repoName/_comments/@commentId', callback);
41+
$.get('@context.path/gist/@gist.userName/@gist.repositoryName/_comments/@commentId', callback);
3642
return false;
3743
});
3844
});

0 commit comments

Comments
 (0)