| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- (ns frontend.db.async
- "Async queries"
- (:require [promesa.core :as p]
- [frontend.state :as state]
- [frontend.config :as config]
- [frontend.db.utils :as db-utils]
- [frontend.db.async.util :as db-async-util]
- [frontend.db.file-based.async :as file-async]
- [frontend.db :as db]
- [frontend.db.model :as db-model]
- [frontend.persist-db.browser :as db-browser]
- [datascript.core :as d]
- [frontend.db.react :as react]
- [frontend.date :as date]
- [cljs-time.core :as t]
- [cljs-time.format :as tf]
- [logseq.db :as ldb]
- [frontend.util :as util]
- [logseq.db.frontend.property :as db-property]))
- (def <q db-async-util/<q)
- (def <pull db-async-util/<pull)
- (comment
- (def <pull-many db-async-util/<pull-many))
- (defn <get-files
- [graph]
- (p/let [result (<q graph
- {:transact-db? false}
- '[:find [(pull ?file [:file/path :file/last-modified-at]) ...]
- :where
- [?file :file/path ?path]])]
- (->> result seq reverse (map #(vector (:file/path %) (or (:file/last-modified-at %) 0))))))
- (defn <get-all-templates
- [graph]
- (p/let [result (<q graph
- {:transact-db? true}
- '[:find ?t (pull ?b [*])
- :where
- [?b :block/properties ?p]
- [(get ?p :template) ?t]])]
- (into {} result)))
- (defn <get-template-by-name
- [name]
- (let [repo (state/get-current-repo)]
- (p/let [templates (<get-all-templates repo)]
- (get templates name))))
- (defn <db-based-get-all-properties
- "Return seq of all property names except for private built-in properties."
- [graph]
- (p/let [result (<q graph
- {:transact-db? false}
- '[:find [(pull ?e [:block/uuid :db/ident :block/original-name :block/schema]) ...]
- :where
- [?e :block/type "property"]
- [?e :block/original-name]])]
- (->> result
- ;; remove private built-in properties
- (remove #(and (:db/ident %)
- (db-property/logseq-property? (:db/ident %))
- (not (get-in % [:block/schema :public?])))))))
- (defn <get-all-property-names
- "Returns a seq of property name strings"
- []
- (when-let [graph (state/get-current-repo)]
- (if (config/db-based-graph? graph)
- (p/let [properties (<db-based-get-all-properties graph)]
- (map :block/original-name properties))
- (file-async/<file-based-get-all-properties graph))))
- (defn <get-property-values
- [graph property]
- (when-not (config/db-based-graph? graph)
- (file-async/<get-file-based-property-values graph property)))
- (defn <get-block-property-values
- [graph property-id]
- (<q graph {:transact-db? false}
- '[:find ?b ?v
- :in $ ?property-id
- :where
- [?b ?property-id ?v]
- [(not= ?v :logseq.property/empty-placeholder)]]
- property-id))
- ;; TODO: batch queries for better performance and UX
- (defn <get-block
- [graph name-or-uuid & {:keys [children?]
- :or {children? true}}]
- (let [name' (str name-or-uuid)
- e (cond
- (number? name-or-uuid)
- (db/entity name-or-uuid)
- (util/uuid-string? name')
- (db/entity [:block/uuid (uuid name')])
- :else
- (db/get-page name'))
- id (or (and (:block/uuid e) (str (:block/uuid e)))
- (and (util/uuid-string? name') name')
- name-or-uuid)]
- (if (:block.temp/fully-loaded? e)
- e
- (when-let [^Object sqlite @db-browser/*worker]
- (state/update-state! :db/async-queries (fn [s] (conj s name')))
- (p/let [result (.get-block-and-children sqlite graph id children?)
- {:keys [properties block children] :as result'} (ldb/read-transit-str result)
- conn (db/get-db graph false)
- block-and-children (concat properties [block] children)
- _ (d/transact! conn block-and-children)]
- (react/refresh-affected-queries!
- graph
- [[:frontend.worker.react/block (:db/id block)]])
- (state/update-state! :db/async-queries (fn [s] (disj s name')))
- (if children?
- block
- result'))))))
- (defn <get-right-sibling
- [graph db-id]
- (assert (integer? db-id))
- (when-let [^Object worker @db-browser/*worker]
- (p/let [result-str (.get-right-sibling worker graph db-id)
- result (ldb/read-transit-str result-str)
- conn (db/get-db graph false)
- _ (when result (d/transact! conn [result]))]
- result)))
- (defn <get-block-parents
- [graph id depth]
- (assert (integer? id))
- (when-let [^Object worker @db-browser/*worker]
- (when-let [block-id (:block/uuid (db/entity graph id))]
- (state/update-state! :db/async-queries (fn [s] (conj s (str block-id "-parents"))))
- (p/let [result-str (.get-block-parents worker graph id depth)
- result (ldb/read-transit-str result-str)
- conn (db/get-db graph false)
- _ (d/transact! conn result)]
- (state/update-state! :db/async-queries (fn [s] (disj s (str block-id "-parents"))))
- result))))
- (defn <get-block-refs
- [graph eid]
- (assert (integer? eid))
- (when-let [^Object worker @db-browser/*worker]
- (state/update-state! :db/async-queries (fn [s] (conj s (str eid "-refs"))))
- (p/let [result-str (.get-block-refs worker graph eid)
- result (ldb/read-transit-str result-str)
- conn (db/get-db graph false)
- _ (d/transact! conn result)]
- (state/update-state! :db/async-queries (fn [s] (disj s (str eid "-refs"))))
- result)))
- (defn <get-block-refs-count
- [graph eid]
- (assert (integer? eid))
- (when-let [^Object worker @db-browser/*worker]
- (.get-block-refs-count worker graph eid)))
- (defn <get-all-referenced-blocks-uuid
- "Get all uuids of blocks with any back link exists."
- [graph]
- (<q graph {:transact-db? false}
- '[:find [?refed-uuid ...]
- :where
- ;; ?referee-b is block with ref towards ?refed-b
- [?refed-b :block/uuid ?refed-uuid]
- [?referee-b :block/refs ?refed-b]]))
- (defn <get-file
- [graph path]
- (when (and graph path)
- (p/let [result (<pull graph [:file/path path])]
- (:file/content result))))
- (defn <get-date-scheduled-or-deadlines
- [journal-title]
- (when-let [date (date/journal-title->int journal-title)]
- (let [future-days (state/get-scheduled-future-days)
- date-format (tf/formatter "yyyyMMdd")
- current-day (tf/parse date-format (str date))
- future-day (some->> (t/plus current-day (t/days future-days))
- (tf/unparse date-format)
- (parse-long))]
- (when future-day
- (when-let [repo (state/get-current-repo)]
- (p/let [result (<q repo {}
- '[:find [(pull ?block ?block-attrs) ...]
- :in $ ?day ?future ?block-attrs
- :where
- (or
- [?block :block/scheduled ?d]
- [?block :block/deadline ?d])
- [(get-else $ ?block :block/repeated? false) ?repeated]
- [(get-else $ ?block :block/marker "NIL") ?marker]
- [(not= ?marker "DONE")]
- [(not= ?marker "CANCELED")]
- [(not= ?marker "CANCELLED")]
- [(<= ?d ?future)]
- (or-join [?repeated ?d ?day]
- [(true? ?repeated)]
- [(>= ?d ?day)])]
- date
- future-day
- db-model/block-attrs)]
- (->> result
- db-model/sort-by-left-recursive
- db-utils/group-by-page)))))))
- (defn <get-tag-pages
- [graph tag-id]
- (<q graph {:transact-db? true}
- '[:find [(pull ?page [:db/id :block/uuid :block/name :block/original-name :block/created-at :block/updated-at])]
- :in $ ?tag-id
- :where
- [?page :block/tags ?tag-id]]
- tag-id))
- (defn <get-tags
- [graph]
- (<q graph {:transact-db? false}
- '[:find [(pull ?tag-id [:db/id :block/original-name])]
- :in $ ?tag-id
- :where
- [?page :block/tags ?tag-id]]))
- (defn <fetch-all-pages
- [graph]
- (when-let [^Object worker @db-browser/*worker]
- (let [db (db/get-db graph)
- exclude-ids (->> (d/datoms db :avet :block/name)
- (map :db/id)
- (ldb/write-transit-str))]
- (.fetch-all-pages worker graph exclude-ids))))
|