import _ from './anime-client.js' import { renderMangaSearchResults } from './template-helpers.js' const search = (query) => { _.show('.cssload-loader'); _.get(_.url('/manga/search'), { query }, (searchResults, status) => { searchResults = JSON.parse(searchResults); _.hide('.cssload-loader'); _.$('#series-list')[ 0 ].innerHTML = renderMangaSearchResults(searchResults.data); }); }; if (_.hasElement('.manga #search')) { _.on('#search', 'input', _.throttle(250, (e) => { let query = encodeURIComponent(e.target.value); if (query === '') { return; } search(query); })); } /** * Javascript for editing manga, if logged in */ _.on('.manga.list', 'click', '.edit-buttons button', (e) => { let thisSel = e.target; let parentSel = _.closestParent(e.target, 'article'); let type = thisSel.classList.contains('plus-one-chapter') ? 'chapter' : 'volume'; let completed = parseInt(_.$(`.${type}s_read`, parentSel)[ 0 ].textContent, 10) || 0; let total = parseInt(_.$(`.${type}_count`, parentSel)[ 0 ].textContent, 10); let mangaName = _.$('.name', parentSel)[ 0 ].textContent; if (isNaN(completed)) { completed = 0; } // Setup the update data let data = { id: parentSel.dataset.kitsuId, mal_id: parentSel.dataset.malId, data: { progress: completed } }; // 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; _.show('#loading-shadow'); _.ajax(_.url('/manga/increment'), { data, dataType: 'json', type: 'POST', mimeType: 'application/json', success: () => { if (data.data.status === 'completed') { _.hide(parentSel); } _.hide('#loading-shadow'); _.$(`.${type}s_read`, parentSel)[ 0 ].textContent = completed; _.showMessage('success', `Successfully updated ${mangaName}`); _.scrollToTop(); }, error: () => { _.hide('#loading-shadow'); _.showMessage('error', `Failed to update ${mangaName}`); _.scrollToTop(); } }); });