123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- (function (compodoc) {
- var usePushState = typeof history.pushState !== 'undefined',
- // DOM Elements
- $body = document.querySelector('body'),
- $searchResults,
- $searchInput,
- $searchList,
- $searchTitle,
- $searchResultsCount,
- $searchQuery,
- $mainContainer,
- $xsMenu;
- // Throttle search
- function throttle(fn, wait) {
- var timeout;
- return function () {
- var ctx = this,
- args = arguments;
- if (!timeout) {
- timeout = setTimeout(function () {
- timeout = undefined;
- fn.apply(ctx, args);
- }, wait);
- }
- };
- }
- function displayResults(res) {
- var noResults = res.count == 0;
- var groups = {};
- if (noResults) {
- $searchResults.classList.add('no-results');
- } else {
- $searchResults.classList.remove('no-results');
- }
- // Clear old results
- $searchList.innerText = '';
- // Display title for research
- $searchResultsCount.innerText = res.count;
- $searchQuery.innerText = res.query;
- // Group result by context
- res.results.forEach(function (res) {
- var context = res.title.split(' - ')[0];
- if (typeof groups[context] === 'undefined') {
- groups[context] = {
- results: [res]
- };
- } else {
- groups[context].results.push(res);
- }
- });
- var sortedGroups = Object.keys(groups).sort();
- for (var i = 0; i < sortedGroups.length; i++) {
- var property = sortedGroups[i];
- var $li = document.createElement('li');
- $li.classList.add('search-results-group');
- var finalPropertyLabel = '';
- var propertyLabels = property.split('-');
- if (
- propertyLabels.length === 2 &&
- propertyLabels[0] !== 'miscellaneous' &&
- propertyLabels[0] !== 'additional'
- ) {
- finalPropertyLabel =
- propertyLabels[0].charAt(0).toUpperCase() +
- propertyLabels[0].substring(1) +
- ' - ' +
- propertyLabels[1].charAt(0).toUpperCase() +
- propertyLabels[1].substring(1) +
- ' (' +
- groups[property].results.length +
- ')';
- } else if (propertyLabels[0] === 'additional') {
- finalPropertyLabel =
- 'Additional pages' + ' (' + groups[property].results.length + ')';
- } else {
- finalPropertyLabel =
- propertyLabels[0].charAt(0).toUpperCase() +
- propertyLabels[0].substring(1) +
- ' (' +
- groups[property].results.length +
- ')';
- }
- var $groupTitle = document.createElement('h3');
- $groupTitle.innerText = finalPropertyLabel;
- $li.appendChild($groupTitle);
- var $ulResults = document.createElement('ul');
- $ulResults.classList.add('search-results-list');
- groups[property].results.forEach(function (res) {
- var link = '';
- var $liResult = document.createElement('li');
- $liResult.classList.add('search-results-item');
- switch (COMPODOC_CURRENT_PAGE_DEPTH) {
- case 0:
- link = './';
- break;
- case 1:
- case 2:
- case 3:
- case 4:
- case 5:
- link = '../'.repeat(COMPODOC_CURRENT_PAGE_DEPTH);
- break;
- }
- var finalResLabel =
- res.title.split(' - ')[1].charAt(0).toUpperCase() +
- res.title.split(' - ')[1].substring(1);
- var $link = document.createElement('a');
- $link.innerText = finalResLabel;
- $link.href = link + res.url;
- $liResult.appendChild($link);
- $ulResults.appendChild($liResult);
- });
- $li.appendChild($ulResults);
- $searchList.appendChild($li);
- }
- }
- function launchSearch(q) {
- $body.classList.add('with-search');
- if ($xsMenu.style.display === 'block') {
- $mainContainer.style.height = 'calc(100% - 100px)';
- $mainContainer.style.marginTop = '100px';
- }
- throttle(
- compodoc.search.query(q, 0, MAX_SEARCH_RESULTS).then(function (results) {
- displayResults(results);
- }),
- 1000
- );
- }
- function closeSearch() {
- $body.classList.remove('with-search');
- if ($xsMenu.style.display === 'block') {
- $mainContainer.style.height = 'calc(100% - 50px)';
- }
- }
- function bindMenuButton() {
- document.getElementById('btn-menu').addEventListener('click', function () {
- if ($xsMenu.style.display === 'none') {
- $body.classList.remove('with-search');
- $mainContainer.style.height = 'calc(100% - 50px)';
- }
- $searchInputs.forEach((item, index) => {
- item.value = '';
- });
- });
- }
- function bindSearch() {
- // Bind DOM
- $searchInputs = document.querySelectorAll('#book-search-input input');
- $searchResults = document.querySelector('.search-results');
- $searchList = $searchResults.querySelector('.search-results-list');
- $searchTitle = $searchResults.querySelector('.search-results-title');
- $searchResultsCount = $searchTitle.querySelector('.search-results-count');
- $searchQuery = $searchTitle.querySelector('.search-query');
- $mainContainer = document.querySelector('.container-fluid');
- $xsMenu = document.querySelector('.xs-menu');
- // Launch query based on input content
- function handleUpdate(item) {
- var q = item.value;
- if (q.length == 0) {
- closeSearch();
- window.location.href = window.location.href.replace(window.location.search, '');
- } else {
- launchSearch(q);
- }
- }
- // Detect true content change in search input
- var propertyChangeUnbound = false;
- $searchInputs.forEach((item, index) => {
- // HTML5 (IE9 & others)
- item.addEventListener('input', function (e) {
- handleUpdate(this);
- });
- // Workaround for IE < 9
- item.addEventListener('propertychange', function (e) {
- if (e.originalEvent.propertyName == 'value') {
- handleUpdate(this);
- }
- });
- // Push to history on blur
- item.addEventListener('blur', function (e) {
- // Update history state
- if (usePushState) {
- var uri = updateQueryString('q', this.value);
- if (this.value !== '') {
- history.pushState({ path: uri }, null, uri);
- }
- }
- });
- });
- }
- function launchSearchFromQueryString() {
- var q = getParameterByName('q');
- if (q && q.length > 0) {
- // Update search inputs
- $searchInputs.forEach((item, index) => {
- item.value = q;
- });
- // Launch search
- launchSearch(q);
- }
- }
- compodoc.addEventListener(compodoc.EVENTS.SEARCH_READY, function (event) {
- bindSearch();
- bindMenuButton();
- launchSearchFromQueryString();
- });
- function getParameterByName(name) {
- var url = window.location.href;
- name = name.replace(/[\[\]]/g, '\\$&');
- var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)', 'i'),
- results = regex.exec(url);
- if (!results) return null;
- if (!results[2]) return '';
- return decodeURIComponent(results[2].replace(/\+/g, ' '));
- }
- function updateQueryString(key, value) {
- value = encodeURIComponent(value);
- var url = window.location.href;
- var re = new RegExp('([?&])' + key + '=.*?(&|#|$)(.*)', 'gi'),
- hash;
- if (re.test(url)) {
- if (typeof value !== 'undefined' && value !== null)
- return url.replace(re, '$1' + key + '=' + value + '$2$3');
- else {
- hash = url.split('#');
- url = hash[0].replace(re, '$1$3').replace(/(&|\?)$/, '');
- if (typeof hash[1] !== 'undefined' && hash[1] !== null) url += '#' + hash[1];
- return url;
- }
- } else {
- if (typeof value !== 'undefined' && value !== null) {
- var separator = url.indexOf('?') !== -1 ? '&' : '?';
- hash = url.split('#');
- url = hash[0] + separator + key + '=' + value;
- if (typeof hash[1] !== 'undefined' && hash[1] !== null) url += '#' + hash[1];
- return url;
- } else return url;
- }
- }
- })(compodoc);
|