mirror of
https://github.com/penpot/penpot.git
synced 2026-05-23 00:43:41 +00:00
39 lines
1.1 KiB
Clojure
39 lines
1.1 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.shapes.rect
|
|
(:require
|
|
[app.common.data.macros :as dm]
|
|
[app.common.geom.shapes :as gsh]
|
|
[app.main.ui.shapes.attrs :as attrs]
|
|
[app.main.ui.shapes.custom-stroke :refer [shape-custom-strokes]]
|
|
[app.util.object :as obj]
|
|
[rumext.v2 :as mf]))
|
|
|
|
(mf/defc rect-shape
|
|
{::mf/wrap-props false}
|
|
[props]
|
|
(let [shape (unchecked-get props "shape")
|
|
|
|
x (dm/get-prop shape :x)
|
|
y (dm/get-prop shape :y)
|
|
w (dm/get-prop shape :width)
|
|
h (dm/get-prop shape :height)
|
|
|
|
t (gsh/transform-str shape)
|
|
|
|
props (mf/with-memo [shape]
|
|
(-> #js {}
|
|
(attrs/add-border-props! shape)
|
|
(obj/merge! #js {:x x :y y :transform t :width w :height h})))
|
|
|
|
path? (some? (.-d props))]
|
|
|
|
[:& shape-custom-strokes {:shape shape}
|
|
(if path?
|
|
[:> :path props]
|
|
[:> :rect props])]))
|