From f906945101ba0e88a2a37537408f5b0c1d9fd19d Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 20 Dec 2019 10:51:14 +0100 Subject: [PATCH] :sparkles: Minor improvements on shape selection. --- frontend/src/uxbox/main/data/workspace.cljs | 38 +++++++++++-------- frontend/src/uxbox/main/ui/workspace.cljs | 2 +- .../src/uxbox/main/ui/workspace/drawarea.cljs | 5 +-- .../uxbox/main/ui/workspace/shortcuts.cljs | 2 +- 4 files changed, 27 insertions(+), 20 deletions(-) diff --git a/frontend/src/uxbox/main/data/workspace.cljs b/frontend/src/uxbox/main/data/workspace.cljs index ae6e5017f..a583e4c5f 100644 --- a/frontend/src/uxbox/main/data/workspace.cljs +++ b/frontend/src/uxbox/main/data/workspace.cljs @@ -573,6 +573,7 @@ (assoc-in $ [:workspace-data :shapes-by-id id] shape)))) (declare commit-shapes-changes) +(declare select-shape) (declare recalculate-shape-canvas-relation) (defn add-shape @@ -589,7 +590,8 @@ ptk/WatchEvent (watch [_ state stream] (let [shape (get-in state [:workspace-data :shapes-by-id id])] - (rx/of (commit-shapes-changes [[:add-shape id shape]]))))))) + (rx/of (commit-shapes-changes [[:add-shape id shape]]) + (select-shape id))))))) ;; --- Duplicate Selected @@ -612,7 +614,6 @@ ;; --- Toggle shape's selection status (selected or deselected) (defn select-shape - "Mark a shape selected for drawing." [id] (s/assert ::us/uuid id) (ptk/reify ::select-shape @@ -638,18 +639,6 @@ (assoc :selected #{}) (dissoc :selected-canvas)))))) -;; --- Select First Shape - -;; TODO: first??? - -(def select-first-shape - (ptk/reify ::select-first-shape - ptk/UpdateEvent - (update [_ state] - (let [pid (get-in state [:workspace-local :id]) - sid (first (get-in state [:workspace-data :shapes]))] - (assoc-in state [:workspace-local :selected] #{sid}))))) - ;; --- Select Shapes (By selrect) (defn- impl-try-match-shape @@ -1034,10 +1023,29 @@ (ptk/reify ::select-for-drawing ptk/UpdateEvent (update [_ state] - (update state :workspace-local assoc :drawing-tool tool :drawing data))))) + (update state :workspace-local assoc :drawing-tool tool :drawing data)) + + ptk/WatchEvent + (watch [_ state stream] + (let [cancel-event? (fn [event] + (interrupt? event)) + stoper (rx/filter (ptk/type? ::clear-drawing) stream)] + (->> (rx/filter cancel-event? stream) + (rx/take 1) + (rx/map (constantly clear-drawing)) + (rx/take-until stoper))))))) ;; --- Shape Proportions +;; (defn toggle-shape-proportion-lock +;; [id] +;; (ptk/reify ::toggle-shape-proportion-lock +;; ptk/UpdateEvent +;; (update [_ state] +;; (let [shape (-> (get-in state [:workspace-data :shapes-by-id id]) +;; (geom/size) + + ;; TODO: revisit (deftype LockShapeProportions [id] diff --git a/frontend/src/uxbox/main/ui/workspace.cljs b/frontend/src/uxbox/main/ui/workspace.cljs index b0feb5a00..fd0a82477 100644 --- a/frontend/src/uxbox/main/ui/workspace.cljs +++ b/frontend/src/uxbox/main/ui/workspace.cljs @@ -119,7 +119,7 @@ [:& messages-widget] [:& header {:page page :layout layout :flags flags}] - (when (:colorpalette flags) + (when (:colorpalette layout) [:& colorpalette]) (when (and layout page) diff --git a/frontend/src/uxbox/main/ui/workspace/drawarea.cljs b/frontend/src/uxbox/main/ui/workspace/drawarea.cljs index be260ce94..266bbcb5c 100644 --- a/frontend/src/uxbox/main/ui/workspace/drawarea.cljs +++ b/frontend/src/uxbox/main/ui/workspace/drawarea.cljs @@ -280,9 +280,8 @@ (geom/transform shape modifier-mtx) shape) shape (dissoc shape ::initialized? :modifier-mtx)] - ;; Add & select the cred shape to the workspace - (rx/of (dw/add-shape shape) - dw/select-first-shape)))))))) + ;; Add & select the created shape to the workspace + (rx/of (dw/add-shape shape))))))))) (def close-drawing-path (ptk/reify ::close-drawing-path diff --git a/frontend/src/uxbox/main/ui/workspace/shortcuts.cljs b/frontend/src/uxbox/main/ui/workspace/shortcuts.cljs index ec94ee7ef..bc8c7797a 100644 --- a/frontend/src/uxbox/main/ui/workspace/shortcuts.cljs +++ b/frontend/src/uxbox/main/ui/workspace/shortcuts.cljs @@ -40,7 +40,7 @@ :ctrl+b #(st/emit! (dw/select-for-drawing :rect)) :ctrl+e #(st/emit! (dw/select-for-drawing :circle)) :ctrl+t #(st/emit! (dw/select-for-drawing :text)) - :esc #(st/emit! dw/deselect-all) + :esc #(st/emit! :interrupt dw/deselect-all) :delete #(st/emit! dw/delete-selected) :ctrl+up #(st/emit! (dw/order-selected-shapes :up)) :ctrl+down #(st/emit! (dw/order-selected-shapes :down))