Move the functions out of the ready function. this makes the JS tests pass.
svn path=/plone.app.discussion/trunk/; revision=39151
This commit is contained in:
parent
67fb426f08
commit
ba8e7ac5cd
@ -1,43 +1,22 @@
|
|||||||
|
/**************************************************************************
|
||||||
jq(document).ready(function () {
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************
|
|
||||||
* By default, hide the reply and the cancel button for the regular add
|
|
||||||
* comment form.
|
|
||||||
**************************************************************************/
|
|
||||||
jq(".reply").find("input[name='form.buttons.reply']")
|
|
||||||
.css("display", "none");
|
|
||||||
jq(".reply").find("input[name='form.buttons.cancel']")
|
|
||||||
.css("display", "none");
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************
|
|
||||||
* By default, show the reply button only when Javascript is enabled.
|
|
||||||
* Otherwise hide it, since the reply functions only work with JS enabled.
|
|
||||||
**************************************************************************/
|
|
||||||
jq(".reply-to-comment-button").css("display" , "inline");
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************
|
|
||||||
* Remove all error messages and field values from the form that is passed
|
* Remove all error messages and field values from the form that is passed
|
||||||
* to the function.
|
* to the function.
|
||||||
**************************************************************************/
|
**************************************************************************/
|
||||||
function clearForm(form_div) {
|
function clearForm(form_div) {
|
||||||
form_div.find(".error").removeClass("error");
|
form_div.find(".error").removeClass("error");
|
||||||
form_div.find(".fieldErrorBox").remove();
|
form_div.find(".fieldErrorBox").remove();
|
||||||
form_div.find("input[type='text']").attr("value", "");
|
form_div.find("input[type='text']").attr("value", "");
|
||||||
form_div.find("textarea").attr("value", "");
|
form_div.find("textarea").attr("value", "");
|
||||||
/* XXX: Clean all additional form extender fields. */
|
/* XXX: Clean all additional form extender fields. */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
* Create a reply-to-comment form right beneath the form that is passed to
|
* Create a reply-to-comment form right beneath the form that is passed to
|
||||||
* the function. We do this by copying the regular comment form and
|
* the function. We do this by copying the regular comment form and
|
||||||
* adding a hidden in_reply_to field to the form.
|
* adding a hidden in_reply_to field to the form.
|
||||||
**************************************************************************/
|
**************************************************************************/
|
||||||
function createReplyForm(comment_div) {
|
function createReplyForm(comment_div) {
|
||||||
|
|
||||||
var comment_id = comment_div.attr("id");
|
var comment_id = comment_div.attr("id");
|
||||||
|
|
||||||
@ -46,7 +25,7 @@ jq(document).ready(function () {
|
|||||||
/* Clone the reply div at the end of the page template that contains
|
/* Clone the reply div at the end of the page template that contains
|
||||||
* the regular comment form.
|
* the regular comment form.
|
||||||
*/
|
*/
|
||||||
var reply_div = jq("#commenting").clone(true);
|
var reply_div = $("#commenting").clone(true);
|
||||||
|
|
||||||
/* Remove the ReCaptcha JS code before appending the form. If not
|
/* Remove the ReCaptcha JS code before appending the form. If not
|
||||||
* removed, this causes problems
|
* removed, this causes problems
|
||||||
@ -67,7 +46,7 @@ jq(document).ready(function () {
|
|||||||
/* Hide the reply button (only hide, because we may want to show it
|
/* Hide the reply button (only hide, because we may want to show it
|
||||||
* again if the user hits the cancel button).
|
* again if the user hits the cancel button).
|
||||||
*/
|
*/
|
||||||
jq(reply_button).css("display", "none");
|
$(reply_button).css("display", "none");
|
||||||
|
|
||||||
/* Fetch the reply form inside the reply div */
|
/* Fetch the reply form inside the reply div */
|
||||||
var reply_form = reply_div.find("form");
|
var reply_form = reply_div.find("form");
|
||||||
@ -89,7 +68,27 @@ jq(document).ready(function () {
|
|||||||
|
|
||||||
/* Show the cancel button in the reply-to-comment form */
|
/* Show the cancel button in the reply-to-comment form */
|
||||||
cancel_reply_button.css("display", "inline");
|
cancel_reply_button.css("display", "inline");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$(document).ready(function () {
|
||||||
|
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
* By default, hide the reply and the cancel button for the regular add
|
||||||
|
* comment form.
|
||||||
|
**************************************************************************/
|
||||||
|
$(".reply").find("input[name='form.buttons.reply']")
|
||||||
|
.css("display", "none");
|
||||||
|
$(".reply").find("input[name='form.buttons.cancel']")
|
||||||
|
.css("display", "none");
|
||||||
|
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
* By default, show the reply button only when Javascript is enabled.
|
||||||
|
* Otherwise hide it, since the reply functions only work with JS enabled.
|
||||||
|
**************************************************************************/
|
||||||
|
$(".reply-to-comment-button").css("display" , "inline");
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
@ -97,12 +96,12 @@ jq(document).ready(function () {
|
|||||||
* submitted with a value for the "in_reply_to" field in the request),
|
* submitted with a value for the "in_reply_to" field in the request),
|
||||||
* create a reply-to-comment form right under this comment.
|
* create a reply-to-comment form right under this comment.
|
||||||
**************************************************************************/
|
**************************************************************************/
|
||||||
var post_comment_div = jq("#commenting");
|
var post_comment_div = $("#commenting");
|
||||||
var in_reply_to_field =
|
var in_reply_to_field =
|
||||||
post_comment_div.find("input[name='form.widgets.in_reply_to']");
|
post_comment_div.find("input[name='form.widgets.in_reply_to']");
|
||||||
if (in_reply_to_field.val() !== "") {
|
if (in_reply_to_field.val() !== "") {
|
||||||
var current_reply_id = "#" + in_reply_to_field.val();
|
var current_reply_id = "#" + in_reply_to_field.val();
|
||||||
var current_reply_to_div = jq(".discussion").find(current_reply_id);
|
var current_reply_to_div = $(".discussion").find(current_reply_id);
|
||||||
createReplyForm(current_reply_to_div);
|
createReplyForm(current_reply_to_div);
|
||||||
clearForm(post_comment_div);
|
clearForm(post_comment_div);
|
||||||
}
|
}
|
||||||
@ -112,8 +111,8 @@ jq(document).ready(function () {
|
|||||||
* If the user hits the "reply" button of an existing comment, create a
|
* If the user hits the "reply" button of an existing comment, create a
|
||||||
* reply form right beneath this comment.
|
* reply form right beneath this comment.
|
||||||
**************************************************************************/
|
**************************************************************************/
|
||||||
jq(".reply-to-comment-button").bind("click", function (e) {
|
$(".reply-to-comment-button").bind("click", function (e) {
|
||||||
var comment_div = jq(this).parents().filter(".comment");
|
var comment_div = $(this).parents().filter(".comment");
|
||||||
createReplyForm(comment_div);
|
createReplyForm(comment_div);
|
||||||
clearForm(comment_div);
|
clearForm(comment_div);
|
||||||
});
|
});
|
||||||
@ -123,17 +122,17 @@ jq(document).ready(function () {
|
|||||||
* If the user hits the "clear" button of an open reply-to-comment form,
|
* If the user hits the "clear" button of an open reply-to-comment form,
|
||||||
* remove the form and show the "reply" button again.
|
* remove the form and show the "reply" button again.
|
||||||
**************************************************************************/
|
**************************************************************************/
|
||||||
jq("#form-buttons-cancel").bind("click", function (e) {
|
$("#form-buttons-cancel").bind("click", function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
var reply_to_comment_button = jq(this).
|
var reply_to_comment_button = $(this).
|
||||||
parents().
|
parents().
|
||||||
filter(".comment").
|
filter(".comment").
|
||||||
find(".reply-to-comment-button");
|
find(".reply-to-comment-button");
|
||||||
|
|
||||||
/* Find the reply-to-comment form and hide and remove it again. */
|
/* Find the reply-to-comment form and hide and remove it again. */
|
||||||
reply_to_comment_form = jq(this).parents().filter(".reply");
|
reply_to_comment_form = $(this).parents().filter(".reply");
|
||||||
reply_to_comment_form.slideUp("slow", function () {
|
reply_to_comment_form.slideUp("slow", function () {
|
||||||
jq(this).remove();
|
$(this).remove();
|
||||||
});
|
});
|
||||||
|
|
||||||
/* Show the reply-to-comment button again. */
|
/* Show the reply-to-comment button again. */
|
||||||
|
@ -4,26 +4,25 @@
|
|||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
|
||||||
dir="ltr" id="html">
|
dir="ltr" id="html">
|
||||||
<head>
|
<head>
|
||||||
<meta name="generator" content=
|
|
||||||
"HTML Tidy, see www.w3.org" />
|
|
||||||
<meta http-equiv="Content-Type" content=
|
|
||||||
"text/html; charset=utf-8" />
|
|
||||||
|
|
||||||
<title>plone.app.discussion comments Test Suite</title>
|
<title>plone.app.discussion comments Test Suite</title>
|
||||||
|
|
||||||
|
<!-- pad js -->
|
||||||
|
<script type="text/javascript" src="../../browser/javascripts/comments.js">
|
||||||
|
</script>
|
||||||
|
|
||||||
<!-- QUnit -->
|
<!-- QUnit -->
|
||||||
<link rel="stylesheet" href="../qunit/qunit.css" type=
|
<link rel="stylesheet" href="../qunit/qunit.css" type=
|
||||||
"text/css" media="screen" />
|
"text/css" media="screen" />
|
||||||
<script type="text/javascript" src="../qunit/qunit.js">
|
<script type="text/javascript" src="../qunit/qunit.js">
|
||||||
</script>
|
</script>
|
||||||
<!-- Scripts -->
|
<!-- Scripts -->
|
||||||
<script type="text/javascript" src="jquery.js">
|
<script type="text/javascript" src="jquery.js">
|
||||||
</script>
|
</script>
|
||||||
<script type="text/javascript" src=
|
|
||||||
"../../browser/javascripts/comments.js">
|
|
||||||
</script>
|
|
||||||
<!-- Tests -->
|
<!-- Tests -->
|
||||||
<script type="text/javascript" src="test_comments.js">
|
<script type="text/javascript" src="test_comments.js">
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
@ -40,5 +39,6 @@
|
|||||||
<ol id="qunit-tests">
|
<ol id="qunit-tests">
|
||||||
</ol>
|
</ol>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
|
|
||||||
|
$(document).ready(function () {
|
||||||
|
|
||||||
|
|
||||||
module("comments", {
|
module("comments", {
|
||||||
setup: function () {
|
setup: function () {
|
||||||
@ -96,5 +98,9 @@ test("Clear all form values from a form.", function() {
|
|||||||
var text = comment_div.find("input[name='form.widgets.text']");
|
var text = comment_div.find("input[name='form.widgets.text']");
|
||||||
equals(author.val(), "", "The author form value should be empty");
|
equals(author.val(), "", "The author form value should be empty");
|
||||||
equals(text.text(), "", "The text form value should be empty");
|
equals(text.text(), "", "The text form value should be empty");
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user