Refactor mobile comment js code and add tests

This commit is contained in:
Steffen van Bergerem 2015-08-29 13:12:02 +02:00
parent 5b918606fa
commit 3bc5b673c6
3 changed files with 242 additions and 149 deletions

View file

@ -4,8 +4,11 @@
* the COPYRIGHT file. * the COPYRIGHT file.
*/ */
$(document).ready(function() { (function() {
Diaspora.Mobile = {};
Diaspora.Mobile.Comments = {
initialize: function() {
var self = this;
$(".stream").on("tap click", "a.back_to_stream_element_top", function() { $(".stream").on("tap click", "a.back_to_stream_element_top", function() {
var bottomBar = $(this).closest(".bottom_bar").first(); var bottomBar = $(this).closest(".bottom_bar").first();
var streamElement = bottomBar.parent(); var streamElement = bottomBar.parent();
@ -16,76 +19,87 @@ $(document).ready(function() {
$(".stream").on("tap click", "a.show_comments", function(evt){ $(".stream").on("tap click", "a.show_comments", function(evt){
evt.preventDefault(); evt.preventDefault();
toggleComments($(this)); self.toggleComments($(this));
}); });
function toggleComments(toggleReactionsLink) { $(".stream").on("tap click", "a.comment-action", function(evt) {
evt.preventDefault();
self.showCommentBox(this);
var bottomBar = $(this).closest(".bottom_bar").first();
var commentContainer = bottomBar.find(".comment_container").first();
self.scrollToOffset(commentContainer);
});
$(".stream").on("submit", ".new_comment", function(evt) {
evt.preventDefault();
var form = $(this);
$.post(form.attr("action")+"?format=mobile", form.serialize(), function(data) {
self.updateStream(form, data);
}, "html");
});
},
toggleComments: function(toggleReactionsLink) {
if(toggleReactionsLink.hasClass("loading")) { return; } if(toggleReactionsLink.hasClass("loading")) { return; }
if (toggleReactionsLink.hasClass("active")) { if (toggleReactionsLink.hasClass("active")) {
hideComments(toggleReactionsLink); this.hideComments(toggleReactionsLink);
} else { } else {
showComments(toggleReactionsLink); this.showComments(toggleReactionsLink);
}
} }
},
function hideComments(toggleReactionsLink) { hideComments: function(toggleReactionsLink) {
var bottomBar = toggleReactionsLink.closest(".bottom_bar").first(), var bottomBar = toggleReactionsLink.closest(".bottom_bar").first(),
commentsContainer = commentsContainerLazy(bottomBar), commentsContainer = this.commentsContainerLazy(bottomBar),
existingCommentsContainer = commentsContainer(); existingCommentsContainer = commentsContainer();
existingCommentsContainer.hide(); existingCommentsContainer.hide();
toggleReactionsLink.removeClass("active"); toggleReactionsLink.removeClass("active");
} },
function showComments(toggleReactionsLink) { showComments: function(toggleReactionsLink) {
var bottomBar = toggleReactionsLink.closest(".bottom_bar").first(), var bottomBar = toggleReactionsLink.closest(".bottom_bar").first(),
commentsContainer = commentsContainerLazy(bottomBar), commentsContainer = this.commentsContainerLazy(bottomBar),
existingCommentsContainer = commentsContainer(), existingCommentsContainer = commentsContainer(),
commentActionLink = bottomBar.find("a.comment-action"); commentActionLink = bottomBar.find("a.comment-action");
if (existingCommentsContainer.length > 0) { if (existingCommentsContainer.length > 0) {
showLoadedComments(toggleReactionsLink, existingCommentsContainer, commentActionLink); this.showLoadedComments(toggleReactionsLink, existingCommentsContainer, commentActionLink);
} else { } else {
showUnloadedComments(toggleReactionsLink, bottomBar, commentActionLink); this.showUnloadedComments(toggleReactionsLink, bottomBar, commentActionLink);
}
} }
},
function showLoadedComments(toggleReactionsLink, existingCommentsContainer, commentActionLink) { showLoadedComments: function(toggleReactionsLink, existingCommentsContainer, commentActionLink) {
toggleReactionsLink.addClass("active"); toggleReactionsLink.addClass("active");
existingCommentsContainer.show(); existingCommentsContainer.show();
showCommentBox(commentActionLink); this.showCommentBox(commentActionLink);
existingCommentsContainer.find("time.timeago").timeago(); existingCommentsContainer.find("time.timeago").timeago();
} },
function showUnloadedComments(toggleReactionsLink, bottomBar, commentActionLink) { showUnloadedComments: function(toggleReactionsLink, bottomBar, commentActionLink) {
toggleReactionsLink.addClass("loading"); toggleReactionsLink.addClass("loading");
var commentsContainer = commentsContainerLazy(bottomBar); var commentsContainer = this.commentsContainerLazy(bottomBar);
var self = this;
$.ajax({ $.ajax({
url: toggleReactionsLink.attr("href"), url: toggleReactionsLink.attr("href"),
success: function (data) { success: function (data) {
toggleReactionsLink.addClass("active").removeClass("loading"); toggleReactionsLink.addClass("active").removeClass("loading");
$(data).insertAfter(bottomBar.children(".show_comments").first()); $(data).insertAfter(bottomBar.children(".show_comments").first());
showCommentBox(commentActionLink); self.showCommentBox(commentActionLink);
commentsContainer().find("time.timeago").timeago(); commentsContainer().find("time.timeago").timeago();
}, },
error: function() { error: function() {
toggleReactionsLink.removeClass("loading"); toggleReactionsLink.removeClass("loading");
} }
}); });
} },
function commentsContainerLazy(bottomBar) { commentsContainerLazy: function(bottomBar) {
return function() { return function() {
return bottomBar.find(".comment_container").first(); return bottomBar.find(".comment_container").first();
}; };
} },
$(".stream").on("tap click", "a.comment-action", function(evt) { scrollToOffset: function(commentsContainer){
evt.preventDefault();
showCommentBox(this);
var bottomBar = $(this).closest(".bottom_bar").first();
var commentContainer = bottomBar.find(".comment_container").first();
scrollToOffset(commentContainer);
});
var scrollToOffset = function(commentsContainer){
var commentCount = commentsContainer.find("li.comment").length; var commentCount = commentsContainer.find("li.comment").length;
if ( commentCount > 3 ) { if ( commentCount > 3 ) {
var lastComment = commentsContainer.find("li:nth-child("+(commentCount-3)+")"); var lastComment = commentsContainer.find("li:nth-child("+(commentCount-3)+")");
@ -93,10 +107,11 @@ $(document).ready(function() {
scrollTop: lastComment.offset().top scrollTop: lastComment.offset().top
}, 1000); }, 1000);
} }
}; },
function showCommentBox(link){ showCommentBox: function(link){
var commentActionLink = $(link); var commentActionLink = $(link);
var self = this;
if(commentActionLink.hasClass("inactive")) { if(commentActionLink.hasClass("inactive")) {
$.ajax({ $.ajax({
url: commentActionLink.attr("href"), url: commentActionLink.attr("href"),
@ -105,66 +120,63 @@ $(document).ready(function() {
}, },
context: commentActionLink, context: commentActionLink,
success: function(data){ success: function(data){
appendCommentBox.call(this, commentActionLink, data); self.appendCommentBox.call(this, commentActionLink, data);
} }
}); });
} }
} },
function appendCommentBox(link, data) { appendCommentBox: function(link, data) {
link.removeClass("loading"); link.removeClass("loading");
link.removeClass("inactive"); link.removeClass("inactive");
var bottomBar = link.closest(".bottom_bar").first(); var bottomBar = link.closest(".bottom_bar").first();
bottomBar.append(data); bottomBar.append(data);
var textArea = bottomBar.find("textarea.comment_box").first()[0]; var textArea = bottomBar.find("textarea.comment_box").first()[0];
autosize(textArea); autosize(textArea);
} },
$(".stream").on("submit", ".new_comment", function(evt) { updateStream: function(form, data) {
evt.preventDefault();
var form = $(this);
$.post(form.attr("action")+"?format=mobile", form.serialize(), function(data) {
updateStream(form, data);
}, "html");
});
function updateStream(form, data) {
var bottomBar = form.closest(".bottom_bar").first(); var bottomBar = form.closest(".bottom_bar").first();
addNewComments(bottomBar, data); this.addNewComments(bottomBar, data);
updateCommentCount(bottomBar); this.updateCommentCount(bottomBar);
updateReactionCount(bottomBar); this.updateReactionCount(bottomBar);
handleCommentShowing(form, bottomBar); this.handleCommentShowing(form, bottomBar);
bottomBar.find("time.timeago").timeago(); bottomBar.find("time.timeago").timeago();
} },
function addNewComments(bottomBar, data) { addNewComments: function(bottomBar, data) {
var commentsContainer = bottomBar.find(".comment_container").first(); var commentsContainer = bottomBar.find(".comment_container").first();
var comments = commentsContainer.find(".comments").first(); var comments = commentsContainer.find(".comments").first();
comments.append(data); comments.append(data);
} },
// Fix for no comments // Fix for no comments
function updateCommentCount(bottomBar) { updateCommentCount: function(bottomBar) {
var commentCount = bottomBar.find(".comment_count"); var commentCount = bottomBar.find(".comment_count");
commentCount.text(commentCount.text().replace(/(\d+)/, function (match) { commentCount.text(commentCount.text().replace(/(\d+)/, function (match) {
return parseInt(match) + 1; return parseInt(match) + 1;
})); }));
} },
// Fix for no reactions // Fix for no reactions
function updateReactionCount(bottomBar) { updateReactionCount: function(bottomBar) {
var toggleReactionsLink = bottomBar.find(".show_comments").first(); var toggleReactionsLink = bottomBar.find(".show_comments").first();
toggleReactionsLink.text(toggleReactionsLink.text().replace(/(\d+)/, function (match) { toggleReactionsLink.text(toggleReactionsLink.text().replace(/(\d+)/, function (match) {
return parseInt(match) + 1; return parseInt(match) + 1;
})); }));
} },
function handleCommentShowing(form, bottomBar) { handleCommentShowing: function(form, bottomBar) {
var formContainer = form.parent(); var formContainer = form.parent();
formContainer.remove(); formContainer.remove();
var commentActionLink = bottomBar.find("a.comment-action").first(); var commentActionLink = bottomBar.find("a.comment-action").first();
commentActionLink.addClass("inactive"); commentActionLink.addClass("inactive");
var toggleReactionsLink = bottomBar.find(".show_comments").first(); var toggleReactionsLink = bottomBar.find(".show_comments").first();
showComments(toggleReactionsLink); this.showComments(toggleReactionsLink);
} }
};
})();
$(document).ready(function() {
Diaspora.Mobile.Comments.initialize();
}); });

View file

@ -58,6 +58,13 @@ describe StreamsController, :type => :controller do
save_fixture(html_for("body"), "aspects_index_post_with_comments") save_fixture(html_for("body"), "aspects_index_post_with_comments")
end end
it "generates a mobile jasmine fixture with a post with comments", fixture: true do
message = bob.post(:status_message, text: "HALO WHIRLED", to: @bob.aspects.where(name: "generic").first.id)
5.times { bob.comment!(message, "what") }
get :aspects, format: :mobile
save_fixture(html_for("body"), "aspects_index_mobile_post_with_comments")
end
it 'generates a jasmine fixture with a followed tag', :fixture => true do it 'generates a jasmine fixture with a followed tag', :fixture => true do
@tag = ActsAsTaggableOn::Tag.create!(:name => "partytimeexcellent") @tag = ActsAsTaggableOn::Tag.create!(:name => "partytimeexcellent")
TagFollowing.create!(:tag => @tag, :user => alice) TagFollowing.create!(:tag => @tag, :user => alice)

View file

@ -0,0 +1,74 @@
describe("Diaspora.Mobile.Comments", function(){
describe("toggleComments", function() {
beforeEach(function() {
spec.loadFixture("aspects_index_mobile_post_with_comments");
this.link = $(".stream .show_comments").first();
spyOn(Diaspora.Mobile.Comments, "showComments");
spyOn(Diaspora.Mobile.Comments, "hideComments");
});
it("calls showComments", function() {
Diaspora.Mobile.Comments.toggleComments(this.link);
expect(Diaspora.Mobile.Comments.showComments).toHaveBeenCalled();
expect(Diaspora.Mobile.Comments.hideComments).not.toHaveBeenCalled();
});
it("calls hideComments if the link class is 'active'", function() {
this.link.addClass("active");
Diaspora.Mobile.Comments.toggleComments(this.link);
expect(Diaspora.Mobile.Comments.showComments).not.toHaveBeenCalled();
expect(Diaspora.Mobile.Comments.hideComments).toHaveBeenCalled();
});
it("doesn't call any function if the link class is 'loading'", function() {
this.link.addClass("loading");
Diaspora.Mobile.Comments.toggleComments(this.link);
expect(Diaspora.Mobile.Comments.showComments).not.toHaveBeenCalled();
expect(Diaspora.Mobile.Comments.hideComments).not.toHaveBeenCalled();
});
});
describe("showUnloadedComments", function() {
beforeEach(function() {
spec.loadFixture("aspects_index_mobile_post_with_comments");
this.link = $(".stream .show_comments").first();
this.bottomBar = this.link.closest(".bottom_bar").first();
this.commentActionLink = this.bottomBar.find("a.comment-action");
});
it("adds the 'loading' class to the link", function() {
Diaspora.Mobile.Comments.showUnloadedComments(this.link, this.bottomBar, this.commentActionLink);
expect($(".show_comments").first()).toHaveClass("loading");
});
it("removes the 'loading' class if the request failed", function() {
Diaspora.Mobile.Comments.showUnloadedComments(this.link, this.bottomBar, this.commentActionLink);
jasmine.Ajax.requests.mostRecent().respondWith({status: 400});
expect($(".show_comments").first()).not.toHaveClass("loading");
});
it("adds the 'active' class if the request succeeded", function() {
Diaspora.Mobile.Comments.showUnloadedComments(this.link, this.bottomBar, this.commentActionLink);
jasmine.Ajax.requests.mostRecent().respondWith({status: 200, contentType: "text/plain", responseText: "test"});
expect($(".show_comments").first()).toHaveClass("active");
expect($(".show_comments").first()).not.toHaveClass("loading");
});
it("calls showCommentBox", function() {
spyOn(Diaspora.Mobile.Comments, "showCommentBox");
Diaspora.Mobile.Comments.showUnloadedComments(this.link, this.bottomBar, this.commentActionLink);
jasmine.Ajax.requests.mostRecent().respondWith({status: 200, contentType: "text/plain", responseText: "test"});
expect(Diaspora.Mobile.Comments.showCommentBox).toHaveBeenCalledWith(this.commentActionLink);
});
it("adds the response text to the comments list", function() {
Diaspora.Mobile.Comments.showUnloadedComments(this.link, this.bottomBar, this.commentActionLink);
jasmine.Ajax.requests.mostRecent().respondWith({
status: 200,
contentType: "text/plain",
responseText: "<div class=\"commentContainerForTest\">new comments</div>"
});
expect($(".stream .stream_element").first()).toContainElement(".commentContainerForTest");
});
});
});