-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen.search.min.aea6db487b62e99a746544c25b0b2440a5415af698414b7d431951f123c26102.js
11 lines (11 loc) · 1.65 KB
/
en.search.min.aea6db487b62e99a746544c25b0b2440a5415af698414b7d431951f123c26102.js
1
2
3
4
5
6
7
8
9
10
11
'use strict';(function(){const input=document.querySelector('#book-search-input');const results=document.querySelector('#book-search-results');if(!input){return}
input.addEventListener('focus',init);input.addEventListener('keyup',search);document.addEventListener('keypress',focusSearchFieldOnKeyPress);function focusSearchFieldOnKeyPress(event){if(input===document.activeElement){return;}
const characterPressed=String.fromCharCode(event.charCode);if(!isHotkey(characterPressed)){return;}
input.focus();event.preventDefault();}
function isHotkey(character){const dataHotkeys=input.getAttribute('data-hotkeys')||'';return dataHotkeys.indexOf(character)>=0;}
function init(){input.removeEventListener('focus',init);input.required=true;loadScript('/https/plum.github.io/flexsearch.min.js');loadScript('/https/plum.github.io/en.search-data.min.616ce5de0c3c826dabc8eb45bc59fe3e901172413f47edaef40b13dbdc07a464.js',function(){input.required=false;search();});}
function search(){while(results.firstChild){results.removeChild(results.firstChild);}
if(!input.value){return;}
const searchHits=window.bookSearchIndex.search(input.value,10);searchHits.forEach(function(page){const li=element('<li><a href></a><small></small></li>');const a=li.querySelector('a'),small=li.querySelector('small');a.href=page.href;a.textContent=page.title;small.textContent=page.section;results.appendChild(li);});}
function loadScript(src,callback){const script=document.createElement('script');script.defer=true;script.async=false;script.src=src;script.onload=callback;document.head.appendChild(script);}
function element(content){const div=document.createElement('div');div.innerHTML=content;return div.firstChild;}})();