mirror of
https://github.com/penpot/penpot.git
synced 2025-04-06 03:51:21 -05:00
⚡ Don't perform assets filtering if term is empty
This commit is contained in:
parent
8ff18a2a9e
commit
937d3b4954
1 changed files with 17 additions and 14 deletions
|
@ -34,20 +34,23 @@
|
|||
|
||||
(defn apply-filters
|
||||
[coll {:keys [ordering term] :as filters}]
|
||||
(let [reverse? (= :desc ordering)
|
||||
comp-fn (if ^boolean reverse? > <)]
|
||||
(->> coll
|
||||
(filter (fn [item]
|
||||
(or (matches-search (:name item "!$!") term)
|
||||
(matches-search (:path item "!$!") term)
|
||||
(matches-search (:value item "!$!") term))))
|
||||
;; Sort by folder order, but putting all "root" items always
|
||||
;; first, independently of sort order.
|
||||
(sort-by #(str/lower (cph/merge-path-item (if (empty? (:path %))
|
||||
(if reverse? "z" "a")
|
||||
(:path %))
|
||||
(:name %)))
|
||||
comp-fn))))
|
||||
(let [reverse? (= :desc ordering)]
|
||||
(cond->> coll
|
||||
(not ^boolean (str/empty? term))
|
||||
(filter (fn [item]
|
||||
(or (matches-search (:name item "!$!") term)
|
||||
(matches-search (:path item "!$!") term)
|
||||
(matches-search (:value item "!$!") term))))
|
||||
|
||||
;; Sort by folder order, but putting all "root" items always
|
||||
;; first, independently of sort order.
|
||||
:always
|
||||
(sort-by (fn [{:keys [path name] :as item}]
|
||||
(let [path (if (str/empty? path)
|
||||
(if reverse? "z" "a")
|
||||
path)]
|
||||
(str/lower (cph/merge-path-item path name))))
|
||||
(if ^boolean reverse? > <)))))
|
||||
|
||||
(defn add-group
|
||||
[asset group-name]
|
||||
|
|
Loading…
Add table
Reference in a new issue