;; 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) UXBOX Labs SL (ns app.main.ui.shapes.image (:require [app.common.geom.shapes :as gsh] [app.main.ui.shapes.attrs :as attrs] [app.main.ui.shapes.custom-stroke :refer [shape-custom-stroke]] [app.util.object :as obj] [rumext.alpha :as mf])) (mf/defc image-shape {::mf/wrap-props false} [props] (let [shape (unchecked-get props "shape") {:keys [x y width height]} shape transform (gsh/transform-matrix shape) props (-> (attrs/extract-style-attrs shape) (obj/merge! (attrs/extract-border-radius-attrs shape)) (obj/merge! #js {:x x :y y :transform transform :width width :height height})) path? (some? (.-d props))] [:g [:& shape-custom-stroke {:shape shape} (if path? [:> :path props] [:> :rect props])]]))