From 7875a6b961b6572d54109c52d25976f447110063 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 23 Aug 2016 16:26:44 +0300 Subject: [PATCH] Add proper path edition behavior. --- src/uxbox/main/data/shapes.cljs | 42 +++++++++++++++++++++++----- src/uxbox/main/ui/shapes/common.cljs | 7 ++++- src/uxbox/main/ui/shapes/path.cljs | 17 +++++++---- 3 files changed, 53 insertions(+), 13 deletions(-) diff --git a/src/uxbox/main/data/shapes.cljs b/src/uxbox/main/data/shapes.cljs index df33e702a..54e03b450 100644 --- a/src/uxbox/main/data/shapes.cljs +++ b/src/uxbox/main/data/shapes.cljs @@ -19,6 +19,8 @@ [uxbox.main.state.shapes :as stsh] [uxbox.main.data.core :refer (worker)] [uxbox.main.data.pages :as udp] + ;; FIXME: rlocks should be moved out of ui.workspace + [uxbox.main.ui.workspace.rlocks :as rlocks] [uxbox.util.geom.point :as gpt] [uxbox.util.data :refer (index-of)])) @@ -401,17 +403,43 @@ {:pre [(uuid? id) (number? index) (gpt/point? delta)]} (UpdatePath. id index delta)) +;; --- Start shape "edition mode" + +(defrecord StartEditionMode [id] + rs/UpdateEvent + (-apply-update [_ state] + (assoc-in state [:workspace :edition] id)) + + rs/EffectEvent + (-apply-effect [_ state] + (rlocks/acquire! :shape/edition))) + +(defn start-edition-mode + [id] + {:pre [(uuid? id)]} + (println "start-edition-mode" id) + (StartEditionMode. id)) + ;; --- Events (implicit) (for selected) +(defrecord DeselectAll [] + rs/UpdateEvent + (-apply-update [_ state] + (-> state + (assoc-in [:workspace :selected] #{}) + (assoc-in [:workspace :edition] nil) + (assoc-in [:workspace :drawing] nil))) + + rs/EffectEvent + (-apply-effect [_ state] + (rlocks/release! :shape/edition))) + (defn deselect-all - "Mark a shape selected for drawing in the canvas." + "Clear all possible state of drawing, edition + or any similar action taken by the user." [] - (reify - rs/UpdateEvent - (-apply-update [_ state] - (-> state - (assoc-in [:workspace :selected] #{}) - (assoc-in [:workspace :drawing] nil))))) + (println "deselect-all") + (DeselectAll.)) (defn group-selected [] diff --git a/src/uxbox/main/ui/shapes/common.cljs b/src/uxbox/main/ui/shapes/common.cljs index 8cb759e39..d54a04550 100644 --- a/src/uxbox/main/ui/shapes/common.cljs +++ b/src/uxbox/main/ui/shapes/common.cljs @@ -17,7 +17,12 @@ [uxbox.main.geom :as geom] [uxbox.util.dom :as dom])) -;; --- Lenses +;; --- Refs + +;; (defonce edition-ref (atom nil)) +(def edition-ref + (-> (l/in [:workspace :edition]) + (l/derive st/state))) (def drawing-state-ref (-> (l/in [:workspace :drawing]) diff --git a/src/uxbox/main/ui/shapes/path.cljs b/src/uxbox/main/ui/shapes/path.cljs index a3a632392..e006456fb 100644 --- a/src/uxbox/main/ui/shapes/path.cljs +++ b/src/uxbox/main/ui/shapes/path.cljs @@ -6,8 +6,10 @@ (ns uxbox.main.ui.shapes.path (:require [uxbox.util.mixins :as mx :include-macros true] + [uxbox.util.rstore :as rs] [uxbox.main.ui.shapes.common :as common] [uxbox.main.ui.shapes.attrs :as attrs] + [uxbox.main.data.shapes :as uds] [uxbox.main.geom :as geom])) ;; --- Path Component @@ -18,11 +20,16 @@ {:mixins [mx/static mx/reactive]} [{:keys [id] :as shape}] (let [selected (mx/react common/selected-ref) - selected? (contains? selected id) - on-mouse-down #(common/on-mouse-down % shape selected)] - [:g.shape {:class (when selected? "selected") - :on-mouse-down on-mouse-down} - (path-shape shape identity)])) + selected? (contains? selected id)] + (letfn [(on-mouse-down [event] + (common/on-mouse-down event shape selected)) + (on-double-click [event] + (when selected? + (rs/emit! (uds/start-edition-mode id))))] + [:g.shape {:class (when selected? "selected") + :on-double-click on-double-click + :on-mouse-down on-mouse-down} + (path-shape shape identity)]))) ;; --- Path Shape