2020-04-10 15:07:08 -04:00
|
|
|
import _ from './anime-client.js';
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Event subscriptions
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
_.on('header', 'click', '.message', hide);
|
|
|
|
_.on('form.js-delete', 'submit', confirmDelete);
|
|
|
|
_.on('.js-clear-cache', 'click', clearAPICache);
|
|
|
|
_.on('.vertical-tabs input', 'change', scrollToSection);
|
|
|
|
_.on('.media-filter', 'input', filterMedia);
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Handler functions
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2018-08-20 12:58:56 -04:00
|
|
|
/**
|
2020-04-10 15:07:08 -04:00
|
|
|
* Hide the html element attached to the event
|
|
|
|
*
|
2021-04-23 18:58:51 -04:00
|
|
|
* @param {MouseEvent} event
|
2020-04-10 15:07:08 -04:00
|
|
|
* @return void
|
2018-08-20 12:58:56 -04:00
|
|
|
*/
|
2020-04-10 15:07:08 -04:00
|
|
|
function hide (event) {
|
|
|
|
_.hide(event.target)
|
|
|
|
}
|
2018-08-20 12:58:56 -04:00
|
|
|
|
2020-04-10 15:07:08 -04:00
|
|
|
/**
|
|
|
|
* Confirm deletion of an item
|
|
|
|
*
|
2021-04-23 18:58:51 -04:00
|
|
|
* @param {MouseEvent} event
|
2020-04-10 15:07:08 -04:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function confirmDelete (event) {
|
2018-08-20 12:58:56 -04:00
|
|
|
const proceed = confirm('Are you ABSOLUTELY SURE you want to delete this item?');
|
|
|
|
|
|
|
|
if (proceed === false) {
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
|
|
|
}
|
2020-04-10 15:07:08 -04:00
|
|
|
}
|
2018-08-20 12:58:56 -04:00
|
|
|
|
2020-04-10 15:07:08 -04:00
|
|
|
/**
|
|
|
|
* Clear the API cache, and show a message if the cache is cleared
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function clearAPICache () {
|
2018-08-20 12:58:56 -04:00
|
|
|
_.get('/cache_purge', () => {
|
|
|
|
_.showMessage('success', 'Successfully purged api cache');
|
|
|
|
});
|
2020-04-10 15:07:08 -04:00
|
|
|
}
|
2018-11-01 22:01:09 -04:00
|
|
|
|
2020-04-10 15:07:08 -04:00
|
|
|
/**
|
|
|
|
* Scroll to the accordion/vertical tab section just opened
|
|
|
|
*
|
2021-04-23 18:58:51 -04:00
|
|
|
* @param {InputEvent} event
|
2020-04-10 15:07:08 -04:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function scrollToSection (event) {
|
2018-11-01 22:01:09 -04:00
|
|
|
const el = event.currentTarget.parentElement;
|
|
|
|
const rect = el.getBoundingClientRect();
|
|
|
|
|
|
|
|
const top = rect.top + window.pageYOffset;
|
|
|
|
|
|
|
|
window.scrollTo({
|
|
|
|
top,
|
|
|
|
behavior: 'smooth',
|
|
|
|
});
|
2020-04-10 15:07:08 -04:00
|
|
|
}
|
2019-07-10 13:32:05 -04:00
|
|
|
|
2020-04-10 15:07:08 -04:00
|
|
|
/**
|
|
|
|
* Filter an anime or manga list
|
|
|
|
*
|
2021-04-23 18:58:51 -04:00
|
|
|
* @param {InputEvent} event
|
2020-04-10 15:07:08 -04:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function filterMedia (event) {
|
2019-07-10 13:32:05 -04:00
|
|
|
const rawFilter = event.target.value;
|
|
|
|
const filter = new RegExp(rawFilter, 'i');
|
|
|
|
|
|
|
|
// console.log('Filtering items by: ', filter);
|
|
|
|
|
|
|
|
if (rawFilter !== '') {
|
|
|
|
// Filter the cover view
|
|
|
|
_.$('article.media').forEach(article => {
|
|
|
|
const titleLink = _.$('.name a', article)[0];
|
|
|
|
const title = String(titleLink.textContent).trim();
|
|
|
|
if ( ! filter.test(title)) {
|
|
|
|
_.hide(article);
|
|
|
|
} else {
|
|
|
|
_.show(article);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Filter the list view
|
|
|
|
_.$('table.media-wrap tbody tr').forEach(tr => {
|
|
|
|
const titleCell = _.$('td.align-left', tr)[0];
|
|
|
|
const titleLink = _.$('a', titleCell)[0];
|
|
|
|
const linkTitle = String(titleLink.textContent).trim();
|
|
|
|
const textTitle = String(titleCell.textContent).trim();
|
|
|
|
if ( ! (filter.test(linkTitle) || filter.test(textTitle))) {
|
|
|
|
_.hide(tr);
|
|
|
|
} else {
|
|
|
|
_.show(tr);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2019-07-15 16:05:29 -04:00
|
|
|
_.show('article.media');
|
|
|
|
_.show('table.media-wrap tbody tr');
|
2019-07-10 13:32:05 -04:00
|
|
|
}
|
2020-04-10 15:07:08 -04:00
|
|
|
}
|