| 
									
										
										
										
											2017-04-15 01:47:33 +08:00
										 |  |  | const Clipboard = require("clipboard"); | 
					
						
							| 
									
										
										
										
											2017-05-28 20:16:21 +08:00
										 |  |  | const Code = require('../code'); | 
					
						
							| 
									
										
										
										
											2015-12-31 04:48:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-15 01:47:33 +08:00
										 |  |  | let setupPageShow = window.setupPageShow = function (pageId) { | 
					
						
							| 
									
										
										
										
											2015-12-31 04:48:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-28 20:16:21 +08:00
										 |  |  |     Code.highlight(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!pageId) return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-31 04:48:57 +08:00
										 |  |  |     // Set up pointer
 | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |     let $pointer = $('#pointer').detach(); | 
					
						
							| 
									
										
										
										
											2017-01-21 22:56:47 +08:00
										 |  |  |     let pointerShowing = false; | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |     let $pointerInner = $pointer.children('div.pointer').first(); | 
					
						
							|  |  |  |     let isSelection = false; | 
					
						
							| 
									
										
										
										
											2017-01-21 22:56:47 +08:00
										 |  |  |     let pointerModeLink = true; | 
					
						
							|  |  |  |     let pointerSectionId = ''; | 
					
						
							| 
									
										
										
										
											2015-12-31 04:48:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // Select all contents on input click
 | 
					
						
							| 
									
										
										
										
											2016-02-12 06:23:19 +08:00
										 |  |  |     $pointer.on('click', 'input', function (e) { | 
					
						
							| 
									
										
										
										
											2015-12-31 04:48:57 +08:00
										 |  |  |         $(this).select(); | 
					
						
							|  |  |  |         e.stopPropagation(); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-21 22:56:47 +08:00
										 |  |  |     // Pointer mode toggle
 | 
					
						
							|  |  |  |     $pointer.on('click', 'span.icon', event => { | 
					
						
							|  |  |  |         let $icon = $(event.currentTarget); | 
					
						
							|  |  |  |         pointerModeLink = !pointerModeLink; | 
					
						
							|  |  |  |         $icon.html(pointerModeLink ? '<i class="zmdi zmdi-link"></i>' : '<i class="zmdi zmdi-square-down"></i>'); | 
					
						
							|  |  |  |         updatePointerContent(); | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-01-21 22:56:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // Set up clipboard
 | 
					
						
							|  |  |  |     let clipboard = new Clipboard('#pointer button'); | 
					
						
							| 
									
										
										
										
											2015-12-31 04:48:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // Hide pointer when clicking away
 | 
					
						
							| 
									
										
										
										
											2017-01-21 22:56:47 +08:00
										 |  |  |     $(document.body).find('*').on('click focus', event => { | 
					
						
							|  |  |  |         if (!pointerShowing || isSelection) return; | 
					
						
							|  |  |  |         let target = $(event.target); | 
					
						
							|  |  |  |         if (target.is('.zmdi') || $(event.target).closest('#pointer').length === 1) return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $pointer.detach(); | 
					
						
							|  |  |  |         pointerShowing = false; | 
					
						
							| 
									
										
										
										
											2015-12-31 04:48:57 +08:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-21 22:56:47 +08:00
										 |  |  |     function updatePointerContent() { | 
					
						
							|  |  |  |         let inputText = pointerModeLink ? window.baseUrl(`/link/${pageId}#${pointerSectionId}`) : `{{@${pageId}#${pointerSectionId}}}`; | 
					
						
							|  |  |  |         if (pointerModeLink && inputText.indexOf('http') !== 0) inputText = window.location.protocol + "//" + window.location.host + inputText; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $pointer.find('input').val(inputText); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-31 04:48:57 +08:00
										 |  |  |     // Show pointer when selecting a single block of tagged content
 | 
					
						
							|  |  |  |     $('.page-content [id^="bkmrk"]').on('mouseup keyup', function (e) { | 
					
						
							| 
									
										
										
										
											2016-02-12 06:23:19 +08:00
										 |  |  |         e.stopPropagation(); | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |         let selection = window.getSelection(); | 
					
						
							| 
									
										
										
										
											2015-12-31 04:48:57 +08:00
										 |  |  |         if (selection.toString().length === 0) return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Show pointer and set link
 | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |         let $elem = $(this); | 
					
						
							| 
									
										
										
										
											2017-01-21 22:56:47 +08:00
										 |  |  |         pointerSectionId = $elem.attr('id'); | 
					
						
							|  |  |  |         updatePointerContent(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-31 04:48:57 +08:00
										 |  |  |         $elem.before($pointer); | 
					
						
							|  |  |  |         $pointer.show(); | 
					
						
							| 
									
										
										
										
											2017-01-21 22:56:47 +08:00
										 |  |  |         pointerShowing = true; | 
					
						
							| 
									
										
										
										
											2015-12-31 04:48:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // Set pointer to sit near mouse-up position
 | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |         let pointerLeftOffset = (e.pageX - $elem.offset().left - ($pointerInner.width() / 2)); | 
					
						
							| 
									
										
										
										
											2015-12-31 04:48:57 +08:00
										 |  |  |         if (pointerLeftOffset < 0) pointerLeftOffset = 0; | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |         let pointerLeftOffsetPercent = (pointerLeftOffset / $elem.width()) * 100; | 
					
						
							| 
									
										
										
										
											2015-12-31 04:48:57 +08:00
										 |  |  |         $pointerInner.css('left', pointerLeftOffsetPercent + '%'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         isSelection = true; | 
					
						
							|  |  |  |         setTimeout(() => { | 
					
						
							|  |  |  |             isSelection = false; | 
					
						
							|  |  |  |         }, 100); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Go to, and highlight if necessary, the specified text.
 | 
					
						
							|  |  |  |     function goToText(text) { | 
					
						
							| 
									
										
										
										
											2017-01-15 00:36:12 +08:00
										 |  |  |         let idElem = document.getElementById(text); | 
					
						
							|  |  |  |         $('.page-content [data-highlighted]').attr('data-highlighted', '').css('background-color', ''); | 
					
						
							|  |  |  |         if (idElem !== null) { | 
					
						
							| 
									
										
										
										
											2017-09-09 22:56:24 +08:00
										 |  |  |             window.scrollAndHighlight(idElem); | 
					
						
							| 
									
										
										
										
											2015-12-31 04:48:57 +08:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             $('.page-content').find(':contains("' + text + '")').smoothScrollTo(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Check the hash on load
 | 
					
						
							|  |  |  |     if (window.location.hash) { | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |         let text = window.location.hash.replace(/\%20/g, ' ').substr(1); | 
					
						
							| 
									
										
										
										
											2015-12-31 04:48:57 +08:00
										 |  |  |         goToText(text); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-15 00:36:12 +08:00
										 |  |  |     // Sidebar page nav click event
 | 
					
						
							|  |  |  |     $('.sidebar-page-nav').on('click', 'a', event => { | 
					
						
							|  |  |  |         goToText(event.target.getAttribute('href').substr(1)); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-26 22:41:33 +08:00
										 |  |  |     // Make the sidebar stick in view on scroll
 | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |     let $window = $(window); | 
					
						
							| 
									
										
										
										
											2017-08-26 22:41:33 +08:00
										 |  |  |     let $sidebar = $("#sidebar .scroll-body"); | 
					
						
							|  |  |  |     let $bookTreeParent = $sidebar.parent(); | 
					
						
							| 
									
										
										
										
											2017-12-08 03:10:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-12 06:23:19 +08:00
										 |  |  |     // Check the page is scrollable and the content is taller than the tree
 | 
					
						
							| 
									
										
										
										
											2017-08-26 22:41:33 +08:00
										 |  |  |     let pageScrollable = ($(document).height() > $window.height()) && ($sidebar.height() < $('.page-content').height()); | 
					
						
							| 
									
										
										
										
											2017-12-08 03:10:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-12 06:23:19 +08:00
										 |  |  |     // Get current tree's width and header height
 | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |     let headerHeight = $("#header").height() + $(".toolbar").height(); | 
					
						
							|  |  |  |     let isFixed = $window.scrollTop() > headerHeight; | 
					
						
							| 
									
										
										
										
											2017-12-08 03:10:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // Fix the tree as a sidebar
 | 
					
						
							| 
									
										
										
										
											2016-02-12 06:23:19 +08:00
										 |  |  |     function stickTree() { | 
					
						
							| 
									
										
										
										
											2017-08-26 22:41:33 +08:00
										 |  |  |         $sidebar.width($bookTreeParent.width() + 15); | 
					
						
							|  |  |  |         $sidebar.addClass("fixed"); | 
					
						
							| 
									
										
										
										
											2016-02-12 06:23:19 +08:00
										 |  |  |         isFixed = true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-12-08 03:10:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // Un-fix the tree back into position
 | 
					
						
							| 
									
										
										
										
											2016-02-12 06:23:19 +08:00
										 |  |  |     function unstickTree() { | 
					
						
							| 
									
										
										
										
											2017-08-26 22:41:33 +08:00
										 |  |  |         $sidebar.css('width', 'auto'); | 
					
						
							|  |  |  |         $sidebar.removeClass("fixed"); | 
					
						
							| 
									
										
										
										
											2016-02-12 06:23:19 +08:00
										 |  |  |         isFixed = false; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-12-08 03:10:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-12 06:23:19 +08:00
										 |  |  |     // Checks if the tree stickiness state should change
 | 
					
						
							|  |  |  |     function checkTreeStickiness(skipCheck) { | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |         let shouldBeFixed = $window.scrollTop() > headerHeight; | 
					
						
							| 
									
										
										
										
											2016-02-12 06:23:19 +08:00
										 |  |  |         if (shouldBeFixed && (!isFixed || skipCheck)) { | 
					
						
							|  |  |  |             stickTree(); | 
					
						
							|  |  |  |         } else if (!shouldBeFixed && (isFixed || skipCheck)) { | 
					
						
							|  |  |  |             unstickTree(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-06-25 22:46:31 +08:00
										 |  |  |     // The event ran when the window scrolls
 | 
					
						
							|  |  |  |     function windowScrollEvent() { | 
					
						
							|  |  |  |         checkTreeStickiness(false); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-12 06:23:19 +08:00
										 |  |  |     // If the page is scrollable and the window is wide enough listen to scroll events
 | 
					
						
							|  |  |  |     // and evaluate tree stickiness.
 | 
					
						
							|  |  |  |     if (pageScrollable && $window.width() > 1000) { | 
					
						
							| 
									
										
										
										
											2016-06-25 22:46:31 +08:00
										 |  |  |         $window.on('scroll', windowScrollEvent); | 
					
						
							| 
									
										
										
										
											2016-02-12 06:23:19 +08:00
										 |  |  |         checkTreeStickiness(true); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-25 22:46:31 +08:00
										 |  |  |     // Handle window resizing and switch between desktop/mobile views
 | 
					
						
							|  |  |  |     $window.on('resize', event => { | 
					
						
							|  |  |  |         if (pageScrollable && $window.width() > 1000) { | 
					
						
							|  |  |  |             $window.on('scroll', windowScrollEvent); | 
					
						
							|  |  |  |             checkTreeStickiness(true); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $window.off('scroll', windowScrollEvent); | 
					
						
							|  |  |  |             unstickTree(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-11-02 03:44:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Check if support is present for IntersectionObserver
 | 
					
						
							|  |  |  |     if ('IntersectionObserver' in window && | 
					
						
							|  |  |  |         'IntersectionObserverEntry' in window && | 
					
						
							|  |  |  |         'intersectionRatio' in window.IntersectionObserverEntry.prototype) { | 
					
						
							| 
									
										
										
										
											2017-11-05 22:53:16 +08:00
										 |  |  |         addPageHighlighting(); | 
					
						
							| 
									
										
										
										
											2017-11-02 03:44:06 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-05 22:53:16 +08:00
										 |  |  |     function addPageHighlighting() { | 
					
						
							| 
									
										
										
										
											2017-12-08 03:10:31 +08:00
										 |  |  |       let pageNav = document.querySelector('.sidebar-page-nav'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // fetch all the headings.
 | 
					
						
							|  |  |  |       let headings = document.querySelector('.page-content').querySelectorAll('h1, h2, h3, h4, h5, h6'); | 
					
						
							|  |  |  |       // if headings are present, add observers.
 | 
					
						
							| 
									
										
										
										
											2017-12-08 03:27:54 +08:00
										 |  |  |       if (headings.length > 0 && pageNav !== null) { | 
					
						
							| 
									
										
										
										
											2017-12-08 03:10:31 +08:00
										 |  |  |           addNavObserver(headings); | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2017-11-05 22:53:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |       function addNavObserver(headings) { | 
					
						
							|  |  |  |           // Setup the intersection observer.
 | 
					
						
							|  |  |  |           let intersectOpts = { | 
					
						
							| 
									
										
										
										
											2017-11-15 02:24:25 +08:00
										 |  |  |               rootMargin: '0px 0px 0px 0px', | 
					
						
							| 
									
										
										
										
											2017-11-05 22:53:16 +08:00
										 |  |  |               threshold: 1.0 | 
					
						
							| 
									
										
										
										
											2017-12-08 03:10:31 +08:00
										 |  |  |           }; | 
					
						
							|  |  |  |           let pageNavObserver = new IntersectionObserver(headingVisibilityChange, intersectOpts); | 
					
						
							| 
									
										
										
										
											2017-11-05 22:53:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |           // observe each heading
 | 
					
						
							|  |  |  |           for (let i = 0; i !== headings.length; ++i) { | 
					
						
							|  |  |  |               pageNavObserver.observe(headings[i]); | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-08 03:10:31 +08:00
										 |  |  |       function headingVisibilityChange(entries, observer) { | 
					
						
							|  |  |  |           for (let i = 0; i < entries.length; i++) { | 
					
						
							| 
									
										
										
										
											2017-11-05 22:53:16 +08:00
										 |  |  |               let currentEntry = entries[i]; | 
					
						
							| 
									
										
										
										
											2017-12-08 03:10:31 +08:00
										 |  |  |               let isVisible = (currentEntry.intersectionRatio === 1); | 
					
						
							|  |  |  |               toggleAnchorHighlighting(currentEntry.target.id, isVisible); | 
					
						
							| 
									
										
										
										
											2017-11-05 22:53:16 +08:00
										 |  |  |           } | 
					
						
							| 
									
										
										
										
											2017-11-15 02:24:25 +08:00
										 |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-08 03:10:31 +08:00
										 |  |  |         function toggleAnchorHighlighting(elementId, shouldHighlight) { | 
					
						
							|  |  |  |             let anchorsToHighlight = pageNav.querySelectorAll('a[href="#' + elementId + '"]'); | 
					
						
							|  |  |  |             for (let i = 0; i < anchorsToHighlight.length; i++) { | 
					
						
							|  |  |  |                 // Change below to use classList.toggle when IE support is dropped.
 | 
					
						
							|  |  |  |                 if (shouldHighlight) { | 
					
						
							|  |  |  |                     anchorsToHighlight[i].classList.add('current-heading'); | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     anchorsToHighlight[i].classList.remove('current-heading'); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-11-02 03:44:06 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-02-12 02:15:16 +08:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2017-04-15 01:47:33 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | module.exports = setupPageShow; |