| 
									
										
										
										
											2015-12-31 04:48:57 +08:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | // Configure ZeroClipboard
 | 
					
						
							| 
									
										
										
										
											2017-01-21 22:56:47 +08:00
										 |  |  | import Clipboard from "clipboard"; | 
					
						
							| 
									
										
										
										
											2015-12-31 04:48:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  | export default window.setupPageShow = function (pageId) { | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							|  |  |  |             let $idElem = $(idElem); | 
					
						
							|  |  |  |             let color = $('#custom-styles').attr('data-color-light'); | 
					
						
							|  |  |  |             $idElem.css('background-color', color).attr('data-highlighted', 'true').smoothScrollTo(); | 
					
						
							| 
									
										
										
										
											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)); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-12 06:23:19 +08:00
										 |  |  |     // Make the book-tree sidebar stick in view on scroll
 | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |     let $window = $(window); | 
					
						
							|  |  |  |     let $bookTree = $(".book-tree"); | 
					
						
							|  |  |  |     let $bookTreeParent = $bookTree.parent(); | 
					
						
							| 
									
										
										
										
											2016-02-12 06:23:19 +08:00
										 |  |  |     // Check the page is scrollable and the content is taller than the tree
 | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |     let pageScrollable = ($(document).height() > $window.height()) && ($bookTree.height() < $('.page-content').height()); | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2016-02-12 06:23:19 +08:00
										 |  |  |     // Function to fix the tree as a sidebar
 | 
					
						
							|  |  |  |     function stickTree() { | 
					
						
							| 
									
										
										
										
											2016-06-25 22:46:31 +08:00
										 |  |  |         $bookTree.width($bookTreeParent.width() + 15); | 
					
						
							| 
									
										
										
										
											2016-02-12 06:23:19 +08:00
										 |  |  |         $bookTree.addClass("fixed"); | 
					
						
							|  |  |  |         isFixed = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     // Function to un-fix the tree back into position
 | 
					
						
							|  |  |  |     function unstickTree() { | 
					
						
							|  |  |  |         $bookTree.css('width', 'auto'); | 
					
						
							|  |  |  |         $bookTree.removeClass("fixed"); | 
					
						
							|  |  |  |         isFixed = false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     // 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(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-12 02:15:16 +08:00
										 |  |  | }; |