mirror of
https://bitbucket.org/skobkin/chrome_point_plus.git
synced 2024-11-14 14:53:05 +00:00
AJAX comment sending indictaion
This commit is contained in:
parent
74c0e0319f
commit
639b72620b
|
@ -192,3 +192,27 @@ div#markItUpText-input {
|
||||||
|
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pp-progress.reply-form {
|
||||||
|
margin-top: 8px;
|
||||||
|
padding-top: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pp-progress.reply-form::before {
|
||||||
|
content: '';
|
||||||
|
display: block;
|
||||||
|
height: 4px;
|
||||||
|
background: linear-gradient(to right, #fff, #9aacbe, #fff);
|
||||||
|
-webkit-animation: loading 1s;
|
||||||
|
-webkit-animation-iteration-count: infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes loading {
|
||||||
|
from {
|
||||||
|
background-position: -640px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
to {
|
||||||
|
background-position: 0 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -509,18 +509,28 @@ function PointPlus(ppVersion) {
|
||||||
|
|
||||||
// Binding new
|
// Binding new
|
||||||
$('#comments').on('keypress.pp', '.reply-form textarea', function (evt) {
|
$('#comments').on('keypress.pp', '.reply-form textarea', function (evt) {
|
||||||
|
var $textarea = $(this);
|
||||||
|
var $post;
|
||||||
|
var $form;
|
||||||
|
var processClass = 'pp-progress'
|
||||||
|
var csRf;
|
||||||
|
|
||||||
if ((evt.keyCode === 10 || evt.keyCode === 13) && (evt.ctrlKey || evt.metaKey)) {
|
if ((evt.keyCode === 10 || evt.keyCode === 13) && (evt.ctrlKey || evt.metaKey)) {
|
||||||
evt.stopPropagation();
|
evt.stopPropagation();
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
|
|
||||||
var $post = $(this).parents('.post').first();
|
$post = $textarea.parents('.post').first();
|
||||||
var csRf = $(this).siblings('input[name="csrf_token"]').val();
|
csRf = $textarea.siblings('input[name="csrf_token"]').val();
|
||||||
|
|
||||||
|
$textarea.prop('disabled', true);
|
||||||
|
$form = $textarea.parent();
|
||||||
|
$form.addClass(processClass);
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type: 'POST',
|
type: 'POST',
|
||||||
url: '/api/post/' + $post.data('id'),
|
url: '/api/post/' + $post.data('id'),
|
||||||
data: {
|
data: {
|
||||||
text: $(this).val(),
|
text: $textarea.val(),
|
||||||
comment_id: $post.data('comment-id')
|
comment_id: $post.data('comment-id')
|
||||||
},
|
},
|
||||||
error: function(req, status, error) {
|
error: function(req, status, error) {
|
||||||
|
@ -528,6 +538,9 @@ function PointPlus(ppVersion) {
|
||||||
console.log('Status: %s', status);
|
console.log('Status: %s', status);
|
||||||
|
|
||||||
alert(chrome.i18n.getMessage('msg_comment_send_failed') + '\n' + error);
|
alert(chrome.i18n.getMessage('msg_comment_send_failed') + '\n' + error);
|
||||||
|
|
||||||
|
$textarea.prop('disabled', false);
|
||||||
|
$form.removeClass(processClass);
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
* @param {object} data Response data
|
* @param {object} data Response data
|
||||||
|
@ -549,7 +562,7 @@ function PointPlus(ppVersion) {
|
||||||
toId: $post.data('comment-id') || null,
|
toId: $post.data('comment-id') || null,
|
||||||
postId: $post.data('id'),
|
postId: $post.data('id'),
|
||||||
author: $('#name h1').text(),
|
author: $('#name h1').text(),
|
||||||
text: $(this).val(),
|
text: $textarea.val(),
|
||||||
fadeOut: true
|
fadeOut: true
|
||||||
}, function($comment) {
|
}, function($comment) {
|
||||||
// If list mode or not addressed to other comment
|
// If list mode or not addressed to other comment
|
||||||
|
@ -573,10 +586,12 @@ function PointPlus(ppVersion) {
|
||||||
});
|
});
|
||||||
|
|
||||||
// Cleaning textarea
|
// Cleaning textarea
|
||||||
$(this).val('');
|
$textarea.val('');
|
||||||
|
$textarea.prop('disabled', false);
|
||||||
|
|
||||||
|
$form.removeClass(processClass);
|
||||||
}
|
}
|
||||||
}.bind(this),
|
},
|
||||||
beforeSend: function (xhr) {
|
beforeSend: function (xhr) {
|
||||||
xhr.setRequestHeader('X-CSRF', csRf);
|
xhr.setRequestHeader('X-CSRF', csRf);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue