|
|
@@ -5,7 +5,9 @@
|
|
|
[frontend.db :as db]
|
|
|
[frontend.db.model :as db-model]
|
|
|
[frontend.db.react :as react]
|
|
|
+ [frontend.db.utils :as db-utils]
|
|
|
[frontend.format.block :as block]
|
|
|
+ [frontend.mobile.haptics :as haptics]
|
|
|
[frontend.modules.outliner.core :as outliner-core]
|
|
|
[frontend.modules.outliner.transaction :as outliner-tx]
|
|
|
[frontend.state :as state]
|
|
|
@@ -118,8 +120,148 @@
|
|
|
(->> (concat result more-data)
|
|
|
(util/distinct-by :db/id))))))
|
|
|
|
|
|
+(defn indentable?
|
|
|
+ [{:block/keys [parent] :as block}]
|
|
|
+ (when parent
|
|
|
+ (let [parent-block (db-utils/pull (:db/id parent))
|
|
|
+ first-child (first
|
|
|
+ (db-model/get-block-immediate-children
|
|
|
+ (state/get-current-repo)
|
|
|
+ (:block/uuid parent-block)))]
|
|
|
+ (not= (:db/id block) (:db/id first-child)))))
|
|
|
+
|
|
|
+(defn outdentable?
|
|
|
+ [{:block/keys [level] :as _block}]
|
|
|
+ (not= level 1))
|
|
|
+
|
|
|
(defn indent-outdent-block!
|
|
|
[block direction]
|
|
|
(outliner-tx/transact!
|
|
|
{:outliner-op :move-blocks}
|
|
|
(outliner-core/indent-outdent-blocks! [block] (= direction :right))))
|
|
|
+
|
|
|
+(defn select-block!
|
|
|
+ [block-uuid]
|
|
|
+ (let [blocks (js/document.getElementsByClassName (str block-uuid))]
|
|
|
+ (when (seq blocks)
|
|
|
+ (state/exit-editing-and-set-selected-blocks! blocks))))
|
|
|
+
|
|
|
+(def swipe (atom nil))
|
|
|
+
|
|
|
+(defn on-touch-start
|
|
|
+ [event]
|
|
|
+ (when-let [touch (aget (.-targetTouches event) 0)]
|
|
|
+ (let [x (.-clientX touch)
|
|
|
+ y (.-clientY touch)]
|
|
|
+ (reset! swipe {:x0 x :y0 y :xi x :yi y :tx x :ty y :direction nil}))))
|
|
|
+
|
|
|
+
|
|
|
+(defn on-touch-move
|
|
|
+ [event block uuid *show-left-menu? *show-right-menu?]
|
|
|
+ (when-let [touch (aget (.-targetTouches event) 0)]
|
|
|
+ (let [{:keys [x0 xi direction]} @swipe
|
|
|
+ tx (.-clientX touch)
|
|
|
+ ty (.-clientY touch)
|
|
|
+ direction (if (nil? direction)
|
|
|
+ (if (> tx x0)
|
|
|
+ :right
|
|
|
+ :left)
|
|
|
+ direction)]
|
|
|
+ (swap! swipe #(-> %
|
|
|
+ (assoc :tx tx)
|
|
|
+ (assoc :ty ty)
|
|
|
+ (assoc :xi tx)
|
|
|
+ (assoc :yi ty)
|
|
|
+ (assoc :direction direction)))
|
|
|
+ (when (< (* (- xi x0) (- tx xi)) 0)
|
|
|
+ (swap! swipe #(-> %
|
|
|
+ (assoc :x0 tx)
|
|
|
+ (assoc :y0 ty))))
|
|
|
+ (let [{:keys [x0 y0]} @swipe
|
|
|
+ dx (- tx x0)
|
|
|
+ dy (- ty y0)]
|
|
|
+ (when-not (or (> (. js/Math abs dy) 15)
|
|
|
+ (< (. js/Math abs dx) 5))
|
|
|
+ (let [left (.querySelector js/document (str "#block-left-menu-" uuid))
|
|
|
+ right (.querySelector js/document (str "#block-right-menu-" uuid))]
|
|
|
+
|
|
|
+ (cond
|
|
|
+ (= direction :right)
|
|
|
+ (do
|
|
|
+ (reset! *show-left-menu? true)
|
|
|
+ (when left
|
|
|
+ (if (> dx 0)
|
|
|
+ (set! (.. left -style -width) (str dx "px"))
|
|
|
+ (set! (.. left -style -width) (str (+ 50 dx) "px")))
|
|
|
+
|
|
|
+ (let [indent (.querySelector left ".indent")]
|
|
|
+ (when (indentable? block)
|
|
|
+ (if (>= (util/get-element-width left) 50)
|
|
|
+ (set! (.. indent -style -opacity) "100%")
|
|
|
+ (set! (.. indent -style -opacity) "30%"))))))
|
|
|
+
|
|
|
+ (= direction :left)
|
|
|
+ (do
|
|
|
+ (reset! *show-right-menu? true)
|
|
|
+ (when right
|
|
|
+ (if (< dx 0)
|
|
|
+ (set! (.. right -style -width) (str (- dx) "px"))
|
|
|
+ (set! (.. right -style -width) (str (- 80 dx) "px")))
|
|
|
+
|
|
|
+ (let [outdent (.querySelector right ".outdent")
|
|
|
+ more (.querySelector right ".more")]
|
|
|
+
|
|
|
+ (when (outdentable? block)
|
|
|
+ (if (and (>= (util/get-element-width right) 40)
|
|
|
+ (< (util/get-element-width right) 80))
|
|
|
+ (set! (.. outdent -style -opacity) "100%")
|
|
|
+ (set! (.. outdent -style -opacity) "30%")))
|
|
|
+
|
|
|
+ (if (>= (util/get-element-width right) 80)
|
|
|
+ (set! (.. more -style -opacity) "100%")
|
|
|
+ (set! (.. more -style -opacity) "30%")))))
|
|
|
+ :else
|
|
|
+ nil)))))))
|
|
|
+
|
|
|
+(defn on-touch-end
|
|
|
+ [_event block uuid *show-left-menu? *show-right-menu?]
|
|
|
+ (let [left-menu (.querySelector js/document (str "#block-left-menu-" uuid))
|
|
|
+ right-menu (.querySelector js/document (str "#block-right-menu-" uuid))
|
|
|
+ {:keys [x0 tx]} @swipe
|
|
|
+ dx (- tx x0)]
|
|
|
+ (try
|
|
|
+ (when (> (. js/Math abs dx) 5)
|
|
|
+ (cond
|
|
|
+ (and left-menu (>= (util/get-element-width left-menu) 50))
|
|
|
+ (when (indentable? block)
|
|
|
+ (haptics/with-haptics-impact
|
|
|
+ (indent-outdent-block! block :right)
|
|
|
+ :light))
|
|
|
+
|
|
|
+ (and right-menu (<= 40 (util/get-element-width right-menu) 80))
|
|
|
+ (when (outdentable? block)
|
|
|
+ (haptics/with-haptics-impact
|
|
|
+ (indent-outdent-block! block :left)
|
|
|
+ :light))
|
|
|
+
|
|
|
+ (and right-menu (> (util/get-element-width right-menu) 80))
|
|
|
+ (haptics/with-haptics-impact
|
|
|
+ (do (state/set-state! :mobile/show-action-bar? true)
|
|
|
+ (state/set-state! :mobile/actioned-block block)
|
|
|
+ (select-block! uuid))
|
|
|
+ :light)
|
|
|
+
|
|
|
+ :else
|
|
|
+ nil))
|
|
|
+ (catch js/Error e
|
|
|
+ (js/console.error e))
|
|
|
+ (finally
|
|
|
+ (reset! *show-left-menu? false)
|
|
|
+ (reset! *show-right-menu? false)))))
|
|
|
+
|
|
|
+(defn on-touch-cancel
|
|
|
+ [_event *show-left-menu? *show-right-menu?]
|
|
|
+ (reset! *show-left-menu? false)
|
|
|
+ (reset! *show-right-menu? false))
|
|
|
+
|
|
|
+
|