| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- (ns frontend.handler.file-based.page-property
- "Page property fns for file graphs"
- (:require [clojure.string :as string]
- [frontend.db :as db]
- [frontend.db.file-based.model :as file-model]
- [frontend.modules.outliner.op :as outliner-op]
- [frontend.modules.outliner.ui :as ui-outliner-tx]
- [frontend.state :as state]
- [frontend.util :as util]))
- (defn insert-property
- [format content key value]
- (when (and (string? content) (not (string/blank? (name key))))
- (let [key (if (string? key) (keyword key) key)
- key-part (util/format (case format
- :org "#+%s: "
- "%s:: ") (string/lower-case (name key)))
- new-property-line (str key-part value)
- lines (string/split-lines content)
- key-exists? (atom false)
- lines (doall
- (map (fn [line]
- (if (and (string/starts-with?
- (string/lower-case line)
- (string/lower-case key-part))
- (not @key-exists?)) ; only replace the first match
- (do
- (reset! key-exists? true)
- new-property-line)
- line)) lines))
- lines (if (= lines [""]) nil lines)
- lines (if @key-exists? lines (cons new-property-line lines))]
- (string/join "\n" lines))))
- (defn insert-properties
- "Updates multiple page properties. Mainly just used in legacy title context"
- [format content kvs]
- (reduce
- (fn [content [k v]]
- (let [k (if (string? k)
- (keyword (-> (string/lower-case k)
- (string/replace " " "-")))
- k)
- v (if (coll? v)
- (some->>
- (seq v)
- (distinct)
- (string/join ", "))
- v)]
- (insert-property format content k v)))
- content kvs))
- (defn add-property!
- [page key value]
- (let [repo (state/get-current-repo)
- key (keyword key)
- pre-block (file-model/get-pre-block repo (:db/id page))
- format (state/get-preferred-format)
- page-id {:db/id (:db/id page)}
- org? (= format :org)
- value (if (contains? #{:filters} key) (pr-str value) value)]
- (if pre-block
- (let [properties (:block/properties pre-block)
- new-properties (assoc properties key value)
- content (:block/title pre-block)
- new-content (insert-property format content key value)
- block {:db/id (:db/id pre-block)
- :block/properties new-properties
- :block/title new-content
- :block/page page-id}
- tx [(assoc page-id :block/properties new-properties)
- block]]
- (db/transact! tx))
- (let [block {:block/uuid (db/new-block-id)
- :block/parent page-id
- :block/page page-id
- :block/title (if org?
- (str "#+" (string/upper-case (name key)) ": " value)
- (str (name key) ":: " value))
- :block/format format
- :block/properties {key value}
- :block/pre-block? true}
- page-properties-tx [(assoc page-id :block/properties {key value})]]
- (ui-outliner-tx/transact!
- {:outliner-op :insert-blocks
- :additional-tx page-properties-tx}
- (outliner-op/insert-blocks! [block] page {:sibling? false}))))))
|