diff --git a/CHANGES.md b/CHANGES.md index 13d1e1453..7448619b7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -55,7 +55,7 @@ is a number of cores) - Fix error when reseting stroke cap - Fix problem with strokes not refreshing in Safari [Taiga #9040](https://tree.taiga.io/project/penpot/issue/9040) - Fix problem with multiple color changes [Taiga #9631](https://tree.taiga.io/project/penpot/issue/9631) - +- Fix problem in plugins with zoomIntoView [Plugins #189](https://github.com/penpot/penpot-plugins/issues/189) ## 2.4.3 diff --git a/frontend/src/app/plugins/viewport.cljs b/frontend/src/app/plugins/viewport.cljs index ab3622764..bacd9c90a 100644 --- a/frontend/src/app/plugins/viewport.cljs +++ b/frontend/src/app/plugins/viewport.cljs @@ -8,11 +8,11 @@ (:require [app.common.data.macros :as dm] [app.common.spec :as us] - [app.common.uuid :as uuid] [app.main.data.workspace.viewport :as dwv] [app.main.data.workspace.zoom :as dwz] [app.main.store :as st] [app.plugins.format :as format] + [app.plugins.shape :as ps] [app.plugins.utils :as u] [app.util.object :as obj])) @@ -85,12 +85,13 @@ :zoomIntoView (fn [shapes] - (let [ids - (->> shapes - (map (fn [v] - (if (string? v) - (uuid/uuid v) - (uuid/uuid (obj/get v "x"))))))] - (st/emit! (dwz/fit-to-shapes ids)))))) + (cond + (not (every? ps/shape-proxy? shapes)) + (u/display-not-valid :zoomIntoView "Argument should be valid shapes") + + :else + (let [ids (->> shapes + (map (fn [shape] (obj/get shape "$id"))))] + (st/emit! (dwz/fit-to-shapes ids)))))))