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

Split specialized path drawing area from the generic one.

This commit is contained in:
Andrey Antukh 2016-08-27 17:47:28 +03:00
parent 6866ef67c8
commit fd9503af1d
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95

View file

@ -50,20 +50,34 @@
(.close (::sub own))
(dissoc own ::sub))
(declare generic-shape-draw-area)
(declare path-shape-draw-area)
(mx/defc draw-area
{:will-mount draw-area-will-mount
:will-unmount draw-area-will-unmount
:mixins [mx/static mx/reactive]}
[own]
[]
(let [shape (mx/react drawing-shape)
position (mx/react drawing-position)]
(when shape
(if position
(-> (assoc shape :drawing? true)
(geom/resize position)
(shapes/render-component))
(-> (assoc shape :drawing? true)
(shapes/render-component))))))
(if (= (:type shape) :path)
(path-shape-draw-area shape)
(generic-shape-draw-area shape position)))))
(mx/defc generic-shape-draw-area
[shape position]
(if position
(-> (assoc shape :drawing? true)
(geom/resize position)
(shapes/render-component))
(-> (assoc shape :drawing? true)
(shapes/render-component))))
(mx/defc path-shape-draw-area
[shape]
(-> (assoc shape :drawing? true)
(shapes/render-component)))
;; --- Drawing Initialization