HummingBirdAnimeClient/public/js/anime_edit.js

62 lines
1.5 KiB
JavaScript
Executable File

/**
* Javascript for editing anime, if logged in
*/
(function($){
"use strict";
if (CONTROLLER !== "anime") return;
// Action to increment episode count
$(".plus_one").on("click", function(e) {
e.stopPropagation();
var self = this;
var this_sel = $(this);
var parent_sel = $(this).closest("article, td");
var watched_count = parseInt(parent_sel.find('.completed_number').text(), 10);
var total_count = parseInt(parent_sel.find('.total_number').text(), 10);
var title = parent_sel.find('.name a').text();
// Setup the update data
var data = {
id: this_sel.parent('article, td').attr('id'),
increment_episodes: true
};
// If the episode count is 0, and incremented,
// change status to currently watching
if (isNaN(watched_count) || watched_count === 0)
{
data.status = "currently-watching";
}
// If you increment at the last episode, mark as completed
if (( ! isNaN(watched_count)) && (watched_count + 1) === total_count)
{
delete data.increment_episodes;
data.status = "completed";
}
// okay, lets actually make some changes!
$.ajax({
data: data,
dataType: 'json',
method: 'POST',
mimeType: 'application/json',
url: BASE_URL + CONTROLLER + '/update'
}).done(function(res) {
if (res.status === 'completed')
{
$(self).closest('article, tr').hide();
}
add_message('success', "Sucessfully updated " + title);
parent_sel.find('.completed_number').text(++watched_count);
}).fail(function() {
add_message('error', "Failed to updated " + title);
});
});
}(jQuery));