0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-06 12:01:19 -05:00

🐛 Fixes image upload position when uploading from left sidebar

This commit is contained in:
alonso.torres 2021-02-04 12:27:05 +01:00 committed by Hirunatan
parent 7378089f4a
commit b7cbe49cb2
2 changed files with 9 additions and 3 deletions

View file

@ -493,7 +493,7 @@
(rx/map #(assoc (first %) :name (.-name (second %))))
(rx/do on-svg)))))
(defn upload-media-objects
(defn- upload-media-objects
[{:keys [file-id local? data name uris mtype svg-as-images] :as params}]
(us/assert ::upload-media-objects params)
(ptk/reify ::upload-media-objects

View file

@ -10,6 +10,7 @@
(ns app.main.ui.workspace.left-toolbar
(:require
[app.common.geom.point :as gpt]
[app.common.math :as mth]
[app.common.media :as cm]
[app.main.data.workspace :as dw]
[app.main.data.workspace.shortcuts :as sc]
@ -36,8 +37,13 @@
(mf/deps file)
(fn [blobs]
(let [params {:file-id (:id file)
:data (seq blobs)}]
(st/emit! (dw/upload-media-workspace params (gpt/point 0 0))))))]
:data (seq blobs)}
;; We don't want to add a ref because that redraws the component
;; for everychange. Better direct access on the callback
vbox (get-in @st/state [:workspace-local :vbox])
x (mth/round (+ (:x vbox) (/ (:width vbox) 2)))
y (mth/round (+ (:y vbox) (/ (:height vbox) 2)))]
(st/emit! (dw/upload-media-workspace params (gpt/point x y))))))]
[:li.tooltip.tooltip-right
{:alt (tr "workspace.toolbar.image")