next-boot.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /* global NexT, CONFIG, Velocity */
  2. NexT.boot = {};
  3. NexT.boot.registerEvents = function() {
  4. NexT.utils.registerScrollPercent();
  5. NexT.utils.registerCanIUseTag();
  6. // Mobile top menu bar.
  7. document.querySelector('.site-nav-toggle .toggle').addEventListener('click', () => {
  8. event.currentTarget.classList.toggle('toggle-close');
  9. var siteNav = document.querySelector('.site-nav');
  10. var animateAction = siteNav.classList.contains('site-nav-on') ? 'slideUp' : 'slideDown';
  11. if (typeof Velocity === 'function') {
  12. Velocity(siteNav, animateAction, {
  13. duration: 200,
  14. complete: function() {
  15. siteNav.classList.toggle('site-nav-on');
  16. }
  17. });
  18. } else {
  19. siteNav.classList.toggle('site-nav-on');
  20. }
  21. });
  22. var TAB_ANIMATE_DURATION = 200;
  23. document.querySelectorAll('.sidebar-nav li').forEach((element, index) => {
  24. element.addEventListener('click', event => {
  25. var item = event.currentTarget;
  26. var activeTabClassName = 'sidebar-nav-active';
  27. var activePanelClassName = 'sidebar-panel-active';
  28. if (item.classList.contains(activeTabClassName)) return;
  29. var targets = document.querySelectorAll('.sidebar-panel');
  30. var target = targets[index];
  31. var currentTarget = targets[1 - index];
  32. window.anime({
  33. targets : currentTarget,
  34. duration: TAB_ANIMATE_DURATION,
  35. easing : 'linear',
  36. opacity : 0,
  37. complete: () => {
  38. // Prevent adding TOC to Overview if Overview was selected when close & open sidebar.
  39. currentTarget.classList.remove(activePanelClassName);
  40. target.style.opacity = 0;
  41. target.classList.add(activePanelClassName);
  42. window.anime({
  43. targets : target,
  44. duration: TAB_ANIMATE_DURATION,
  45. easing : 'linear',
  46. opacity : 1
  47. });
  48. }
  49. });
  50. [...item.parentNode.children].forEach(element => {
  51. element.classList.remove(activeTabClassName);
  52. });
  53. item.classList.add(activeTabClassName);
  54. });
  55. });
  56. window.addEventListener('resize', NexT.utils.initSidebarDimension);
  57. window.addEventListener('hashchange', () => {
  58. var tHash = location.hash;
  59. if (tHash !== '' && !tHash.match(/%\S{2}/)) {
  60. var target = document.querySelector(`.tabs ul.nav-tabs li a[href="${tHash}"]`);
  61. target && target.click();
  62. }
  63. });
  64. };
  65. NexT.boot.refresh = function() {
  66. /**
  67. * Register JS handlers by condition option.
  68. * Need to add config option in Front-End at 'layout/_partials/head.swig' file.
  69. */
  70. CONFIG.fancybox && NexT.utils.wrapImageWithFancyBox();
  71. CONFIG.mediumzoom && window.mediumZoom('.post-body :not(a) > img, .post-body > img');
  72. CONFIG.lazyload && window.lozad('.post-body img').observe();
  73. CONFIG.pangu && window.pangu.spacingPage();
  74. CONFIG.exturl && NexT.utils.registerExtURL();
  75. CONFIG.copycode.enable && NexT.utils.registerCopyCode();
  76. NexT.utils.registerTabsTag();
  77. NexT.utils.registerActiveMenuItem();
  78. NexT.utils.registerLangSelect();
  79. NexT.utils.registerSidebarTOC();
  80. NexT.utils.wrapTableWithBox();
  81. NexT.utils.registerVideoIframe();
  82. };
  83. NexT.boot.motion = function() {
  84. // Define Motion Sequence & Bootstrap Motion.
  85. if (CONFIG.motion.enable) {
  86. NexT.motion.integrator
  87. .add(NexT.motion.middleWares.logo)
  88. .add(NexT.motion.middleWares.menu)
  89. .add(NexT.motion.middleWares.postList)
  90. .add(NexT.motion.middleWares.sidebar)
  91. .bootstrap();
  92. }
  93. NexT.utils.updateSidebarPosition();
  94. };
  95. window.addEventListener('DOMContentLoaded', () => {
  96. NexT.boot.registerEvents();
  97. NexT.boot.refresh();
  98. NexT.boot.motion();
  99. });