mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-17 18:22:33 +00:00
129 lines
4.0 KiB
JavaScript
129 lines
4.0 KiB
JavaScript
/* global NexT, CONFIG */
|
|
|
|
NexT.boot = {};
|
|
|
|
NexT.boot.registerEvents = function() {
|
|
|
|
NexT.utils.registerScrollPercent();
|
|
NexT.utils.registerCanIUseTag();
|
|
|
|
// Mobile top menu bar.
|
|
document.querySelector('.site-nav-toggle .toggle').addEventListener('click', event => {
|
|
event.currentTarget.classList.toggle('toggle-close');
|
|
const siteNav = document.querySelector('.site-nav');
|
|
if (!siteNav) return;
|
|
const animateAction = siteNav.classList.contains('site-nav-on');
|
|
const height = NexT.utils.getComputedStyle(siteNav);
|
|
siteNav.style.height = animateAction ? height : 0;
|
|
const toggle = () => siteNav.classList.toggle('site-nav-on');
|
|
const begin = () => {
|
|
siteNav.style.overflow = 'hidden';
|
|
};
|
|
const complete = () => {
|
|
siteNav.style.overflow = '';
|
|
siteNav.style.height = '';
|
|
};
|
|
window.anime(Object.assign({
|
|
targets : siteNav,
|
|
duration: 200,
|
|
height : animateAction ? [height, 0] : [0, height],
|
|
easing : 'linear'
|
|
}, animateAction ? {
|
|
begin,
|
|
complete: () => {
|
|
complete();
|
|
toggle();
|
|
}
|
|
} : {
|
|
begin: () => {
|
|
begin();
|
|
toggle();
|
|
},
|
|
complete
|
|
}));
|
|
});
|
|
|
|
const TAB_ANIMATE_DURATION = 200;
|
|
document.querySelectorAll('.sidebar-nav li').forEach((element, index) => {
|
|
element.addEventListener('click', event => {
|
|
const item = event.currentTarget;
|
|
if (item.matches('.sidebar-toc-active .sidebar-nav-toc, .sidebar-overview-active .sidebar-nav-overview')) return;
|
|
const sidebar = document.querySelector('.sidebar-inner');
|
|
const panel = document.querySelectorAll('.sidebar-panel');
|
|
const activeClassName = ['sidebar-toc-active', 'sidebar-overview-active'];
|
|
|
|
window.anime({
|
|
targets : panel[1 - index],
|
|
duration: TAB_ANIMATE_DURATION,
|
|
easing : 'linear',
|
|
opacity : 0,
|
|
complete: () => {
|
|
// Prevent adding TOC to Overview if Overview was selected when close & open sidebar.
|
|
sidebar.classList.remove(activeClassName[1 - index]);
|
|
panel[index].style.opacity = 0;
|
|
sidebar.classList.add(activeClassName[index]);
|
|
window.anime({
|
|
targets : panel[index],
|
|
duration: TAB_ANIMATE_DURATION,
|
|
easing : 'linear',
|
|
opacity : 1
|
|
});
|
|
}
|
|
});
|
|
});
|
|
});
|
|
|
|
window.addEventListener('resize', NexT.utils.initSidebarDimension);
|
|
|
|
window.addEventListener('hashchange', () => {
|
|
const tHash = location.hash;
|
|
if (tHash !== '' && !tHash.match(/%\S{2}/)) {
|
|
const target = document.querySelector(`.tabs ul.nav-tabs li a[href="${tHash}"]`);
|
|
target && target.click();
|
|
}
|
|
});
|
|
};
|
|
|
|
NexT.boot.refresh = function() {
|
|
|
|
/**
|
|
* Register JS handlers by condition option.
|
|
* Need to add config option in Front-End at 'layout/_partials/head.njk' file.
|
|
*/
|
|
CONFIG.prism && window.Prism.highlightAll();
|
|
CONFIG.fancybox && NexT.utils.wrapImageWithFancyBox();
|
|
CONFIG.mediumzoom && window.mediumZoom('.post-body :not(a) > img, .post-body > img', {
|
|
background: 'var(--content-bg-color)'
|
|
});
|
|
CONFIG.lazyload && window.lozad('.post-body img').observe();
|
|
CONFIG.pangu && window.pangu.spacingPage();
|
|
|
|
CONFIG.exturl && NexT.utils.registerExtURL();
|
|
NexT.utils.registerCopyCode();
|
|
NexT.utils.registerTabsTag();
|
|
NexT.utils.registerActiveMenuItem();
|
|
NexT.utils.registerLangSelect();
|
|
NexT.utils.registerSidebarTOC();
|
|
NexT.utils.wrapTableWithBox();
|
|
NexT.utils.registerVideoIframe();
|
|
};
|
|
|
|
NexT.boot.motion = function() {
|
|
// Define Motion Sequence & Bootstrap Motion.
|
|
if (CONFIG.motion.enable) {
|
|
NexT.motion.integrator
|
|
.add(NexT.motion.middleWares.header)
|
|
.add(NexT.motion.middleWares.postList)
|
|
.add(NexT.motion.middleWares.sidebar)
|
|
.add(NexT.motion.middleWares.footer)
|
|
.bootstrap();
|
|
}
|
|
NexT.utils.updateSidebarPosition();
|
|
};
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
NexT.boot.registerEvents();
|
|
NexT.boot.refresh();
|
|
NexT.boot.motion();
|
|
});
|