Skip to content

Commit 12d2173

Browse files
committed
feat support search customization #79
1 parent 609a9ab commit 12d2173

File tree

4 files changed

+53
-4
lines changed

4 files changed

+53
-4
lines changed

assets/css/styles.css

+4
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,8 @@
4848
details.toc ul li a {
4949
@apply no-underline text-gray-700 dark:text-gray-200 text-base;
5050
}
51+
52+
a:empty {
53+
display: none;
54+
}
5155
}

assets/js/search.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function openSearch() {
3131
loadSearch(); // loads our json data and builds fuse.js search index
3232
firstRun = false; // let's never do this again
3333
}
34-
34+
3535
//Close the mobile menu when search is click.
3636
mobileMenu.classList.toggle('hidden');
3737

@@ -158,10 +158,10 @@ function executeSearch(term) {
158158

159159
for (let item in results.slice(0, 5)) { // only show first 5 results
160160
const title = '<div class="text-2xl mb-2 font-bold">' + results[item].item.title + '</div>';
161-
const date = results[item].item.date ? '<div><em class="">' + new Date(results[item].item.date).toUTCString().substring(0, 16) + '</em></div>' : '';
162-
const contents = '<div>' + results[item].item.contents + '</div>';
161+
const date = results[item].item.date ? '<div><em class="px-4">' + new Date(results[item].item.date).toUTCString().substring(0, 16) + '</em></div>' : '';
162+
const contents = '<div class="prose px-4">' + results[item].item.contents + '</div>';
163163

164-
searchitems = searchitems + '<li><a class="block mb-2 px-4 py-2 rounded pb-2 border-b border-gray-200 dark:border-gray-600 focus:bg-gray-100 dark:focus:bg-gray-700 focus:outline-none" href="' + results[item].item.permalink + '" tabindex="0">' + title + date + contents + '</a></li>';
164+
searchitems = searchitems + '<li><a class="block mb-2 px-4 py-2 rounded pb-2 border-b border-gray-200 dark:border-gray-600 focus:bg-gray-100 dark:focus:bg-gray-700 focus:outline-none" href="' + results[item].item.permalink + '" tabindex="0">' + title + '</a>' + date + contents + '</li>';
165165
}
166166
resultsAvailable = true;
167167
}

exampleSite/config.toml

+14
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,20 @@ DefaultContentLanguageInSubdir = true
9797
# Enable search in header
9898
enableSearch = true
9999

100+
# Option to customize the search parameters of a page
101+
# Below are the supported options; Note that including entire content
102+
# may slowdown the loading of search results
103+
# Title of page is included by default
104+
searchKeys = [
105+
"tags",
106+
"date",
107+
"categories",
108+
"summary",
109+
"content",
110+
"link",
111+
"author"
112+
]
113+
100114
# Custom copyright - optional
101115
copyright = "Copyright © 2021 - Katheryn Fox · All rights reserved"
102116
favicon = "/favicon.svg"

layouts/_default/index.json

+31
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
{{- $.Scratch.Add "index" slice -}}
22
{{- range .Site.RegularPages -}}
3+
{{- if .Site.Params.searchKeys -}}
4+
{{ $page := . }}
5+
{{ $dict := dict "title" $page.Title }}
6+
{{- range .Site.Params.searchKeys -}}
7+
{{- if (eq . "tags") -}}
8+
{{ $dict = merge $dict (dict "tags" $page.Params.tags) }}
9+
{{- end -}}
10+
{{- if (eq . "date") -}}
11+
{{ $dict = merge $dict (dict "date" $page.Params.Lastmod) }}
12+
{{- end -}}
13+
{{- if (eq . "categories") -}}
14+
{{ $dict = merge $dict (dict "categories" $page.Params.categories) }}
15+
{{- end -}}
16+
{{- if (eq . "author") -}}
17+
{{ $dict = merge $dict (dict "author" $page.Params.author) }}
18+
{{- end -}}
19+
{{- if (eq . "summary") -}}
20+
{{ $dict = merge $dict (dict "contents" $page.Summary) }}
21+
{{- end -}}
22+
{{- if (eq . "contents") -}}
23+
{{ $dict = merge $dict (dict "contents" $page.Content) }}
24+
{{- end -}}
25+
{{- if (eq . "link") -}}
26+
{{ $dict = merge $dict (dict "permalink" $page.Permalink) }}
27+
{{- end -}}
28+
29+
{{- end -}}
30+
{{- $.Scratch.Add "index" $dict -}}
31+
{{- else -}}
332
{{- $.Scratch.Add "index" (dict "title" .Title "tags" .Params.tags "date" .Params.Lastmod "categories" .Params.categories "contents" .Summary "permalink" .Permalink) -}}
433
{{- end -}}
34+
35+
{{- end -}}
536
{{- $.Scratch.Get "index" | jsonify -}}

0 commit comments

Comments
 (0)