HummingBirdAnimeClient/public/js/manga_edit.js

65 lines
1.7 KiB
JavaScript
Raw Normal View History

/**
* Javascript for editing manga, if logged in
*/
2016-02-08 20:21:41 -05:00
((_) => {
2015-11-13 16:31:01 -05:00
2016-02-01 09:49:18 -05:00
'use strict';
2017-01-09 21:38:42 -05:00
_.on('.manga.list', 'click', '.edit_buttons button', function() {
2016-02-08 20:21:41 -05:00
let this_sel = this;
let parent_sel = _.closestParent(this, 'article');
2016-02-08 20:21:41 -05:00
let manga_id = parent_sel.id.replace("manga-", "");
let type = this_sel.classList.contains("plus_one_chapter") ? 'chapter' : 'volume';
let completed = parseInt(_.$(`.${type}s_read`, parent_sel)[0].textContent, 10);
let total = parseInt(_.$(`.${type}_count`, parent_sel)[0].textContent, 10);
let manga_name = _.$('.name', parent_sel)[0].textContent;
2016-02-02 11:34:03 -05:00
if (isNaN(completed)) {
completed = 0;
}
// Setup the update data
2016-02-01 09:49:18 -05:00
let data = {
id: manga_id,
data: {
progress: completed
}
};
2017-01-09 21:38:42 -05:00
// If the episode count is 0, and incremented,
// change status to currently reading
if (isNaN(completed) || completed === 0) {
data.data.status = 'current';
}
// If you increment at the last chapter, mark as completed
if (( ! isNaN(completed)) && (completed + 1) == total) {
data.data.status = 'completed';
}
// Update the total count
data['data']['progress'] = ++completed;
2016-02-08 20:21:41 -05:00
_.ajax(_.url('/manga/update'), {
2015-11-13 16:31:01 -05:00
data: data,
dataType: 'json',
2016-02-02 11:34:03 -05:00
type: 'POST',
2015-11-13 16:31:01 -05:00
mimeType: 'application/json',
2017-01-09 21:38:42 -05:00
success: () => {
if (data.data.status == 'completed') {
_.hide(parent_sel);
}
2016-02-08 20:21:41 -05:00
_.$(`.${type}s_read`, parent_sel)[0].textContent = completed;
_.showMessage('success', `Sucessfully updated ${manga_name}`);
_.scrollToTop();
2016-02-02 11:34:03 -05:00
},
error: (xhr, errorType, error) => {
console.error(error);
2016-02-08 20:21:41 -05:00
_.showMessage('error', `Failed to updated ${manga_name}`);
_.scrollToTop();
2016-02-02 11:34:03 -05:00
}
});
});
2016-02-08 20:21:41 -05:00
})(AnimeClient);