Files
logseq/src/main/frontend/handler/property/util.cljs
2023-08-07 20:32:38 +08:00

49 lines
1.7 KiB
Clojure

(ns frontend.handler.property.util
(:require [frontend.config :as config]
[frontend.state :as state]
[frontend.config :as config]
[logseq.graph-parser.property :as gp-property]
[logseq.graph-parser.util :as gp-util]
[frontend.db :as db]
[clojure.set :as set]))
(defn lookup
"Get the value of coll's (a map) `key`"
[coll key]
(let [repo (state/get-current-repo)]
(if (and (config/db-based-graph? repo)
(keyword? key)
(contains? gp-property/db-built-in-properties-keys key))
(when-let [property (db/entity repo [:block/name (gp-util/page-name-sanity-lc (name key))])]
(get coll (:block/uuid property)))
(get coll key))))
(defn get-property
"Get the value of block's property `key`"
[block key]
(let [block (db/entity (:db/id block))]
(when-let [properties (:block/properties block)]
(lookup properties key))))
(defn block->shape [block]
(get-property block :logseq.tldraw.shape))
(defn page-block->tldr-page [block]
(get-property block :logseq.tldraw.page))
(defn shape-block? [block]
(= :whiteboard-shape (get-property block :ls-type)))
(defonce *db-built-in-properties (atom {}))
(defn all-built-in-properties?
[properties]
(let [repo (state/get-current-repo)]
(when (empty? @*db-built-in-properties)
(let [built-in-properties (set (map
(fn [p]
(:block/uuid (db/entity [:block/name (name p)])))
gp-property/db-built-in-properties-keys))]
(swap! *db-built-in-properties assoc repo built-in-properties)))
(set/subset? (set properties) (get @*db-built-in-properties repo))))