mirror of
https://github.com/logseq/logseq.git
synced 2026-05-05 11:26:26 +00:00
split util.marker & util.priority lib
This commit is contained in:
29
src/main/frontend/util/priority.cljs
Normal file
29
src/main/frontend/util/priority.cljs
Normal file
@@ -0,0 +1,29 @@
|
||||
(ns frontend.util.priority
|
||||
(:require [clojure.string :as string]
|
||||
[frontend.util :as util]
|
||||
[frontend.util.marker :as marker]))
|
||||
|
||||
(defn add-or-update-priority
|
||||
[content format priority]
|
||||
(let [priority-pattern #"(\[#[ABC]\])?\s?"
|
||||
[re-pattern new-line-re-pattern]
|
||||
(if (= :org format)
|
||||
[#"\*+\s" #"\n\*+\s"]
|
||||
[#"#+\s" #"\n#+\s"])
|
||||
skip-hash-pos
|
||||
(if-let [matches (seq (util/re-pos new-line-re-pattern content))]
|
||||
(let [[start-pos content] (last matches)]
|
||||
(+ start-pos (count content)))
|
||||
(count (re-find re-pattern content)))
|
||||
skip-marker-pos
|
||||
(if-let [matches (seq (util/re-pos marker/bare-marker-pattern (subs content skip-hash-pos)))]
|
||||
(let [[start-pos content] (last matches)]
|
||||
(+ start-pos (count content)))
|
||||
0)
|
||||
pos (+ skip-hash-pos skip-marker-pos)
|
||||
new-content
|
||||
(str (subs content 0 pos)
|
||||
(string/replace-first (subs content pos)
|
||||
priority-pattern
|
||||
(str priority " ")))]
|
||||
new-content))
|
||||
Reference in New Issue
Block a user