mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-14 10:56:16 +01:00
fix(search): theme.js error when search is disabled (#310)
This commit is contained in:
parent
971eff815c
commit
09a7c95362
5 changed files with 16 additions and 14 deletions
2
assets/js/theme.min.js
vendored
2
assets/js/theme.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -10,7 +10,7 @@
|
|||
{{- end -}}
|
||||
|
||||
{{- $params := .Params | merge .Site.Params.page -}}
|
||||
{{- .Scratch.Set "version" "0.2.4" -}}
|
||||
{{- .Scratch.Set "version" "0.2.5" -}}
|
||||
|
||||
{{- if eq hugo.Environment "production" -}}
|
||||
{{- .Scratch.Set "cdn" .Site.Params.cdn -}}
|
||||
|
|
|
@ -94,17 +94,19 @@ class Theme {
|
|||
|
||||
initSearch() {
|
||||
const searchConfig = this.config.search;
|
||||
const isMobile = this.util.isMobile();
|
||||
if (!searchConfig || isMobile && this._searchMobileOnce || !isMobile && this._searchDesktopOnce) return;
|
||||
|
||||
if (!searchConfig.maxResultLength) searchConfig.maxResultLength = 10;
|
||||
if (!searchConfig.snippetLength) searchConfig.snippetLength = 50;
|
||||
if (!searchConfig.highlightTag) searchConfig.highlightTag = 'em';
|
||||
const isMobile = this.util.isMobile();
|
||||
if (!searchConfig || isMobile && this._searchMobileOnce || !isMobile && this._searchDesktopOnce) return;
|
||||
const classSuffix = isMobile ? 'mobile' : 'desktop';
|
||||
const $header = document.getElementById(`header-${classSuffix}`);
|
||||
const $searchInput = document.getElementById(`search-input-${classSuffix}`);
|
||||
const $searchToggle = document.getElementById(`search-toggle-${classSuffix}`);
|
||||
const $searchLoading = document.getElementById(`search-loading-${classSuffix}`);
|
||||
const $searchClear = document.getElementById(`search-clear-${classSuffix}`);
|
||||
|
||||
const suffix = isMobile ? 'mobile' : 'desktop';
|
||||
const $header = document.getElementById(`header-${suffix}`);
|
||||
const $searchInput = document.getElementById(`search-input-${suffix}`);
|
||||
const $searchToggle = document.getElementById(`search-toggle-${suffix}`);
|
||||
const $searchLoading = document.getElementById(`search-loading-${suffix}`);
|
||||
const $searchClear = document.getElementById(`search-clear-${suffix}`);
|
||||
if (isMobile) {
|
||||
this._searchMobileOnce = true;
|
||||
$searchInput.addEventListener('focus', () => {
|
||||
|
@ -156,10 +158,10 @@ class Theme {
|
|||
}, false);
|
||||
|
||||
const initAutosearch = () => {
|
||||
const autosearch = autocomplete(`#search-input-${classSuffix}`, {
|
||||
const autosearch = autocomplete(`#search-input-${suffix}`, {
|
||||
hint: false,
|
||||
autoselect: true,
|
||||
dropdownMenuContainer: `#search-dropdown-${classSuffix}`,
|
||||
dropdownMenuContainer: `#search-dropdown-${suffix}`,
|
||||
clearOnSelected: true,
|
||||
cssClasses: { noPrefix: true },
|
||||
debug: true,
|
||||
|
|
|
@ -5,7 +5,7 @@ name = "LoveIt"
|
|||
license = "MIT"
|
||||
licenselink = "https://github.com/dillonzq/LoveIt/blob/master/LICENSE"
|
||||
description = "A Clean, Elegant but Advanced Hugo Theme for Hugo."
|
||||
homepage = "https://hugo-loveit-en.netlify.com"
|
||||
homepage = "https://hugoloveit.com"
|
||||
tags = [
|
||||
"blog",
|
||||
"clean",
|
||||
|
|
Loading…
Reference in a new issue