mirror of
https://github.com/penpot/penpot.git
synced 2026-05-26 02:13:46 +00:00
450 lines
18 KiB
Clojure
450 lines
18 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/.
|
|
;;
|
|
;; Copyright (c) KALEIDOS INC
|
|
|
|
(ns app.main.data.workspace.shapes
|
|
(:require
|
|
[app.common.data :as d]
|
|
[app.common.data.macros :as dm]
|
|
[app.common.files.changes-builder :as pcb]
|
|
[app.common.files.helpers :as cfh]
|
|
[app.common.files.shapes-helpers :as cfsh]
|
|
[app.common.schema :as sm]
|
|
[app.common.types.container :as ctn]
|
|
[app.common.types.page :as ctp]
|
|
[app.common.types.shape :as cts]
|
|
[app.common.types.shape-tree :as ctst]
|
|
[app.common.types.shape.interactions :as ctsi]
|
|
[app.main.data.comments :as dc]
|
|
[app.main.data.workspace.changes :as dch]
|
|
[app.main.data.workspace.edition :as dwe]
|
|
[app.main.data.workspace.selection :as dws]
|
|
[app.main.data.workspace.state-helpers :as wsh]
|
|
[app.main.data.workspace.undo :as dwu]
|
|
[app.main.features :as features]
|
|
[beicon.v2.core :as rx]
|
|
[potok.v2.core :as ptk]))
|
|
|
|
(defn add-shape
|
|
([shape]
|
|
(add-shape shape {}))
|
|
([shape {:keys [no-select? no-update-layout?]}]
|
|
|
|
(dm/verify!
|
|
"expected a valid shape"
|
|
(cts/check-shape! shape))
|
|
|
|
(ptk/reify ::add-shape
|
|
ptk/WatchEvent
|
|
(watch [it state _]
|
|
(let [page-id (:current-page-id state)
|
|
objects (wsh/lookup-page-objects state page-id)
|
|
|
|
[shape changes]
|
|
(-> (pcb/empty-changes it page-id)
|
|
(pcb/with-objects objects)
|
|
(cfsh/prepare-add-shape shape objects))
|
|
|
|
changes (cond-> changes
|
|
(cfh/text-shape? shape)
|
|
(pcb/set-undo-group (:id shape)))
|
|
|
|
undo-id (js/Symbol)]
|
|
|
|
(rx/concat
|
|
(rx/of (dwu/start-undo-transaction undo-id)
|
|
(dch/commit-changes changes)
|
|
(when-not no-update-layout?
|
|
(ptk/data-event :layout/update [(:parent-id shape)]))
|
|
(when-not no-select?
|
|
(dws/select-shapes (d/ordered-set (:id shape))))
|
|
(dwu/commit-undo-transaction undo-id))
|
|
(when (cfh/text-shape? shape)
|
|
(->> (rx/of (dwe/start-edition-mode (:id shape)))
|
|
(rx/observe-on :async)))))))))
|
|
|
|
(defn move-shapes-into-frame
|
|
[frame-id shapes]
|
|
(ptk/reify ::move-shapes-into-frame
|
|
ptk/WatchEvent
|
|
(watch [it state _]
|
|
(let [page-id (:current-page-id state)
|
|
objects (wsh/lookup-page-objects state page-id)
|
|
shapes (->> shapes
|
|
(remove #(dm/get-in objects [% :blocked]))
|
|
(cfh/order-by-indexed-shapes objects))
|
|
|
|
changes (-> (pcb/empty-changes it page-id)
|
|
(pcb/with-objects objects))
|
|
|
|
changes (cfsh/prepare-move-shapes-into-frame changes frame-id shapes objects)]
|
|
|
|
(if (some? changes)
|
|
(rx/of (dch/commit-changes changes))
|
|
(rx/empty))))))
|
|
|
|
(declare real-delete-shapes)
|
|
(declare update-shape-flags)
|
|
|
|
(defn delete-shapes
|
|
([ids] (delete-shapes nil ids {}))
|
|
([page-id ids] (delete-shapes page-id ids {}))
|
|
([page-id ids options]
|
|
(dm/assert!
|
|
"expected a valid set of uuid's"
|
|
(sm/check-set-of-uuid! ids))
|
|
|
|
(ptk/reify ::delete-shapes
|
|
ptk/WatchEvent
|
|
(watch [it state _]
|
|
(let [file-id (:current-file-id state)
|
|
page-id (or page-id (:current-page-id state))
|
|
file (wsh/get-file state file-id)
|
|
page (wsh/lookup-page state page-id)
|
|
objects (wsh/lookup-page-objects state page-id)
|
|
|
|
components-v2 (features/active-feature? state "components/v2")
|
|
|
|
ids (cfh/clean-loops objects ids)
|
|
|
|
in-component-copy?
|
|
(fn [shape-id]
|
|
;; Look for shapes that are inside a component copy, but are
|
|
;; not the root. In this case, they must not be deleted,
|
|
;; but hidden (to be able to recover them more easily).
|
|
;; Unless we are doing a component swap, in which case we want
|
|
;; to delete the old shape
|
|
(let [shape (get objects shape-id)]
|
|
(and (ctn/has-any-copy-parent? objects shape)
|
|
(not (:component-swap options)))))
|
|
|
|
[ids-to-delete ids-to-hide]
|
|
(if components-v2
|
|
(loop [ids-seq (seq ids)
|
|
ids-to-delete []
|
|
ids-to-hide []]
|
|
(let [id (first ids-seq)]
|
|
(if (nil? id)
|
|
[ids-to-delete ids-to-hide]
|
|
(if (in-component-copy? id)
|
|
(recur (rest ids-seq)
|
|
ids-to-delete
|
|
(conj ids-to-hide id))
|
|
(recur (rest ids-seq)
|
|
(conj ids-to-delete id)
|
|
ids-to-hide)))))
|
|
[ids []])
|
|
|
|
undo-id (js/Symbol)]
|
|
|
|
(rx/concat
|
|
(rx/of (dwu/start-undo-transaction undo-id)
|
|
(update-shape-flags ids-to-hide {:hidden true}))
|
|
(real-delete-shapes file page objects ids-to-delete it components-v2 (:component-swap options))
|
|
(rx/of (dwu/commit-undo-transaction undo-id))))))))
|
|
|
|
(defn- real-delete-shapes-changes
|
|
([file page objects ids it components-v2 ignore-touched]
|
|
(let [changes (-> (pcb/empty-changes it (:id page))
|
|
(pcb/with-page page)
|
|
(pcb/with-objects objects)
|
|
(pcb/with-library-data file))]
|
|
(real-delete-shapes-changes changes file page objects ids it components-v2 ignore-touched)))
|
|
([changes file page objects ids _it components-v2 ignore-touched]
|
|
(let [lookup (d/getf objects)
|
|
groups-to-unmask
|
|
(reduce (fn [group-ids id]
|
|
;; When the shape to delete is the mask of a masked group,
|
|
;; the mask condition must be removed, and it must be
|
|
;; converted to a normal group.
|
|
(let [obj (lookup id)
|
|
parent (lookup (:parent-id obj))]
|
|
(if (and (:masked-group parent)
|
|
(= id (first (:shapes parent))))
|
|
(conj group-ids (:id parent))
|
|
group-ids)))
|
|
#{}
|
|
ids)
|
|
|
|
interacting-shapes
|
|
(filter (fn [shape]
|
|
;; If any of the deleted shapes is the destination of
|
|
;; some interaction, this must be deleted, too.
|
|
(let [interactions (:interactions shape)]
|
|
(some #(and (ctsi/has-destination %)
|
|
(contains? ids (:destination %)))
|
|
interactions)))
|
|
(vals objects))
|
|
|
|
ids-set (set ids)
|
|
guides-to-remove
|
|
(->> (dm/get-in page [:options :guides])
|
|
(vals)
|
|
(filter #(contains? ids-set (:frame-id %)))
|
|
(map :id))
|
|
|
|
guides
|
|
(->> guides-to-remove
|
|
(reduce dissoc (dm/get-in page [:options :guides])))
|
|
|
|
starting-flows
|
|
(filter (fn [flow]
|
|
;; If any of the deleted is a frame that starts a flow,
|
|
;; this must be deleted, too.
|
|
(contains? ids (:starting-frame flow)))
|
|
(-> page :options :flows))
|
|
|
|
all-parents
|
|
(reduce (fn [res id]
|
|
;; All parents of any deleted shape must be resized.
|
|
(into res (cfh/get-parent-ids objects id)))
|
|
(d/ordered-set)
|
|
ids)
|
|
|
|
all-children
|
|
(->> ids ;; Children of deleted shapes must be also deleted.
|
|
(reduce (fn [res id]
|
|
(into res (cfh/get-children-ids objects id)))
|
|
[])
|
|
(reverse)
|
|
(into (d/ordered-set)))
|
|
|
|
find-all-empty-parents
|
|
(fn recursive-find-empty-parents [empty-parents]
|
|
(let [all-ids (into empty-parents ids)
|
|
contains? (partial contains? all-ids)
|
|
xform (comp (map lookup)
|
|
(filter #(or (cfh/group-shape? %) (cfh/bool-shape? %)))
|
|
(remove #(->> (:shapes %) (remove contains?) seq))
|
|
(map :id))
|
|
parents (into #{} xform all-parents)]
|
|
(if (= empty-parents parents)
|
|
empty-parents
|
|
(recursive-find-empty-parents parents))))
|
|
|
|
empty-parents
|
|
;; Any parent whose children are all deleted, must be deleted too.
|
|
(into (d/ordered-set) (find-all-empty-parents #{}))
|
|
|
|
components-to-delete
|
|
(if components-v2
|
|
(reduce (fn [components id]
|
|
(let [shape (get objects id)]
|
|
(if (and (= (:component-file shape) (:id file)) ;; Main instances should exist only in local file
|
|
(:main-instance shape)) ;; but check anyway
|
|
(conj components (:component-id shape))
|
|
components)))
|
|
[]
|
|
(into ids all-children))
|
|
[])
|
|
|
|
changes (-> changes
|
|
(pcb/set-page-option :guides guides))
|
|
|
|
changes (reduce (fn [changes component-id]
|
|
;; It's important to delete the component before the main instance, because we
|
|
;; need to store the instance position if we want to restore it later.
|
|
(pcb/delete-component changes component-id (:id page)))
|
|
changes
|
|
components-to-delete)
|
|
|
|
changes (-> changes
|
|
(pcb/remove-objects all-children {:ignore-touched true})
|
|
(pcb/remove-objects ids {:ignore-touched ignore-touched})
|
|
(pcb/remove-objects empty-parents)
|
|
(pcb/resize-parents all-parents)
|
|
(pcb/update-shapes groups-to-unmask
|
|
(fn [shape]
|
|
(assoc shape :masked-group false)))
|
|
(pcb/update-shapes (map :id interacting-shapes)
|
|
(fn [shape]
|
|
(d/update-when shape :interactions
|
|
(fn [interactions]
|
|
(into []
|
|
(remove #(and (ctsi/has-destination %)
|
|
(contains? ids (:destination %))))
|
|
interactions)))))
|
|
(cond-> (seq starting-flows)
|
|
(pcb/update-page-option :flows (fn [flows]
|
|
(->> (map :id starting-flows)
|
|
(reduce ctp/remove-flow flows))))))]
|
|
[changes all-parents])))
|
|
|
|
|
|
(defn delete-shapes-changes
|
|
[changes file page objects ids it components-v2 ignore-touched]
|
|
(let [[changes _all-parents] (real-delete-shapes-changes changes file page objects ids it components-v2 ignore-touched)]
|
|
changes))
|
|
|
|
(defn- real-delete-shapes
|
|
[file page objects ids it components-v2 ignore-touched]
|
|
(let [[changes all-parents] (real-delete-shapes-changes file page objects ids it components-v2 ignore-touched)
|
|
undo-id (js/Symbol)]
|
|
(rx/of (dwu/start-undo-transaction undo-id)
|
|
(dc/detach-comment-thread ids)
|
|
(dch/commit-changes changes)
|
|
(ptk/data-event :layout/update all-parents)
|
|
(dwu/commit-undo-transaction undo-id))))
|
|
|
|
(defn create-and-add-shape
|
|
[type frame-x frame-y {:keys [width height] :as attrs}]
|
|
(ptk/reify ::create-and-add-shape
|
|
ptk/WatchEvent
|
|
(watch [_ state _]
|
|
(let [vbc (wsh/viewport-center state)
|
|
x (:x attrs (- (:x vbc) (/ width 2)))
|
|
y (:y attrs (- (:y vbc) (/ height 2)))
|
|
page-id (:current-page-id state)
|
|
objects (wsh/lookup-page-objects state page-id)
|
|
frame-id (-> (wsh/lookup-page-objects state page-id)
|
|
(ctst/top-nested-frame {:x frame-x :y frame-y}))
|
|
|
|
selected (wsh/lookup-selected state)
|
|
base (cfh/get-base-shape objects selected)
|
|
|
|
parent-id (if (or (and (= 1 (count selected))
|
|
(cfh/frame-shape? (get objects (first selected))))
|
|
(empty? selected))
|
|
frame-id
|
|
(:parent-id base))
|
|
|
|
;; If the parent-id or the frame-id are component-copies, we need to get the first not copy parent
|
|
parent-id (:id (ctn/get-first-not-copy-parent objects parent-id)) ;; We don't want to change the structure of component copies
|
|
frame-id (:id (ctn/get-first-not-copy-parent objects frame-id))
|
|
|
|
|
|
shape (cts/setup-shape
|
|
(-> attrs
|
|
(assoc :type type)
|
|
(assoc :x x)
|
|
(assoc :y y)
|
|
(assoc :frame-id frame-id)
|
|
(assoc :parent-id parent-id)))]
|
|
|
|
(rx/of (add-shape shape))))))
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Artboard
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(defn create-artboard-from-selection
|
|
([]
|
|
(create-artboard-from-selection nil))
|
|
([id]
|
|
(create-artboard-from-selection id nil))
|
|
([id parent-id]
|
|
(create-artboard-from-selection id parent-id nil))
|
|
([id parent-id index]
|
|
(create-artboard-from-selection id parent-id index nil))
|
|
([id parent-id index name]
|
|
(ptk/reify ::create-artboard-from-selection
|
|
ptk/WatchEvent
|
|
(watch [it state _]
|
|
(let [page-id (:current-page-id state)
|
|
objects (wsh/lookup-page-objects state page-id)
|
|
selected (wsh/lookup-selected state)
|
|
selected (cfh/clean-loops objects selected)
|
|
|
|
changes (-> (pcb/empty-changes it page-id)
|
|
(pcb/with-objects objects))
|
|
|
|
[frame-shape changes]
|
|
(cfsh/prepare-create-artboard-from-selection changes
|
|
id
|
|
parent-id
|
|
objects
|
|
selected
|
|
index
|
|
name
|
|
false)
|
|
|
|
undo-id (js/Symbol)]
|
|
|
|
(when changes
|
|
(rx/of
|
|
(dwu/start-undo-transaction undo-id)
|
|
(dch/commit-changes changes)
|
|
(dws/select-shapes (d/ordered-set (:id frame-shape)))
|
|
(ptk/data-event :layout/update [(:id frame-shape)])
|
|
(dwu/commit-undo-transaction undo-id))))))))
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Shape Flags
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(defn update-shape-flags
|
|
[ids {:keys [blocked hidden transforming] :as flags}]
|
|
(dm/assert!
|
|
"expected valid coll of uuids"
|
|
(every? uuid? ids))
|
|
|
|
(dm/assert!
|
|
"expected valid shape-attrs value for `flags`"
|
|
(cts/check-shape-attrs! flags))
|
|
|
|
(ptk/reify ::update-shape-flags
|
|
ptk/WatchEvent
|
|
(watch [_ state _]
|
|
(let [update-fn
|
|
(fn [obj]
|
|
(cond-> obj
|
|
(boolean? blocked) (assoc :blocked blocked)
|
|
(boolean? hidden) (assoc :hidden hidden)
|
|
(boolean? transforming) (assoc :transforming transforming)))
|
|
objects (wsh/lookup-page-objects state)
|
|
;; We have change only the hidden behaviour, to hide only the
|
|
;; selected shape, block behaviour remains the same.
|
|
ids (if (boolean? blocked)
|
|
(into ids (->> ids (mapcat #(cfh/get-children-ids objects %))))
|
|
ids)]
|
|
(rx/of (dch/update-shapes ids update-fn {:attrs #{:blocked :hidden :transforming}}))))))
|
|
|
|
(defn toggle-visibility-selected
|
|
[]
|
|
(ptk/reify ::toggle-visibility-selected
|
|
ptk/WatchEvent
|
|
(watch [_ state _]
|
|
(let [selected (wsh/lookup-selected state)]
|
|
(rx/of (dch/update-shapes selected #(update % :hidden not)))))))
|
|
|
|
(defn toggle-lock-selected
|
|
[]
|
|
(ptk/reify ::toggle-lock-selected
|
|
ptk/WatchEvent
|
|
(watch [_ state _]
|
|
(let [selected (wsh/lookup-selected state)]
|
|
(rx/of (dch/update-shapes selected #(update % :blocked not)))))))
|
|
|
|
|
|
;; FIXME: this need to be refactored
|
|
|
|
(defn toggle-file-thumbnail-selected
|
|
[]
|
|
(ptk/reify ::toggle-file-thumbnail-selected
|
|
ptk/WatchEvent
|
|
(watch [_ state _]
|
|
(let [selected (wsh/lookup-selected state)
|
|
pages (-> state :workspace-data :pages-index vals)]
|
|
|
|
(rx/concat
|
|
;; First: clear the `:use-for-thumbnail` flag from all not
|
|
;; selected frames.
|
|
(rx/from
|
|
(->> pages
|
|
(mapcat
|
|
(fn [{:keys [objects id] :as page}]
|
|
(->> (ctst/get-frames objects)
|
|
(sequence
|
|
(comp (filter :use-for-thumbnail)
|
|
(map :id)
|
|
(remove selected)
|
|
(map (partial vector id)))))))
|
|
(d/group-by first second)
|
|
(map (fn [[page-id frame-ids]]
|
|
(dch/update-shapes frame-ids #(dissoc % :use-for-thumbnail) {:page-id page-id})))))
|
|
|
|
;; And finally: toggle the flag value on all the selected shapes
|
|
(rx/of (dch/update-shapes selected #(update % :use-for-thumbnail not))))))))
|