mirror of https://github.com/penpot/penpot.git
✨ Add methods to plugins for modifying indices
This commit is contained in:
parent
4cdf1eed0c
commit
48c9fb5690
|
|
@ -649,6 +649,59 @@
|
|||
(ptk/data-event :layout/update {:ids selected-ids})
|
||||
(dwu/commit-undo-transaction undo-id))))))
|
||||
|
||||
(defn set-shape-index
|
||||
[file-id page-id id new-index]
|
||||
(ptk/reify ::set-shape-index
|
||||
ptk/WatchEvent
|
||||
(watch [it state _]
|
||||
(let [file-id (or file-id (:current-file-id state))
|
||||
page-id (or page-id (:current-page-id state))
|
||||
|
||||
objects (dsh/lookup-page-objects state file-id page-id)
|
||||
|
||||
undo-id (js/Symbol)
|
||||
|
||||
shape (get objects id)
|
||||
parent (get objects (:parent-id shape))
|
||||
|
||||
current-index (d/index-of (:shapes parent) id)
|
||||
|
||||
new-index
|
||||
(if (> new-index current-index)
|
||||
(inc new-index)
|
||||
new-index)
|
||||
|
||||
changes
|
||||
(-> (pcb/empty-changes it page-id)
|
||||
(pcb/with-objects objects)
|
||||
(pcb/change-parent (:id parent) [shape] new-index))]
|
||||
|
||||
(rx/of (dwu/start-undo-transaction undo-id)
|
||||
(dch/commit-changes changes)
|
||||
(ptk/data-event :layout/update {:ids [id]})
|
||||
(dwu/commit-undo-transaction undo-id))))))
|
||||
|
||||
(defn reorder-children
|
||||
[file-id page-id parent-id children]
|
||||
|
||||
(ptk/reify ::reorder-children
|
||||
ptk/WatchEvent
|
||||
(watch [it state _]
|
||||
(let [file-id (or file-id (:current-file-id state))
|
||||
page-id (or page-id (:current-page-id state))
|
||||
objects (dsh/lookup-page-objects state file-id page-id)
|
||||
undo-id (js/Symbol)
|
||||
|
||||
changes
|
||||
(-> (pcb/empty-changes it page-id)
|
||||
(pcb/with-objects objects)
|
||||
(pcb/reorder-children parent-id children))]
|
||||
|
||||
(rx/of (dwu/start-undo-transaction undo-id)
|
||||
(dch/commit-changes changes)
|
||||
(ptk/data-event :layout/update {:ids [parent-id]})
|
||||
(dwu/commit-undo-transaction undo-id))))))
|
||||
|
||||
;; --- Change Shape Order (D&D Ordering)
|
||||
|
||||
(defn relocate-selected-shapes
|
||||
|
|
|
|||
|
|
@ -529,6 +529,19 @@
|
|||
(let [parent-id (:parent-id shape)]
|
||||
(shape-proxy plugin-id (obj/get self "$file") (obj/get self "$page") parent-id)))))}
|
||||
|
||||
:parentIndex
|
||||
{:this true
|
||||
:get
|
||||
(fn [self]
|
||||
(let [shape (u/proxy->shape self)]
|
||||
(if (cfh/root? shape)
|
||||
0
|
||||
(let [file-id (obj/get self "$file")
|
||||
page-id (obj/get self "$page")
|
||||
parent (u/locate-shape file-id page-id (:parent-id shape))
|
||||
index (d/index-of (:shapes parent) id)]
|
||||
index))))}
|
||||
|
||||
:parentX
|
||||
{:this true
|
||||
:get (fn [self]
|
||||
|
|
@ -1057,6 +1070,35 @@
|
|||
(let [typography (u/proxy->library-typography typography)]
|
||||
(st/emit! (dwt/apply-typography #{id} typography file-id))))))
|
||||
|
||||
;; Change index method
|
||||
:setParentIndex
|
||||
(fn [index]
|
||||
(cond
|
||||
(not (us/safe-int? index))
|
||||
(u/display-not-valid :setParentIndex index)
|
||||
|
||||
(not (r/check-permission plugin-id "content:write"))
|
||||
(u/display-not-valid :setParentIndex "Plugin doesn't have 'content:write' permission")
|
||||
|
||||
:else
|
||||
(st/emit! (dw/set-shape-index file-id page-id id index))))
|
||||
|
||||
:bringForward
|
||||
(fn []
|
||||
(st/emit! (dw/vertical-order-selected :up)))
|
||||
|
||||
:sendBackward
|
||||
(fn []
|
||||
(st/emit! (dw/vertical-order-selected :down)))
|
||||
|
||||
:bringToFront
|
||||
(fn []
|
||||
(st/emit! (dw/vertical-order-selected :top)))
|
||||
|
||||
:sendToBack
|
||||
(fn []
|
||||
(st/emit! (dw/vertical-order-selected :bottom)))
|
||||
|
||||
;; COMPONENTS
|
||||
:isComponentInstance
|
||||
(fn []
|
||||
|
|
@ -1265,9 +1307,34 @@
|
|||
|
||||
(cond-> (or (cfh/frame-shape? data) (cfh/group-shape? data) (cfh/svg-raw-shape? data) (cfh/bool-shape? data))
|
||||
(crc/add-properties!
|
||||
{:name "children"
|
||||
{:this true
|
||||
:name "children"
|
||||
:enumerable false
|
||||
:get #(.getChildren ^js %)}))
|
||||
:get
|
||||
(fn [^js self]
|
||||
(.getChildren self))
|
||||
|
||||
:set
|
||||
(fn [^js self children]
|
||||
(cond
|
||||
(not (r/check-permission plugin-id "content:write"))
|
||||
(u/display-not-valid :children "Plugin doesn't have 'content:write' permission")
|
||||
|
||||
(not (every? shape-proxy? children))
|
||||
(u/display-not-valid :children "Every children needs to be shape proxies")
|
||||
|
||||
:else
|
||||
(let [shape (u/proxy->shape self)
|
||||
file-id (obj/get self "$file")
|
||||
page-id (obj/get self "$page")
|
||||
ids (->> children (map #(obj/get % "$id")))]
|
||||
|
||||
(cond
|
||||
(not= (set ids) (set (:shapes shape)))
|
||||
(u/display-not-valid :children "Not all children are present in the input")
|
||||
|
||||
:else
|
||||
(st/emit! (dw/reorder-children file-id page-id (:id shape) ids))))))}))
|
||||
|
||||
(cond-> (cfh/frame-shape? data)
|
||||
(-> (crc/add-properties!
|
||||
|
|
|
|||
Loading…
Reference in New Issue