feat(chrome-native-fs): save block even in editing mode

This commit is contained in:
Tienson Qin
2020-12-05 00:18:24 +08:00
parent 17bb4be3ad
commit 2ba37cdd6c
10 changed files with 239 additions and 226 deletions

View File

@@ -1320,17 +1320,38 @@
nil)
(state/conj-selection-block! element up?)))))))
(defn save-block-aux!
[block value format]
(let [value (text/remove-level-spaces value format true)
new-value (block/with-levels value format block)
properties (with-timetracking-properties block value)]
;; FIXME: somehow frontend.components.editor's will-unmount event will loop forever
;; maybe we shouldn't save the block/file in "will-unmount" event?
(save-block-if-changed! block new-value
{:custom-properties properties})))
(defn save-block!
[{:keys [format block id repo dummy?] :as state} value]
(when (or (:db/id (db/entity repo [:block/uuid (:block/uuid block)]))
dummy?)
(let [value (text/remove-level-spaces value format true)
new-value (block/with-levels value format block)
properties (with-timetracking-properties block value)]
;; FIXME: somehow frontend.components.editor's will-unmount event will loop forever
;; maybe we shouldn't save the block/file in "will-unmount" event?
(save-block-if-changed! block new-value
{:custom-properties properties}))))
(save-block-aux! block value format)))
(defn save-current-block-when-idle!
[]
(when-let [repo (state/get-current-repo)]
(when (state/input-idle? repo)
(let [input-id (state/get-edit-input-id)
block (state/get-edit-block)
elem (and input-id (gdom/getElement input-id))
db-block (db/entity [:block/uuid (:block/uuid block)])
db-content (:block/content db-block)
db-content-without-heading (and db-content
(util/safe-subs db-content (:block/level db-block)))
value (and elem (gobj/get elem "value"))]
(when (and block value db-content-without-heading
(not= (string/trim db-content-without-heading)
(string/trim value)))
(save-block-aux! block value (:block/format block)))))))
(defn on-up-down
[state e up?]
@@ -1957,3 +1978,14 @@
(state/set-editor-show-block-search! false)
(state/set-editor-show-page-search! false)
(state/set-editor-show-page-search-hashtag! false))))))
(defn periodically-save!
[]
(js/setInterval save-current-block-when-idle! 5000))
(defn get-current-input-value
[]
(let [edit-input-id (state/get-edit-input-id)
input (and edit-input-id (gdom/getElement edit-input-id))]
(when input
(gobj/get input "value"))))