0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-15 17:21:17 -05:00

Add alignment to movement.

This commit is contained in:
Andrey Antukh 2016-04-22 18:20:21 +03:00
parent 8c99683eaf
commit 7d17926060
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95
3 changed files with 44 additions and 102 deletions

View file

@ -14,23 +14,19 @@
[uxbox.util.geom.point :as gpt]
[uxbox.util.workers :as uw]))
(defn- move
[shape p1]
(let [dx (- (:x2 shape) (:x1 shape))
dy (- (:y2 shape) (:y1 shape))
p2 (gpt/add p1 [dx dy])]
(assoc shape
:x1 (:x p1)
:y1 (:y p1)
:x2 (:x p2)
:y2 (:y p2))))
;; (defn- move
;; [shape p1]
;; (let [dx (- (:x2 shape) (:x1 shape))
;; dy (- (:y2 shape) (:y1 shape))
;; p2 (gpt/add p1 [dx dy])]
;; (assoc shape
;; :x1 (:x p1)
;; :y1 (:y p1)
;; :x2 (:x p2)
;; :y2 (:y p2))))
(defn translate
[{:keys [x1 y1] :as shape}]
(let [message {:cmd :grid/align
:point (gpt/point x1 y1)}]
[point]
(let [message {:cmd :grid/align :point point}]
(->> (uw/ask! worker message)
(rx/map (fn [{:keys [point]}]
(if point
(move shape point)
shape))))))
(rx/map :point))))

View file

@ -58,6 +58,14 @@
(-> (l/in [:workspace :zoom])
(l/focus-atom st/state)))
(def ^:const alignment-l
(letfn [(getter [flags]
(and (contains? flags :grid/indexed)
(contains? flags :grid/alignment)
(contains? flags :grid)))]
(-> (l/getter getter)
(l/focus-atom flags-l))))
;; --- Scroll Stream
(defonce scroll-b (rx/bus))
@ -113,3 +121,4 @@
(rx/buffer 2 1)
(rx/map coords-delta)
(rx/share)))

View file

@ -22,16 +22,6 @@
;; --- Lenses
;; (declare translate-to-viewport)
;; (defn- resolve-selected
;; [state]
;; (let [selected (get-in state [:workspace :selected])
;; xf (comp
;; (map #(get-in state [:shapes-by-id %]))
;; (map translate-to-viewport))]
;; (into #{} xf selected)))
(defn- resolve-selected
[state]
(let [selected (get-in state [:workspace :selected])
@ -42,14 +32,6 @@
(-> (l/getter resolve-selected)
(l/focus-atom st/state)))
(def ^:const ^:private alignment-l
(letfn [(getter [flags]
(and (contains? flags :grid/indexed)
(contains? flags :grid/alignment)
(contains? flags :grid)))]
(-> (l/getter getter)
(l/focus-atom wb/flags-l))))
;; --- Public Api
(declare initialize)
@ -62,77 +44,32 @@
;; --- Implementation
;; (def coords
;; (gpt/point c/canvas-start-x
;; c/canvas-start-y))
(declare watch-movement)
;; (defn- translate-to-viewport
;; [shape]
;; (let [dx (- (:x2 shape) (:x1 shape))
;; dy (- (:y2 shape) (:y1 shape))
;; p1 (gpt/point (:x1 shape) (:y1 shape))
;; p2 (gpt/add p1 coords)
;; p3 (gpt/add p2 [dx dy])]
;; (assoc shape
;; :x1 (:x p2)
;; :y1 (:y p2)
;; :x2 (:x p3)
;; :y2 (:y p3))))
;; (defn- translate-to-canvas
;; [shape]
;; (let [dx (- (:x2 shape) (:x1 shape))
;; dy (- (:y2 shape) (:y1 shape))
;; p1 (gpt/point (:x1 shape) (:y1 shape))
;; p2 (gpt/subtract p1 coords)
;; p3 (gpt/add p2 [dx dy])]
;; (assoc shape
;; :x1 (:x p2)
;; :y1 (:y p2)
;; :x2 (:x p3)
;; :y2 (:y p3))))
;; (defn- initialize
;; []
;; (let [shapes @selected-shapes-l
;; align? @alignment-l
;; stoper (->> uuc/actions-s
;; (rx/map :type)
;; (rx/filter empty?)
;; (rx/take 1))]
;; (as-> wb/mouse-delta-s $
;; (rx/take-until stoper $)
;; (rx/map #(gpt/divide % @wb/zoom-l) $)
;; (rx/scan (fn [acc delta]
;; (let [xf (map #(geom/move % delta))]
;; (into [] xf acc))) shapes $)
;; (rx/mapcat (fn [items]
;; (if align?
;; (->> (apply rx/of items)
;; (rx/mapcat align/translate)
;; (rx/reduce conj []))
;; (rx/of items))) $)
;; (rx/map (fn [items]
;; (mapv translate-to-canvas items)) $)
;; (rx/subscribe $ handle-movement))))
(defn- initialize
[]
(let [align? @wb/alignment-l
stoper (->> uuc/actions-s
(rx/map :type)
(rx/filter empty?)
(rx/take 1))]
(run! (partial watch-movement stoper align?)
(deref selected-shapes-l))))
(defn- handle-movement
[{:keys [id] :as shape} delta]
(rs/emit! (uds/move-shape id delta)))
(defn- watch-movement
[stoper shape]
(as-> wb/mouse-delta-s $
(rx/take-until stoper $)
(rx/map #(gpt/divide % @wb/zoom-l) $)
(rx/subscribe $ (partial handle-movement shape))))
(defn- initialize
[]
(let [;; align? @alignment-l
stoper (->> uuc/actions-s
(rx/map :type)
(rx/filter empty?)
(rx/take 1))]
(run! (partial watch-movement stoper)
(deref selected-shapes-l))))
[stoper align? shape]
(let [stream (->> wb/mouse-viewport-s
(rx/sample 10)
(rx/mapcat (fn [point]
(if align?
(align/translate point)
(rx/of point))))
(rx/buffer 2 1)
(rx/map wb/coords-delta)
(rx/take-until stoper)
(rx/map #(gpt/divide % @wb/zoom-l)))]
(rx/subscribe stream (partial handle-movement shape))))