fix(editor): avoid select-all while editing title

pull/8162/head^2
Andelf 2022-12-30 12:39:03 +08:00
parent 7c76dcb2cf
commit 94d75b80bc
2 changed files with 7 additions and 2 deletions

View File

@ -3426,7 +3426,8 @@
(defn select-parent [e]
(let [edit-input (some-> (state/get-edit-input-id) gdom/getElement)
edit-block (state/get-edit-block)]
edit-block (state/get-edit-block)
target-element (.-nodeName (.-target e))]
(cond
;; editing block fully selected
(and edit-block edit-input
@ -3439,6 +3440,10 @@
edit-block
nil
;; Focusing other input element, e.g. when editing page title.
(contains? #{"INPUT" "TEXTAREA"} target-element)
nil
:else
(do
(util/stop e)

View File

@ -953,7 +953,7 @@ Similar to re-frame subscriptions"
(set-selection-blocks! blocks :down))
([blocks direction]
(when (seq blocks)
(let [blocks (util/sort-by-height blocks)]
(let [blocks (util/sort-by-height (remove nil? blocks))]
(swap! state assoc
:selection/mode true
:selection/blocks blocks