Merge pull request #38 from LukasHirt/group-search-by-sections
Group search by sections
This commit is contained in:
commit
4f1bdf7dfb
3 changed files with 98 additions and 23 deletions
9
assets/js/groupBy.min.js
vendored
Normal file
9
assets/js/groupBy.min.js
vendored
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
/**
|
||||||
|
* Part of [Canivete](http://canivete.leofavre.com/#deepgroupby)
|
||||||
|
*
|
||||||
|
* Groups the contents of an array by one or more iteratees.
|
||||||
|
* Unlike Lodash [`groupBy()`](https://lodash.com/docs/4.17.4#groupBy),
|
||||||
|
* this function can create nested groups, but cannot receive
|
||||||
|
* strings for iteratees.
|
||||||
|
*/
|
||||||
|
const groupBy=(e,...t)=>{let r=e.map(e=>t.map(t=>t(e))),a={};return r.forEach((t,r)=>{let l=(_simpleAt(a,t)||[]).concat([e[r]]);_simpleSet(a,t,l)}),a},_isPlainObject=e=>null!=e&&"object"==typeof e&&e.constructor==Object,_parsePath=e=>Array.isArray(e)?e:`${e}`.split("."),_simpleAt=(e,t)=>_parsePath(t).reduce((e,t)=>null!=e&&e.hasOwnProperty(t)?e[t]:void 0,e),_simpleSet=(e,t,r)=>_parsePath(t).reduce((e,t,a,l)=>{let s=a===l.length-1;return e.hasOwnProperty(t)&&(s||_isPlainObject(e[t]))||(e[t]={}),s?e[t]=r:e[t]},e);
|
|
@ -6,6 +6,11 @@
|
||||||
(function() {
|
(function() {
|
||||||
const input = document.querySelector('#gdoc-search-input');
|
const input = document.querySelector('#gdoc-search-input');
|
||||||
const results = document.querySelector('#gdoc-search-results');
|
const results = document.querySelector('#gdoc-search-results');
|
||||||
|
let showParent = false
|
||||||
|
|
||||||
|
{{ if .Site.Params.GeekdocSearchShowParent }}
|
||||||
|
showParent = true
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
input.addEventListener('focus', init);
|
input.addEventListener('focus', init);
|
||||||
input.addEventListener('keyup', search);
|
input.addEventListener('keyup', search);
|
||||||
|
@ -19,6 +24,7 @@
|
||||||
input.required = false;
|
input.required = false;
|
||||||
search();
|
search();
|
||||||
});
|
});
|
||||||
|
loadScript('{{ index .Site.Data.assets "js/groupBy.min.js" | relURL }}');
|
||||||
}
|
}
|
||||||
|
|
||||||
function search() {
|
function search() {
|
||||||
|
@ -32,31 +38,67 @@
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const searchHits = window.geekdocSearchIndex.search(input.value, 10);
|
let searchHits = window.geekdocSearchIndex.search(input.value, 10);
|
||||||
|
|
||||||
console.log(searchHits.length);
|
console.log(searchHits.length);
|
||||||
if (searchHits.length > 0) {
|
if (searchHits.length < 1) {
|
||||||
results.classList.add("has-hits");
|
return results.classList.remove("has-hits");
|
||||||
} else {
|
|
||||||
results.classList.remove("has-hits");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
searchHits.forEach(function(page) {
|
results.classList.add("has-hits");
|
||||||
const li = document.createElement('li'),
|
|
||||||
a = li.appendChild(document.createElement('a'));
|
if (showParent) {
|
||||||
|
searchHits = groupBy(searchHits, hit => hit.parent);
|
||||||
|
}
|
||||||
|
|
||||||
|
const items = [];
|
||||||
|
|
||||||
|
if (showParent) {
|
||||||
|
for (const section in searchHits) {
|
||||||
|
const item = document.createElement('li'),
|
||||||
|
title = item.appendChild(document.createElement('span')),
|
||||||
|
subList = item.appendChild(document.createElement('ul'));
|
||||||
|
|
||||||
|
title.textContent = section;
|
||||||
|
title.classList.add('gdoc-search__list__section-title');
|
||||||
|
createLinks(searchHits[section], subList);
|
||||||
|
|
||||||
|
items.push(item);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
items.push(...createLinks(searchHits));
|
||||||
|
}
|
||||||
|
|
||||||
|
items.forEach(item => {
|
||||||
|
results.appendChild(item);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates links to given pages and either returns them in an array or attaches them to a target element
|
||||||
|
* @param {Object} pages Page to which the link should point to
|
||||||
|
* @param {HTMLElement} target Element to which the links should be attatched
|
||||||
|
* @returns {Array} If target is not specified, returns an array of built links
|
||||||
|
*/
|
||||||
|
function createLinks(pages, target) {
|
||||||
|
const items = [];
|
||||||
|
|
||||||
|
for (const page of pages) {
|
||||||
|
const item = document.createElement('li'),
|
||||||
|
a = item.appendChild(document.createElement('a'));
|
||||||
|
|
||||||
a.href = page.href;
|
a.href = page.href;
|
||||||
|
|
||||||
{{ if .Site.Params.GeekdocSearchShowParent }}
|
|
||||||
a.textContent = page.parent ? page.parent + ' / ' + page.title : page.title;
|
|
||||||
{{ else }}
|
|
||||||
a.textContent = page.title;
|
a.textContent = page.title;
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
results.appendChild(li);
|
if (target) {
|
||||||
results.classList.add("DUMMY");
|
target.appendChild(item);
|
||||||
});
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
items.push(item);
|
||||||
|
}
|
||||||
|
|
||||||
|
return items;
|
||||||
}
|
}
|
||||||
|
|
||||||
function loadScript(src, callback) {
|
function loadScript(src, callback) {
|
||||||
|
|
|
@ -398,10 +398,6 @@ img {
|
||||||
height: $font-size-16;
|
height: $font-size-16;
|
||||||
}
|
}
|
||||||
|
|
||||||
.has-hits {
|
|
||||||
border-bottom: 1px dashed $gray-600;
|
|
||||||
}
|
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
display: block;
|
display: block;
|
||||||
content: "";
|
content: "";
|
||||||
|
@ -441,22 +437,50 @@ img {
|
||||||
}
|
}
|
||||||
|
|
||||||
&__list {
|
&__list {
|
||||||
padding-left: 1em;
|
display: none;
|
||||||
|
background-color: #ffffff;
|
||||||
|
border-radius: $border-radius;
|
||||||
|
box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px 0 rgba(0,0,0,0.06);
|
||||||
|
position: absolute;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: $padding-8 0;
|
padding: $padding-8;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
left: 0;
|
||||||
|
top: calc(100% + #{$padding-8});
|
||||||
|
width: 100%;
|
||||||
|
z-index: 2;
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
padding-left: $padding-16;
|
list-style: none;
|
||||||
|
margin-top: $padding-8;
|
||||||
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
margin: $padding-4 0;
|
margin: $padding-4 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
> li > span {
|
||||||
|
color: $gray-600;
|
||||||
|
font-size: $font-size-14;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
> li + li {
|
||||||
|
margin-top: $padding-16;
|
||||||
|
}
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
margin-right: $padding-4;
|
margin-right: $padding-4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
font-size: $font-size-16;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:focus-within &__list.has-hits {
|
||||||
|
display: block !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue