mirror of
https://github.com/penpot/penpot.git
synced 2026-05-24 17:33:41 +00:00
42 lines
1.3 KiB
Clojure
42 lines
1.3 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/.
|
|
;;
|
|
;; This Source Code Form is "Incompatible With Secondary Licenses", as
|
|
;; defined by the Mozilla Public License, v. 2.0.
|
|
;;
|
|
;; Copyright (c) 2020 UXBOX Labs SL
|
|
|
|
(ns app.main.ui.shapes.circle
|
|
(:require
|
|
[rumext.alpha :as mf]
|
|
[app.main.ui.shapes.attrs :as attrs]
|
|
[app.main.ui.shapes.custom-stroke :refer [shape-custom-stroke]]
|
|
[app.common.geom.shapes :as geom]
|
|
[app.util.object :as obj]))
|
|
|
|
(mf/defc circle-shape
|
|
{::mf/wrap-props false}
|
|
[props]
|
|
(let [shape (unchecked-get props "shape")
|
|
{:keys [id x y width height]} shape
|
|
transform (geom/transform-matrix shape)
|
|
|
|
cx (+ x (/ width 2))
|
|
cy (+ y (/ height 2))
|
|
rx (/ width 2)
|
|
ry (/ height 2)
|
|
|
|
props (-> (attrs/extract-style-attrs shape)
|
|
(obj/merge!
|
|
#js {:cx cx
|
|
:cy cy
|
|
:rx rx
|
|
:ry ry
|
|
:transform transform
|
|
:id (str "shape-" id)}))]
|
|
|
|
[:& shape-custom-stroke {:shape shape
|
|
:base-props props
|
|
:elem-name "ellipse"}]))
|