utils.js 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. /* global NexT, CONFIG */
  2. HTMLElement.prototype.wrap = function(wrapper) {
  3. this.parentNode.insertBefore(wrapper, this);
  4. this.parentNode.removeChild(this);
  5. wrapper.appendChild(this);
  6. };
  7. NexT.utils = {
  8. /**
  9. * Wrap images with fancybox.
  10. */
  11. wrapImageWithFancyBox: function() {
  12. document.querySelectorAll('.post-body :not(a) > img, .post-body > img').forEach(element => {
  13. var $image = $(element);
  14. var imageLink = $image.attr('data-src') || $image.attr('src');
  15. var $imageWrapLink = $image.wrap(`<a class="fancybox fancybox.image" href="${imageLink}" itemscope itemtype="http://schema.org/ImageObject" itemprop="url"></a>`).parent('a');
  16. if ($image.is('.post-gallery img')) {
  17. $imageWrapLink.attr('data-fancybox', 'gallery').attr('rel', 'gallery');
  18. } else if ($image.is('.group-picture img')) {
  19. $imageWrapLink.attr('data-fancybox', 'group').attr('rel', 'group');
  20. } else {
  21. $imageWrapLink.attr('data-fancybox', 'default').attr('rel', 'default');
  22. }
  23. var imageTitle = $image.attr('title') || $image.attr('alt');
  24. if (imageTitle) {
  25. $imageWrapLink.append(`<p class="image-caption">${imageTitle}</p>`);
  26. // Make sure img title tag will show correctly in fancybox
  27. $imageWrapLink.attr('title', imageTitle).attr('data-caption', imageTitle);
  28. }
  29. });
  30. $.fancybox.defaults.hash = false;
  31. $('.fancybox').fancybox({
  32. loop : true,
  33. helpers: {
  34. overlay: {
  35. locked: false
  36. }
  37. }
  38. });
  39. },
  40. registerExtURL: function() {
  41. document.querySelectorAll('span.exturl').forEach(element => {
  42. let link = document.createElement('a');
  43. // https://stackoverflow.com/questions/30106476/using-javascripts-atob-to-decode-base64-doesnt-properly-decode-utf-8-strings
  44. link.href = decodeURIComponent(atob(element.dataset.url).split('').map(c => {
  45. return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
  46. }).join(''));
  47. link.rel = 'noopener external nofollow noreferrer';
  48. link.target = '_blank';
  49. link.className = element.className;
  50. link.innerHTML = element.innerHTML;
  51. element.parentNode.replaceChild(link, element);
  52. });
  53. },
  54. /**
  55. * One-click copy code support.
  56. */
  57. registerCopyCode: function() {
  58. document.querySelectorAll('figure.highlight').forEach(element => {
  59. const box = document.createElement('div');
  60. element.wrap(box);
  61. box.classList.add('highlight-container');
  62. box.insertAdjacentHTML('beforeend', '<div class="copy-btn"><i class="fa fa-clipboard"></i></div>');
  63. var button = element.parentNode.querySelector('.copy-btn');
  64. button.addEventListener('click', event => {
  65. var target = event.currentTarget;
  66. var code = [...target.parentNode.querySelectorAll('.code .line')].map(line => line.innerText).join('\n');
  67. var ta = document.createElement('textarea');
  68. ta.style.top = window.scrollY + 'px'; // Prevent page scrolling
  69. ta.style.position = 'absolute';
  70. ta.style.opacity = '0';
  71. ta.readOnly = true;
  72. ta.value = code;
  73. document.body.append(ta);
  74. const selection = document.getSelection();
  75. const selected = selection.rangeCount > 0 ? selection.getRangeAt(0) : false;
  76. ta.select();
  77. ta.setSelectionRange(0, code.length);
  78. ta.readOnly = false;
  79. var result = document.execCommand('copy');
  80. if (CONFIG.copycode.show_result) {
  81. target.querySelector('i').className = result ? 'fa fa-check' : 'fa fa-times';
  82. }
  83. ta.blur(); // For iOS
  84. target.blur();
  85. if (selected) {
  86. selection.removeAllRanges();
  87. selection.addRange(selected);
  88. }
  89. document.body.removeChild(ta);
  90. });
  91. button.addEventListener('mouseleave', event => {
  92. setTimeout(() => {
  93. event.target.querySelector('i').className = 'fa fa-clipboard';
  94. }, 300);
  95. });
  96. });
  97. },
  98. wrapTableWithBox: function() {
  99. document.querySelectorAll('table').forEach(element => {
  100. const box = document.createElement('div');
  101. box.className = 'table-container';
  102. element.wrap(box);
  103. });
  104. },
  105. registerVideoIframe: function() {
  106. document.querySelectorAll('iframe').forEach(element => {
  107. const supported = [
  108. 'www.youtube.com',
  109. 'player.vimeo.com',
  110. 'player.youku.com',
  111. 'player.bilibili.com',
  112. 'www.tudou.com'
  113. ].some(host => element.src.includes(host));
  114. if (supported && !element.parentNode.matches('.video-container')) {
  115. const box = document.createElement('div');
  116. box.className = 'video-container';
  117. element.wrap(box);
  118. let width = Number(element.width);
  119. let height = Number(element.height);
  120. if (width && height) {
  121. element.parentNode.style.paddingTop = (height / width * 100) + '%';
  122. }
  123. }
  124. });
  125. },
  126. registerScrollPercent: function() {
  127. var THRESHOLD = 50;
  128. var backToTop = document.querySelector('.back-to-top');
  129. var readingProgressBar = document.querySelector('.reading-progress-bar');
  130. // For init back to top in sidebar if page was scrolled after page refresh.
  131. window.addEventListener('scroll', () => {
  132. if (backToTop || readingProgressBar) {
  133. var docHeight = document.querySelector('.container').offsetHeight;
  134. var winHeight = window.innerHeight;
  135. var contentVisibilityHeight = docHeight > winHeight ? docHeight - winHeight : document.body.scrollHeight - winHeight;
  136. var scrollPercent = Math.min(100 * window.scrollY / contentVisibilityHeight, 100);
  137. if (backToTop) {
  138. backToTop.classList.toggle('back-to-top-on', window.scrollY > THRESHOLD);
  139. backToTop.querySelector('span').innerText = Math.round(scrollPercent) + '%';
  140. }
  141. if (readingProgressBar) {
  142. readingProgressBar.style.width = scrollPercent.toFixed(2) + '%';
  143. }
  144. }
  145. });
  146. backToTop && backToTop.addEventListener('click', () => {
  147. window.anime({
  148. targets : document.scrollingElement,
  149. duration : 500,
  150. easing : 'linear',
  151. scrollTop: 0
  152. });
  153. });
  154. },
  155. /**
  156. * Tabs tag listener (without twitter bootstrap).
  157. */
  158. registerTabsTag: function() {
  159. // Binding `nav-tabs` & `tab-content` by real time permalink changing.
  160. document.querySelectorAll('.tabs ul.nav-tabs .tab').forEach(element => {
  161. element.addEventListener('click', event => {
  162. event.preventDefault();
  163. var target = event.currentTarget;
  164. // Prevent selected tab to select again.
  165. if (!target.classList.contains('active')) {
  166. // Add & Remove active class on `nav-tabs` & `tab-content`.
  167. [...target.parentNode.children].forEach(element => {
  168. element.classList.remove('active');
  169. });
  170. target.classList.add('active');
  171. var tActive = document.getElementById(target.querySelector('a').getAttribute('href').replace('#', ''));
  172. [...tActive.parentNode.children].forEach(element => {
  173. element.classList.remove('active');
  174. });
  175. tActive.classList.add('active');
  176. // Trigger event
  177. tActive.dispatchEvent(new Event('tabs:click', {
  178. bubbles: true
  179. }));
  180. }
  181. });
  182. });
  183. window.dispatchEvent(new Event('tabs:register'));
  184. },
  185. registerCanIUseTag: function() {
  186. // Get responsive height passed from iframe.
  187. window.addEventListener('message', ({ data }) => {
  188. if ((typeof data === 'string') && data.includes('ciu_embed')) {
  189. var featureID = data.split(':')[1];
  190. var height = data.split(':')[2];
  191. document.querySelector(`iframe[data-feature=${featureID}]`).style.height = parseInt(height, 10) + 5 + 'px';
  192. }
  193. }, false);
  194. },
  195. registerActiveMenuItem: function() {
  196. document.querySelectorAll('.menu-item').forEach(element => {
  197. var target = element.querySelector('a[href]');
  198. if (!target) return;
  199. var isSamePath = target.pathname === location.pathname || target.pathname === location.pathname.replace('index.html', '');
  200. var isSubPath = !CONFIG.root.startsWith(target.pathname) && location.pathname.startsWith(target.pathname);
  201. element.classList.toggle('menu-item-active', target.hostname === location.hostname && (isSamePath || isSubPath));
  202. });
  203. },
  204. registerLangSelect: function() {
  205. let sel = document.querySelector('.lang-select');
  206. if (!sel) return;
  207. sel.value = CONFIG.page.lang;
  208. sel.addEventListener('change', () => {
  209. let target = sel.options[sel.selectedIndex];
  210. document.querySelector('.lang-select-label span').innerText = target.text;
  211. let url = target.dataset.href;
  212. window.pjax ? window.pjax.loadUrl(url) : window.location.href = url;
  213. });
  214. },
  215. registerSidebarTOC: function() {
  216. const navItems = document.querySelectorAll('.post-toc li');
  217. const sections = [...navItems].map(element => {
  218. var link = element.querySelector('a.nav-link');
  219. // TOC item animation navigate.
  220. link.addEventListener('click', event => {
  221. event.preventDefault();
  222. var target = document.getElementById(event.currentTarget.getAttribute('href').replace('#', ''));
  223. var offset = target.getBoundingClientRect().top + window.scrollY;
  224. window.anime({
  225. targets : document.scrollingElement,
  226. duration : 500,
  227. easing : 'linear',
  228. scrollTop: offset + 10
  229. });
  230. });
  231. return document.getElementById(link.getAttribute('href').replace('#', ''));
  232. });
  233. var tocElement = document.querySelector('.post-toc-wrap');
  234. function activateNavByIndex(target) {
  235. if (target.classList.contains('active-current')) return;
  236. document.querySelectorAll('.post-toc .active').forEach(element => {
  237. element.classList.remove('active', 'active-current');
  238. });
  239. target.classList.add('active', 'active-current');
  240. var parent = target.parentNode;
  241. while (!parent.matches('.post-toc')) {
  242. if (parent.matches('li')) parent.classList.add('active');
  243. parent = parent.parentNode;
  244. }
  245. // Scrolling to center active TOC element if TOC content is taller then viewport.
  246. window.anime({
  247. targets : tocElement,
  248. duration : 200,
  249. easing : 'linear',
  250. scrollTop: tocElement.scrollTop - (tocElement.offsetHeight / 2) + target.getBoundingClientRect().top - tocElement.getBoundingClientRect().top
  251. });
  252. }
  253. function findIndex(entries) {
  254. let index = 0;
  255. let entry = entries[index];
  256. if (entry.boundingClientRect.top > 0) {
  257. index = sections.indexOf(entry.target);
  258. return index === 0 ? 0 : index - 1;
  259. }
  260. for (; index < entries.length; index++) {
  261. if (entries[index].boundingClientRect.top <= 0) {
  262. entry = entries[index];
  263. } else {
  264. return sections.indexOf(entry.target);
  265. }
  266. }
  267. return sections.indexOf(entry.target);
  268. }
  269. function createIntersectionObserver(marginTop) {
  270. marginTop = Math.floor(marginTop + 10000);
  271. let intersectionObserver = new IntersectionObserver((entries, observe) => {
  272. let scrollHeight = document.documentElement.scrollHeight + 100;
  273. if (scrollHeight > marginTop) {
  274. observe.disconnect();
  275. createIntersectionObserver(scrollHeight);
  276. return;
  277. }
  278. let index = findIndex(entries);
  279. activateNavByIndex(navItems[index]);
  280. }, {
  281. rootMargin: marginTop + 'px 0px -100% 0px',
  282. threshold : 0
  283. });
  284. sections.forEach(element => {
  285. element && intersectionObserver.observe(element);
  286. });
  287. }
  288. createIntersectionObserver(document.documentElement.scrollHeight);
  289. },
  290. hasMobileUA: function() {
  291. let ua = navigator.userAgent;
  292. let pa = /iPad|iPhone|Android|Opera Mini|BlackBerry|webOS|UCWEB|Blazer|PSP|IEMobile|Symbian/g;
  293. return pa.test(ua);
  294. },
  295. isTablet: function() {
  296. return window.screen.width < 992 && window.screen.width > 767 && this.hasMobileUA();
  297. },
  298. isMobile: function() {
  299. return window.screen.width < 767 && this.hasMobileUA();
  300. },
  301. isDesktop: function() {
  302. return !this.isTablet() && !this.isMobile();
  303. },
  304. supportsPDFs: function() {
  305. let ua = navigator.userAgent;
  306. let isFirefoxWithPDFJS = ua.includes('irefox') && parseInt(ua.split('rv:')[1].split('.')[0], 10) > 18;
  307. let supportsPdfMimeType = typeof navigator.mimeTypes['application/pdf'] !== 'undefined';
  308. let isIOS = /iphone|ipad|ipod/i.test(ua.toLowerCase());
  309. return isFirefoxWithPDFJS || (supportsPdfMimeType && !isIOS);
  310. },
  311. /**
  312. * Init Sidebar & TOC inner dimensions on all pages and for all schemes.
  313. * Need for Sidebar/TOC inner scrolling if content taller then viewport.
  314. */
  315. initSidebarDimension: function() {
  316. var sidebarNav = document.querySelector('.sidebar-nav');
  317. var sidebarNavHeight = sidebarNav.style.display !== 'none' ? sidebarNav.offsetHeight : 0;
  318. var sidebarOffset = CONFIG.sidebar.offset || 12;
  319. var sidebarb2tHeight = CONFIG.back2top.enable && CONFIG.back2top.sidebar ? document.querySelector('.back-to-top').offsetHeight : 0;
  320. var sidebarSchemePadding = (CONFIG.sidebar.padding * 2) + sidebarNavHeight + sidebarb2tHeight;
  321. // Margin of sidebar b2t: -4px -10px -18px, brings a different of 22px.
  322. if (CONFIG.scheme === 'Pisces' || CONFIG.scheme === 'Gemini') sidebarSchemePadding += (sidebarOffset * 2) - 22;
  323. // Initialize Sidebar & TOC Height.
  324. var sidebarWrapperHeight = document.body.offsetHeight - sidebarSchemePadding + 'px';
  325. document.querySelector('.site-overview-wrap').style.maxHeight = sidebarWrapperHeight;
  326. document.querySelector('.post-toc-wrap').style.maxHeight = sidebarWrapperHeight;
  327. },
  328. updateSidebarPosition: function() {
  329. var sidebarNav = document.querySelector('.sidebar-nav');
  330. var hasTOC = document.querySelector('.post-toc');
  331. if (hasTOC) {
  332. sidebarNav.style.display = '';
  333. sidebarNav.classList.add('motion-element');
  334. document.querySelector('.sidebar-nav-toc').click();
  335. } else {
  336. sidebarNav.style.display = 'none';
  337. sidebarNav.classList.remove('motion-element');
  338. document.querySelector('.sidebar-nav-overview').click();
  339. }
  340. NexT.utils.initSidebarDimension();
  341. if (!this.isDesktop() || CONFIG.scheme === 'Pisces' || CONFIG.scheme === 'Gemini') return;
  342. // Expand sidebar on post detail page by default, when post has a toc.
  343. var display = CONFIG.page.sidebar;
  344. if (typeof display !== 'boolean') {
  345. // There's no definition sidebar in the page front-matter.
  346. display = CONFIG.sidebar.display === 'always' || (CONFIG.sidebar.display === 'post' && hasTOC);
  347. }
  348. if (display) {
  349. window.dispatchEvent(new Event('sidebar:show'));
  350. }
  351. },
  352. getScript: function(url, callback, condition) {
  353. if (condition) {
  354. callback();
  355. } else {
  356. var script = document.createElement('script');
  357. script.onload = script.onreadystatechange = function(_, isAbort) {
  358. if (isAbort || !script.readyState || /loaded|complete/.test(script.readyState)) {
  359. script.onload = script.onreadystatechange = null;
  360. script = undefined;
  361. if (!isAbort && callback) setTimeout(callback, 0);
  362. }
  363. };
  364. script.src = url;
  365. document.head.appendChild(script);
  366. }
  367. },
  368. loadComments: function(element, callback) {
  369. if (!CONFIG.comments.lazyload || !element) {
  370. callback();
  371. return;
  372. }
  373. let intersectionObserver = new IntersectionObserver((entries, observer) => {
  374. let entry = entries[0];
  375. if (entry.isIntersecting) {
  376. callback();
  377. observer.disconnect();
  378. }
  379. });
  380. intersectionObserver.observe(element);
  381. return intersectionObserver;
  382. }
  383. };