Skip to content

Commit

Permalink
Apple feedback to query_react
Browse files Browse the repository at this point in the history
  • Loading branch information
bendyorke authored and logseq-cldwalker committed Jan 7, 2023
1 parent 6b750b8 commit 657d83e
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions src/main/frontend/db/query_react.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -34,28 +34,31 @@
(some-> (or (state/get-current-page)
(:page (state/get-default-home))
(date/today)) string/lower-case)
(= :current-block input)
(and current-block-uuid (= :current-block input))
(:db/id (db-utils/entity [:block/uuid current-block-uuid]))
(= :parent-block input)
(and current-block-uuid (= :parent-block input))
(:db/id (model/get-block-parent current-block-uuid))

;; :3d-before-ms
(and (keyword? input)
(util/safe-re-find #"^\d+d(-before-ms)?$" (name input)))
(re-find #"^\d+d(-before-ms)?$" (name input)))
(let [input (name input)
days (parse-long (re-find #"^\d+" input))]
(util/date-at-local-ms (t/minus (t/today) (t/days days)) 0 0 0 0))
;; :3d-after-ms
(and (keyword? input)
(util/safe-re-find #"^\d+d(-after-ms)?$" (name input)))
(re-find #"^\d+d(-after-ms)?$" (name input)))
(let [input (name input)
days (parse-long (re-find #"^\d+" input))]
(util/date-at-local-ms (t/plus (t/today) (t/days days)) 24 0 0 0))
;; :3d-before
(and (keyword? input)
(util/safe-re-find #"^\d+d(-before)?$" (name input)))
(re-find #"^\d+d(-before)?$" (name input)))
(let [input (name input)
days (parse-long (re-find #"^\d+" input))]
(date->int (t/minus (t/today) (t/days days))))
;; :3d-after
(and (keyword? input)
(util/safe-re-find #"^\d+d(-after)?$" (name input)))
(re-find #"^\d+d(-after)?$" (name input)))
(let [input (name input)
days (parse-long (re-find #"^\d+" input))]
(date->int (t/plus (t/today) (t/days days))))
Expand Down

0 comments on commit 657d83e

Please sign in to comment.