fix: add :feature/enable-search-remove-accents

This commit is contained in:
maxweilun1989
2022-07-27 18:34:01 +08:00
parent f26681c2ee
commit 15a0f19a82
6 changed files with 25 additions and 14 deletions

View File

@@ -29,8 +29,8 @@
content
(when (and content q)
(let [q-words (string/split q #" ")
lc-content (util/search-normalize content)
lc-q (util/search-normalize q)]
lc-content (util/search-normalize content (state/enable-search-remove-accents?))
lc-q (util/search-normalize q (state/enable-search-remove-accents?))]
(if (and (string/includes? lc-content lc-q)
(not (util/safe-re-find #" " q)))
(let [i (string/index-of lc-content lc-q)
@@ -46,8 +46,8 @@
result []]
(if (and (seq words) content)
(let [word (first words)
lc-word (util/search-normalize word)
lc-content (util/search-normalize content)]
lc-word (util/search-normalize word (state/enable-search-remove-accents?))
lc-content (util/search-normalize content (state/enable-search-remove-accents?))]
(if-let [i (string/index-of lc-content lc-word)]
(recur (rest words)
(subs content (+ i (count word)))

View File

@@ -77,20 +77,20 @@
(defn fuzzy-search
[data query & {:keys [limit extract-fn]
:or {limit 20}}]
(let [query (util/search-normalize query)]
(let [query (util/search-normalize query (state/enable-search-remove-accents?))]
(->> (take limit
(sort-by :score (comp - compare)
(filter #(< 0 (:score %))
(for [item data]
(let [s (str (if extract-fn (extract-fn item) item))]
{:data item
:score (score query (util/search-normalize s))})))))
:score (score query (util/search-normalize s (state/enable-search-remove-accents?)))})))))
(map :data))))
(defn block-search
[repo q option]
(when-let [engine (get-engine repo)]
(let [q (util/search-normalize q)
(let [q (util/search-normalize q (state/enable-search-remove-accents?))
q (if (util/electron?) q (escape-str q))]
(when-not (string/blank? q)
(protocol/query engine q option)))))
@@ -111,8 +111,8 @@
(if (seq coll')
(rest coll')
(reduced false))))
(seq (util/search-normalize match))
(seq (util/search-normalize q))))))
(seq (util/search-normalize match (state/enable-search-remove-accents?)))
(seq (util/search-normalize q (state/enable-search-remove-accents?)))))))
(defn page-search
"Return a list of page names that match the query"
@@ -120,7 +120,7 @@
(page-search q 10))
([q limit]
(when-let [repo (state/get-current-repo)]
(let [q (util/search-normalize q)
(let [q (util/search-normalize q (state/enable-search-remove-accents?))
q (clean-str q)]
(when-not (string/blank? q)
(let [indice (or (get-in @indices [repo :pages])

View File

@@ -13,7 +13,7 @@
(defn block->index
"Convert a block to the index for searching"
[{:block/keys [uuid page content] :as block}]
(when-let [content (util/search-normalize content)]
(when-let [content (util/search-normalize content (state/enable-search-remove-accents?))]
{:id (:db/id block)
:uuid (str uuid)
:page page
@@ -42,7 +42,7 @@
indice))
(defn original-page-name->index
[p] {:name (util/search-normalize p)
[p] {:name (util/search-normalize p (state/enable-search-remove-accents?))
:original-name p})
(defn make-pages-indice!

View File

@@ -1691,3 +1691,8 @@
(defn unlinked-dir?
[dir]
(contains? (:file/unlinked-dirs @state) dir))
(defn enable-search-remove-accents?
[]
(:feature/enable-search-remove-accents?
(get (sub-config) (get-current-repo))))

View File

@@ -917,8 +917,11 @@
#?(:cljs
(defn search-normalize
"Normalize string for searching (loose)"
[s]
(removeAccents (.normalize (string/lower-case s) "NFKC"))))
[s remove-accents?]
(let [normalize-str (.normalize (string/lower-case s) "NFKC")]
(if remove-accents?
(removeAccents normalize-str)
normalize-str))))
#?(:cljs
(defn file-name-sanity