95 lines
3.6 KiB
JavaScript
Raw Normal View History

var lunrIndex, pagesIndex;
// Initialize lunrjs using our generated index file
function initLunr() {
// First retrieve the index file
2021-08-24 23:36:26 +01:00
$.getJSON(index_url)
.done(function(index) {
pagesIndex = index;
// Set up lunrjs by declaring the fields we use
// Also provide their boost level for the ranking
lunrIndex = lunr(function() {
2021-08-29 16:03:04 +01:00
this.ref('uri');
2019-03-19 16:33:54 +01:00
this.field('title', {
2021-08-29 16:03:04 +01:00
boost: 15
2019-03-19 16:33:54 +01:00
});
this.field('tags', {
2021-08-29 16:03:04 +01:00
boost: 10
2019-03-19 16:33:54 +01:00
});
2021-08-29 16:03:04 +01:00
this.field('content', {
boost: 5
2019-03-19 16:33:54 +01:00
});
2019-03-19 16:33:54 +01:00
this.pipeline.remove(lunr.stemmer);
this.searchPipeline.remove(lunr.stemmer);
2019-03-19 16:33:54 +01:00
// Feed lunr with each file and let lunr actually index them
pagesIndex.forEach(function(page) {
2021-08-29 16:03:04 +01:00
this.add(page);
2019-03-19 16:33:54 +01:00
}, this);
})
})
.fail(function(jqxhr, textStatus, error) {
2021-08-29 16:03:04 +01:00
var err = textStatus + ', ' + error;
console.error('Error getting Hugo index file:', err);
});
}
/**
* Trigger a search in lunr and transform the result
*
* @param {String} query
* @return {Array} results
*/
function search(queryTerm) {
// Find the item in our index corresponding to the lunr one to have more info
2021-08-29 16:03:04 +01:00
var searchTerm = queryTerm.match(/\w+/g).map(word => word + '^100' + ' ' + word + '*^10' + ' ' + '*' + word + '^10' + ' ' + word + '~2^1').join(' ');
return lunrIndex.search(searchTerm).map(function(result) {
2021-08-29 16:03:04 +01:00
return pagesIndex.filter(function(page) {
return page.uri === result.ref;
})[0];
});
}
// Let's get started
initLunr();
2021-08-29 16:03:04 +01:00
$(function() {
var searchList = new autoComplete({
/* selector for the search box element */
2021-08-29 16:03:04 +01:00
selector: $('#search-by').get(0),
/* source is the callback to perform the search */
source: function(term, response) {
response(search(term));
},
/* renderItem displays individual search results */
renderItem: function(item, term) {
var numContextWords = 2;
var text = item.content.match(
2021-08-29 16:03:04 +01:00
'(?:\\s?(?:[\\w]+)\\s?){0,' + numContextWords + '}' +
term.trim() + '(?:\\s?(?:[\\w]+)\\s?){0,' + numContextWords + '}');
item.context = text;
2021-08-29 16:03:04 +01:00
var divcontext = document.createElement('div');
divcontext.className = 'context';
divcontext.innerText = (item.context || '');
2021-08-29 16:03:04 +01:00
var divsuggestion = document.createElement('div');
divsuggestion.className = 'autocomplete-suggestion';
divsuggestion.setAttribute('data-term', term);
divsuggestion.setAttribute('data-title', item.title);
divsuggestion.setAttribute('data-uri', baseUri + item.uri);
divsuggestion.setAttribute('data-context', item.context);
divsuggestion.innerText = '» ' + item.title;
divsuggestion.appendChild(divcontext);
return divsuggestion.outerHTML;
},
/* onSelect callback fires when a search suggestion is chosen */
onSelect: function(e, term, item) {
location.href = item.getAttribute('data-uri');
}
});
// JavaScript-autoComplete only registers the focus event when minChars is 0 which doesn't make sense, let's do it ourselves
// https://github.com/Pixabay/JavaScript-autoComplete/blob/master/auto-complete.js#L191
2021-08-29 16:03:04 +01:00
var selector = $('#search-by').get(0);
$(selector).focus(selector.focusHandler);
});