mirror of
https://github.com/penpot/penpot.git
synced 2026-05-23 17:03:41 +00:00
45 lines
1.6 KiB
Clojure
45 lines
1.6 KiB
Clojure
;; This Source Code Form is subject to the terms of the Mozilla Public
|
|
;; License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
;;
|
|
;; Copyright (c) KALEIDOS INC
|
|
|
|
(ns app.main.ui.workspace.shapes.path
|
|
(:require
|
|
[app.common.svg.path.command :as upc]
|
|
[app.main.data.workspace.path.helpers :as helpers]
|
|
[app.main.refs :as refs]
|
|
[app.main.ui.shapes.path :as path]
|
|
[app.main.ui.shapes.shape :refer [shape-container]]
|
|
[app.main.ui.workspace.shapes.debug :as wsd]
|
|
[app.main.ui.workspace.shapes.path.common :as pc]
|
|
[rumext.v2 :as mf]))
|
|
|
|
(defn apply-content-modifiers
|
|
[shape content-modifiers]
|
|
(let [shape (update shape :content upc/apply-content-modifiers content-modifiers)
|
|
[_ new-selrect] (helpers/content->points+selrect shape (:content shape))]
|
|
(assoc shape :selrect new-selrect)))
|
|
|
|
(mf/defc path-wrapper
|
|
{::mf/wrap-props false}
|
|
[props]
|
|
(let [shape (unchecked-get props "shape")
|
|
content-modifiers-ref (pc/make-content-modifiers-ref (:id shape))
|
|
content-modifiers (mf/deref content-modifiers-ref)
|
|
editing-id (mf/deref refs/selected-edition)
|
|
editing? (= editing-id (:id shape))
|
|
|
|
shape
|
|
(mf/use-memo
|
|
(mf/deps shape content-modifiers)
|
|
#(cond-> shape
|
|
(some? content-modifiers)
|
|
(apply-content-modifiers content-modifiers)))]
|
|
|
|
[:> shape-container {:shape shape
|
|
:pointer-events (when editing? "none")}
|
|
[:& path/path-shape {:shape shape}]
|
|
(when *assert*
|
|
[:& wsd/shape-debug {:shape shape}])]))
|