mirror of
https://github.com/penpot/penpot.git
synced 2026-07-31 18:36:18 +00:00
🎉 Make tokens library readonly when it's in an external file
This commit is contained in:
parent
4250944edb
commit
47bc0c6600
@ -47,6 +47,7 @@
|
||||
|
||||
(def permissions (mf/create-context nil))
|
||||
(def can-edit? (mf/create-context nil))
|
||||
(def can-edit-tokens? (mf/create-context nil))
|
||||
|
||||
(def active-tokens-by-type
|
||||
"Active tokens by type, used mainly for provide tokens data to the
|
||||
|
||||
@ -19,6 +19,7 @@
|
||||
[app.main.refs :as refs]
|
||||
[app.main.store :as st]
|
||||
[app.main.ui.components.dropdown :refer [dropdown]]
|
||||
[app.main.ui.context :as ctx]
|
||||
[app.main.ui.ds.foundations.assets.icon :refer [icon*] :as i]
|
||||
[app.main.ui.hooks :as hooks]
|
||||
[app.util.clipboard :as clipboard]
|
||||
@ -335,31 +336,39 @@
|
||||
|
||||
(defn default-actions [{:keys [token selected-token-set-id on-delete-token errors]}]
|
||||
(let [{:keys [modal]} (dwta/get-token-properties token)
|
||||
|
||||
can-edit-tokens?
|
||||
(mf/use-ctx ctx/can-edit-tokens?)
|
||||
|
||||
on-copy-name #(clipboard/to-clipboard (:name token))
|
||||
on-duplicate-token #(st/emit! (dwtl/duplicate-token (:id token)))]
|
||||
[{:title (tr "workspace.tokens.edit")
|
||||
:no-selectable true
|
||||
:action (fn [event]
|
||||
(let [{:keys [key fields]} modal]
|
||||
(dom/stop-propagation event)
|
||||
(st/emit! (dwtl/assign-token-context-menu nil)
|
||||
(modal/show key {:x (.-clientX ^js event)
|
||||
:y (.-clientY ^js event)
|
||||
:position :right
|
||||
:fields fields
|
||||
:initial-errors errors
|
||||
:action "edit"
|
||||
:selected-token-set-id selected-token-set-id
|
||||
:token token}))))}
|
||||
{:title (tr "workspace.tokens.duplicate")
|
||||
:no-selectable true
|
||||
:action on-duplicate-token}
|
||||
{:title (tr "workspace.tokens.copy-name")
|
||||
:no-selectable true
|
||||
:action on-copy-name}
|
||||
{:title (tr "workspace.tokens.delete")
|
||||
:no-selectable true
|
||||
:action #(on-delete-token token)}]))
|
||||
(concat
|
||||
[]
|
||||
(when can-edit-tokens?
|
||||
[{:title (tr "workspace.tokens.edit")
|
||||
:no-selectable true
|
||||
:action (fn [event]
|
||||
(let [{:keys [key fields]} modal]
|
||||
(dom/stop-propagation event)
|
||||
(st/emit! (dwtl/assign-token-context-menu nil)
|
||||
(modal/show key {:x (.-clientX ^js event)
|
||||
:y (.-clientY ^js event)
|
||||
:position :right
|
||||
:fields fields
|
||||
:initial-errors errors
|
||||
:action "edit"
|
||||
:selected-token-set-id selected-token-set-id
|
||||
:token token}))))}
|
||||
{:title (tr "workspace.tokens.duplicate")
|
||||
:no-selectable true
|
||||
:action on-duplicate-token}])
|
||||
[{:title (tr "workspace.tokens.copy-name")
|
||||
:no-selectable true
|
||||
:action on-copy-name}]
|
||||
(when can-edit-tokens?
|
||||
[{:title (tr "workspace.tokens.delete")
|
||||
:no-selectable true
|
||||
:action #(on-delete-token token)}]))))
|
||||
|
||||
(defn- allowed-shape-attributes [shapes]
|
||||
(reduce into #{} (map #(ctt/shape-type->attributes (:type %) (:layout %)) shapes)))
|
||||
|
||||
@ -92,8 +92,8 @@
|
||||
(not (and (some? edition)
|
||||
(= :text (:type (get objects edition))))))
|
||||
|
||||
can-edit?
|
||||
(mf/use-ctx ctx/can-edit?)
|
||||
can-edit-tokens?
|
||||
(mf/use-ctx ctx/can-edit-tokens?)
|
||||
|
||||
is-selected-inside-layout (d/nilv is-selected-inside-layout false)
|
||||
|
||||
@ -177,7 +177,7 @@
|
||||
:aria-controls (dm/str "token-tree-" (name type))
|
||||
:on-toggle-expand on-toggle-open-click
|
||||
:icon (token-section-icon type)}
|
||||
(when can-edit?
|
||||
(when can-edit-tokens?
|
||||
[:> icon-button* {:id (str "add-token-button-" title)
|
||||
:icon "add"
|
||||
:aria-label (tr "workspace.tokens.add-token" title)
|
||||
|
||||
@ -140,14 +140,17 @@
|
||||
on-pill-context-menu
|
||||
on-node-context-menu]}]
|
||||
(let [separator "."
|
||||
raw-tree (mf/with-memo [tokens]
|
||||
(cpn/build-tree-root tokens separator))
|
||||
permissions (mf/use-ctx ctx/permissions)
|
||||
can-edit? (:can-edit permissions)
|
||||
raw-tree
|
||||
(mf/with-memo [tokens]
|
||||
(cpn/build-tree-root tokens separator))
|
||||
|
||||
can-edit-file?
|
||||
(mf/use-ctx ctx/can-edit?)
|
||||
|
||||
on-node-context-menu (mf/use-fn
|
||||
(mf/deps can-edit? on-node-context-menu)
|
||||
(mf/deps can-edit-file? on-node-context-menu)
|
||||
(fn [event node]
|
||||
(when can-edit?
|
||||
(when can-edit-file?
|
||||
(on-node-context-menu event node))))
|
||||
|
||||
ordered-nodes (mf/with-memo [raw-tree]
|
||||
|
||||
@ -38,8 +38,8 @@
|
||||
token-sets
|
||||
(some-> tokens-lib (ctob/get-set-tree))
|
||||
|
||||
can-edit?
|
||||
(mf/use-ctx ctx/can-edit?)
|
||||
can-edit-tokens?
|
||||
(mf/use-ctx ctx/can-edit-tokens?)
|
||||
|
||||
token-set-active?
|
||||
(mf/use-fn
|
||||
@ -55,17 +55,17 @@
|
||||
|
||||
on-reset-edition
|
||||
(mf/use-fn
|
||||
(mf/deps can-edit?)
|
||||
(mf/deps can-edit-tokens?)
|
||||
(fn [_]
|
||||
(when can-edit?
|
||||
(when can-edit-tokens?
|
||||
(st/emit! (dwtl/clear-token-set-edition)
|
||||
(dwtl/clear-token-set-creation)))))
|
||||
|
||||
on-start-edition
|
||||
(mf/use-fn
|
||||
(mf/deps can-edit?)
|
||||
(mf/deps can-edit-tokens?)
|
||||
(fn [id]
|
||||
(when can-edit?
|
||||
(when can-edit-tokens?
|
||||
(st/emit! (dwtl/start-token-set-edition id)))))]
|
||||
|
||||
[:> controlled-sets-list*
|
||||
@ -81,7 +81,6 @@
|
||||
:edition-id edition-id
|
||||
|
||||
:origin "set-panel"
|
||||
:can-edit can-edit?
|
||||
:on-start-edition on-start-edition
|
||||
:on-reset-edition on-reset-edition
|
||||
|
||||
|
||||
@ -86,8 +86,8 @@
|
||||
|
||||
(mf/defc inline-add-button*
|
||||
[]
|
||||
(let [can-edit? (mf/use-ctx ctx/can-edit?)]
|
||||
(if can-edit?
|
||||
(let [can-edit-tokens? (mf/use-ctx ctx/can-edit-tokens?)]
|
||||
(if can-edit-tokens?
|
||||
[:div {:class (stl/css :empty-sets-wrapper)}
|
||||
[:> text* {:as "span" :typography "body-small" :class (stl/css :empty-state-message)}
|
||||
(tr "workspace.tokens.no-sets-yet")]
|
||||
@ -110,7 +110,10 @@
|
||||
[{:keys [id label is-editing is-active is-selected is-draggable is-collapsed path depth index
|
||||
on-toggle on-drop on-start-edition on-reset-edition on-edit-submit on-toggle-collapse]}]
|
||||
|
||||
(let [can-edit?
|
||||
(let [can-edit-tokens?
|
||||
(mf/use-ctx ctx/can-edit-tokens?)
|
||||
|
||||
can-edit-file?
|
||||
(mf/use-ctx ctx/can-edit?)
|
||||
|
||||
label-id
|
||||
@ -118,11 +121,11 @@
|
||||
|
||||
on-context-menu
|
||||
(mf/use-fn
|
||||
(mf/deps is-editing id path can-edit?)
|
||||
(mf/deps is-editing id path can-edit-tokens?)
|
||||
(fn [event]
|
||||
(dom/prevent-default event)
|
||||
(dom/stop-propagation event)
|
||||
(when (and can-edit? (not is-editing))
|
||||
(when (and can-edit-tokens? (not is-editing))
|
||||
(st/emit! (dwtl/assign-token-set-context-menu
|
||||
{:position (dom/get-client-position event)
|
||||
:is-group true
|
||||
@ -141,12 +144,12 @@
|
||||
|
||||
on-checkbox-click
|
||||
(mf/use-fn
|
||||
(mf/deps on-toggle path can-edit?)
|
||||
(mf/deps on-toggle path can-edit-file?)
|
||||
#(on-toggle path))
|
||||
|
||||
on-edit-submit'
|
||||
(mf/use-fn
|
||||
(mf/deps path on-edit-submit can-edit?)
|
||||
(mf/deps path on-edit-submit can-edit-tokens?)
|
||||
#(on-edit-submit path %))
|
||||
|
||||
on-drop
|
||||
@ -196,7 +199,7 @@
|
||||
label]
|
||||
[:> checkbox*
|
||||
{:on-click on-checkbox-click
|
||||
:disabled (not can-edit?)
|
||||
:disabled (not can-edit-file?)
|
||||
:checked (case is-active
|
||||
:all true
|
||||
:partial "mixed"
|
||||
@ -207,7 +210,11 @@
|
||||
[{:keys [id set label is-editing is-active is-selected is-draggable is-new path depth index
|
||||
on-select on-toggle on-drop on-start-edition on-reset-edition on-edit-submit]}]
|
||||
|
||||
(let [can-edit? (mf/use-ctx ctx/can-edit?)
|
||||
(let [can-edit-tokens?
|
||||
(mf/use-ctx ctx/can-edit-tokens?)
|
||||
|
||||
can-edit-file?
|
||||
(mf/use-ctx ctx/can-edit?)
|
||||
|
||||
on-click
|
||||
(mf/use-fn
|
||||
@ -220,11 +227,11 @@
|
||||
|
||||
on-context-menu
|
||||
(mf/use-fn
|
||||
(mf/deps is-editing id path can-edit?)
|
||||
(mf/deps is-editing id path can-edit-tokens?)
|
||||
(fn [event]
|
||||
(dom/prevent-default event)
|
||||
(dom/stop-propagation event)
|
||||
(when (and can-edit? (not is-editing))
|
||||
(when (and can-edit-tokens? (not is-editing))
|
||||
(st/emit! (dwtl/assign-token-set-context-menu
|
||||
{:position (dom/get-client-position event)
|
||||
:is-group false
|
||||
@ -305,7 +312,7 @@
|
||||
label]
|
||||
[:> checkbox*
|
||||
{:on-click on-checkbox-click
|
||||
:disabled (not can-edit?)
|
||||
:disabled (not can-edit-file?)
|
||||
:arial-label (tr "workspace.tokens.select-set")
|
||||
:checked is-active}]])]))
|
||||
|
||||
@ -455,12 +462,12 @@
|
||||
(assert (fn? is-token-set-active) "expected a function for `is-token-set-active` prop")
|
||||
(assert (fn? is-token-set-group-active) "expected a function for `is-token-set-group-active` prop")
|
||||
|
||||
(let [theme-modal? (= origin "theme-modal")
|
||||
can-edit? (mf/use-ctx ctx/can-edit?)
|
||||
draggable? (and (not theme-modal?) can-edit?)
|
||||
empty-state? (and theme-modal?
|
||||
(empty? token-sets)
|
||||
(not new-path))
|
||||
(let [theme-modal? (= origin "theme-modal")
|
||||
can-edit-tokens? (mf/use-ctx ctx/can-edit-tokens?)
|
||||
draggable? (and (not theme-modal?) can-edit-tokens?)
|
||||
empty-state? (and theme-modal?
|
||||
(empty? token-sets)
|
||||
(not new-path))
|
||||
|
||||
;; NOTE: on-reset-edition and on-start-edition function can
|
||||
;; come as nil, in this case we need to provide a safe
|
||||
|
||||
@ -28,7 +28,8 @@
|
||||
[app.util.dom :as dom]
|
||||
[app.util.i18n :refer [tr]]
|
||||
[rumext.v2 :as mf]
|
||||
[shadow.resource]))
|
||||
[shadow.resource]
|
||||
[app.common.files.tokens :as cfo]))
|
||||
|
||||
;; Components ------------------------------------------------------------------
|
||||
|
||||
@ -62,9 +63,8 @@
|
||||
{::mf/private true}
|
||||
[{:keys [resize-height] :as props}]
|
||||
|
||||
(let [can-edit?
|
||||
(mf/use-ctx ctx/can-edit?)]
|
||||
|
||||
(let [can-edit-tokens?
|
||||
(mf/use-ctx ctx/can-edit-tokens?)]
|
||||
[:*
|
||||
[:> token-set-context-menu*]
|
||||
[:section {:data-testid "token-management-sidebar"
|
||||
@ -73,7 +73,7 @@
|
||||
[:> themes-header*]
|
||||
[:div {:class (stl/css :sidebar-header)}
|
||||
[:> title-bar* {:title (tr "labels.sets")}
|
||||
(when can-edit?
|
||||
(when can-edit-tokens?
|
||||
[:> tsetslist/add-button*])]]
|
||||
|
||||
[:> token-sets-list* props]]]))
|
||||
@ -83,8 +83,8 @@
|
||||
(let [show-menu* (mf/use-state false)
|
||||
show-menu? (deref show-menu*)
|
||||
|
||||
can-edit?
|
||||
(mf/use-ctx ctx/can-edit?)
|
||||
can-edit-tokens?
|
||||
(mf/use-ctx ctx/can-edit-tokens?)
|
||||
|
||||
open-menu
|
||||
(mf/use-fn
|
||||
@ -124,7 +124,7 @@
|
||||
:on-close close-menu
|
||||
:id "tokens-menu"
|
||||
:class (stl/css :import-export-menu)}
|
||||
(when can-edit?
|
||||
(when can-edit-tokens?
|
||||
[:> dropdown-menu-item* {:class (stl/css :import-export-menu-item)
|
||||
:on-click on-modal-show}
|
||||
[:div {:class (stl/css :import-menu-item)}
|
||||
@ -133,8 +133,7 @@
|
||||
:on-click on-export}
|
||||
(tr "labels.export")]]
|
||||
|
||||
|
||||
(when (and can-edit? (contains? cf/flags :token-base-font-size))
|
||||
(when (and can-edit-tokens? (contains? cf/flags :token-base-font-size))
|
||||
[:> icon-button* {:variant "secondary"
|
||||
:icon i/settings
|
||||
:aria-label "Settings"
|
||||
@ -146,18 +145,30 @@
|
||||
on-lost-pointer-capture-pages :on-lost-pointer-capture
|
||||
on-pointer-move-pages :on-pointer-move
|
||||
size-pages-opened :size}
|
||||
(use-resize-hook :tokens 200 38 "0.6" :y false nil)]
|
||||
(use-resize-hook :tokens 200 38 "0.6" :y false nil)
|
||||
|
||||
[:div {:class (stl/css :sidebar-wrapper)}
|
||||
[:> token-management-section*
|
||||
{:resize-height size-pages-opened
|
||||
:tokens-lib tokens-lib}]
|
||||
[:article {:class (stl/css :tokens-section-wrapper)
|
||||
:data-testid "tokens-sidebar"}
|
||||
[:div {:class (stl/css :resize-area-horiz)
|
||||
:on-pointer-down on-pointer-down-pages
|
||||
:on-lost-pointer-capture on-lost-pointer-capture-pages
|
||||
:on-pointer-move on-pointer-move-pages}
|
||||
[:div {:class (stl/css :resize-handle-horiz)}]]
|
||||
[:> tokens-section* props]]
|
||||
[:> import-export-button*]]))
|
||||
current-file-data
|
||||
(mf/deref refs/workspace-data)
|
||||
|
||||
can-edit-file?
|
||||
(mf/use-ctx ctx/can-edit?)
|
||||
|
||||
can-edit-tokens?
|
||||
(mf/with-memo [can-edit-file? current-file-data]
|
||||
(and can-edit-file?
|
||||
(cfo/editable-tokens? current-file-data)))]
|
||||
|
||||
[:> (mf/provider ctx/can-edit-tokens?) {:value can-edit-tokens?}
|
||||
[:div {:class (stl/css :sidebar-wrapper)}
|
||||
[:> token-management-section*
|
||||
{:resize-height size-pages-opened
|
||||
:tokens-lib tokens-lib}]
|
||||
[:article {:class (stl/css :tokens-section-wrapper)
|
||||
:data-testid "tokens-sidebar"}
|
||||
[:div {:class (stl/css :resize-area-horiz)
|
||||
:on-pointer-down on-pointer-down-pages
|
||||
:on-lost-pointer-capture on-lost-pointer-capture-pages
|
||||
:on-pointer-move on-pointer-move-pages}
|
||||
[:div {:class (stl/css :resize-handle-horiz)}]]
|
||||
[:> tokens-section* props]]
|
||||
[:> import-export-button*]]]))
|
||||
|
||||
@ -23,8 +23,8 @@
|
||||
(let [ordered-themes
|
||||
(mf/deref refs/workspace-token-themes-no-hidden)
|
||||
|
||||
can-edit?
|
||||
(mf/use-ctx ctx/can-edit?)
|
||||
can-edit-tokens?
|
||||
(mf/use-ctx ctx/can-edit-tokens?)
|
||||
|
||||
open-modal
|
||||
(mf/use-fn
|
||||
@ -38,11 +38,11 @@
|
||||
[:div {:class (stl/css :empty-theme-wrapper)}
|
||||
[:> text* {:as "span" :typography "body-small" :class (stl/css :empty-state-message)}
|
||||
(tr "workspace.tokens.no-themes")]
|
||||
(when can-edit?
|
||||
(when can-edit-tokens?
|
||||
[:button {:on-click open-modal
|
||||
:class (stl/css :create-theme-button)}
|
||||
(tr "workspace.tokens.create-one")])]
|
||||
(if can-edit?
|
||||
(if can-edit-tokens?
|
||||
[:div {:class (stl/css :theme-selector-wrapper)}
|
||||
[:> theme-selector*]
|
||||
[:> button* {:variant "secondary"
|
||||
@ -50,6 +50,6 @@
|
||||
:class (stl/css :edit-theme-button)
|
||||
:on-click open-modal}
|
||||
(tr "labels.edit")]]
|
||||
[:div {:title (when-not can-edit?
|
||||
[:div {:title (when-not can-edit-tokens?
|
||||
(tr "workspace.tokens.no-permission-themes"))}
|
||||
[:> theme-selector*]]))]))
|
||||
|
||||
@ -10,6 +10,7 @@
|
||||
[app.common.files.tokens :as cfo]
|
||||
[app.common.json :as json]
|
||||
[app.common.schema :as sm]
|
||||
[app.common.types.file :as ctf]
|
||||
[app.common.types.token :as cto]
|
||||
[app.common.types.tokens-lib :as ctob]
|
||||
[app.common.types.tokens-status :as ctos]
|
||||
@ -205,6 +206,7 @@
|
||||
(ctob/get-tokens set-id)))
|
||||
:set
|
||||
(fn [_ value]
|
||||
(u/check-editable-tokens file-id)
|
||||
(st/emit! (-> (dwtl/update-token set-id id {:name value})
|
||||
(se/add-event plugin-id))))}
|
||||
|
||||
@ -231,6 +233,7 @@
|
||||
base))
|
||||
:set
|
||||
(fn [_ value]
|
||||
(u/check-editable-tokens file-id)
|
||||
(let [token (u/locate-token file-id set-id id)
|
||||
value (cond-> value
|
||||
(= :font-family (:type token))
|
||||
@ -268,6 +271,7 @@
|
||||
:schema cfo/schema:token-description
|
||||
:set
|
||||
(fn [_ value]
|
||||
(u/check-editable-tokens file-id)
|
||||
(st/emit! (-> (dwtl/update-token set-id id {:description value})
|
||||
(se/add-event :plugin-id))))}
|
||||
|
||||
@ -278,6 +282,7 @@
|
||||
;; - use this function in dwtl/duplicate-token
|
||||
;; - return the new token proxy using the locally forced id
|
||||
;; - do the same with sets and themes
|
||||
(u/check-editable-tokens file-id)
|
||||
(let [token (u/locate-token file-id set-id id)
|
||||
token' (ctob/make-token (-> (datafy token)
|
||||
(dissoc :id
|
||||
@ -288,6 +293,7 @@
|
||||
|
||||
:remove
|
||||
(fn []
|
||||
(u/check-editable-tokens file-id)
|
||||
(st/emit! (-> (dwtl/delete-token set-id id)
|
||||
(se/add-event plugin-id))))
|
||||
|
||||
@ -340,6 +346,7 @@
|
||||
id)
|
||||
:set
|
||||
(fn [_ name]
|
||||
(u/check-editable-tokens file-id)
|
||||
(let [set (u/locate-token-set file-id id)]
|
||||
(st/emit! (dwtl/rename-token-set set name))))}
|
||||
|
||||
@ -353,7 +360,7 @@
|
||||
:schema ::sm/boolean
|
||||
:set
|
||||
(fn [_ value]
|
||||
(st/emit! (dwtl/set-enabled-token-set id value)))}
|
||||
(st/emit! (dwtl/set-enabled-token-set id value)))} ;; This can be done even with tokens in an external library
|
||||
|
||||
:toggleActive
|
||||
(fn [_]
|
||||
@ -416,6 +423,7 @@
|
||||
(sm/update-properties assoc :decode/json cfo/convert-dtcg-token))]))
|
||||
:decode/options {:key-fn identity}
|
||||
:fn (fn [attrs]
|
||||
(u/check-editable-tokens file-id)
|
||||
(let [tokens-lib (u/locate-tokens-lib file-id)
|
||||
token (ctob/make-token attrs)
|
||||
;; Resolve against all tokens in the library (including those
|
||||
@ -441,6 +449,7 @@
|
||||
|
||||
:duplicate
|
||||
(fn []
|
||||
(u/check-editable-tokens file-id)
|
||||
(let [id-ref (atom nil)]
|
||||
(st/emit! (dwtl/duplicate-token-set id {:id-ref id-ref}))
|
||||
(when (some? @id-ref)
|
||||
@ -448,6 +457,7 @@
|
||||
|
||||
:remove
|
||||
(fn []
|
||||
(u/check-editable-tokens file-id)
|
||||
(st/emit! (dwtl/delete-token-set id))))))
|
||||
|
||||
(defn token-theme-proxy? [p]
|
||||
@ -501,6 +511,7 @@
|
||||
(:id theme)))
|
||||
:set
|
||||
(fn [_ group]
|
||||
(u/check-editable-tokens file-id)
|
||||
(let [theme (u/locate-token-theme file-id id)]
|
||||
(st/emit! (dwtl/update-token-theme id (assoc theme :group group)))))}
|
||||
|
||||
@ -517,6 +528,7 @@
|
||||
(:group theme)))
|
||||
:set
|
||||
(fn [_ name]
|
||||
(u/check-editable-tokens file-id)
|
||||
(let [theme (u/locate-token-theme file-id id)]
|
||||
(when name
|
||||
(st/emit! (dwtl/update-token-theme id (assoc theme :name name))))))}
|
||||
@ -554,6 +566,7 @@
|
||||
{:enumerable false
|
||||
:schema [:tuple [:or [:fn token-set-proxy?] ::sm/uuid]]
|
||||
:fn (fn [set-arg]
|
||||
(u/check-editable-tokens file-id)
|
||||
(let [set-name (token-set-name (resolve-token-set file-id set-arg))
|
||||
theme (u/locate-token-theme file-id id)]
|
||||
(when (and set-name theme)
|
||||
@ -563,6 +576,7 @@
|
||||
{:enumerable false
|
||||
:schema [:tuple [:or [:fn token-set-proxy?] ::sm/uuid]]
|
||||
:fn (fn [set-arg]
|
||||
(u/check-editable-tokens file-id)
|
||||
(let [set-name (token-set-name (resolve-token-set file-id set-arg))
|
||||
theme (u/locate-token-theme file-id id)]
|
||||
(when (and set-name theme)
|
||||
@ -570,6 +584,7 @@
|
||||
|
||||
:duplicate
|
||||
(fn []
|
||||
(u/check-editable-tokens file-id)
|
||||
(let [theme (u/locate-token-theme file-id id)
|
||||
theme' (ctob/make-token-theme (-> (datafy theme)
|
||||
(dissoc :id
|
||||
@ -579,6 +594,7 @@
|
||||
|
||||
:remove
|
||||
(fn []
|
||||
(u/check-editable-tokens file-id)
|
||||
(st/emit! (dwtl/delete-token-theme id)))))
|
||||
|
||||
(defn tokens-catalog
|
||||
@ -588,6 +604,14 @@
|
||||
:$plugin {:enumerable false :get (constantly plugin-id)}
|
||||
:$id {:enumerable false :get (constantly file-id)}
|
||||
|
||||
:isEditableTokens
|
||||
{:this false
|
||||
:enumerable false
|
||||
:get
|
||||
(fn []
|
||||
(let [file (u/locate-file file-id)]
|
||||
(cfo/editable-tokens? (ctf/file-data file))))}
|
||||
|
||||
:themes
|
||||
{:this true
|
||||
:enumerable false
|
||||
@ -619,6 +643,7 @@
|
||||
nil)
|
||||
(sm/dissoc-key :id))]) ;; We don't allow plugins to set the id
|
||||
:fn (fn [attrs]
|
||||
(u/check-editable-tokens file-id)
|
||||
(let [theme (ctob/make-token-theme attrs)]
|
||||
(st/emit! (dwtl/create-token-theme theme))
|
||||
(token-theme-proxy plugin-id file-id (:id theme))))}
|
||||
@ -638,6 +663,7 @@
|
||||
(sm/merge [:map [:active {:optional true} ::sm/boolean]]))]
|
||||
|
||||
:fn (fn [attrs]
|
||||
(u/check-editable-tokens file-id)
|
||||
(let [active? (boolean (:active attrs))
|
||||
attrs (-> attrs
|
||||
(dissoc :active)
|
||||
|
||||
@ -9,6 +9,7 @@
|
||||
(:require
|
||||
[app.common.data :as d]
|
||||
[app.common.data.macros :as dm]
|
||||
[app.common.files.tokens :as cfo]
|
||||
[app.common.i18n :as i18n :refer [tr]]
|
||||
[app.common.schema :as sm]
|
||||
[app.common.schema.messages :as csm]
|
||||
@ -67,13 +68,18 @@
|
||||
|
||||
(defn locate-tokens-lib
|
||||
[file-id]
|
||||
(let [file (locate-file file-id)]
|
||||
(->> file :data :tokens-lib)))
|
||||
(let [file (locate-file file-id)
|
||||
file-data (ctf/file-data file)
|
||||
tokens-source-id (cfo/get-tokens-source file-data)
|
||||
tokens-file (locate-file tokens-source-id)
|
||||
tokens-file-data (ctf/file-data tokens-file)]
|
||||
(cfo/get-tokens-lib tokens-file-data)))
|
||||
|
||||
(defn locate-tokens-status
|
||||
[file-id]
|
||||
(let [file (locate-file file-id)]
|
||||
(->> file :data :tokens-status)))
|
||||
(let [file (locate-file file-id)
|
||||
file-data (ctf/file-data file)]
|
||||
(cfo/get-tokens-status file-data)))
|
||||
|
||||
(defn locate-token-theme
|
||||
[file-id id]
|
||||
@ -271,6 +277,12 @@
|
||||
(boolean
|
||||
(dm/get-in @st/state [:plugins :flags plugin-id :natural-child-ordering])))
|
||||
|
||||
(defn check-editable-tokens
|
||||
[file-id]
|
||||
(let [file (locate-file file-id)]
|
||||
(when-not (cfo/editable-tokens? (ctf/file-data file))
|
||||
(throw (js/Error. (dm/str "[PENPOT PLUGIN] Cannot modify tokens in an external library"))))))
|
||||
|
||||
(defn throw-validation-errors?
|
||||
[plugin-id]
|
||||
(boolean
|
||||
|
||||
@ -6,13 +6,15 @@
|
||||
<div class="panel">
|
||||
<div class="panel-heading">
|
||||
<p class="headline-m">THEMES</p>
|
||||
<button
|
||||
type="button"
|
||||
data-appearance="secondary"
|
||||
(click)="addTheme()"
|
||||
>
|
||||
+
|
||||
</button>
|
||||
@if (isEditableTokens) {
|
||||
<button
|
||||
type="button"
|
||||
data-appearance="secondary"
|
||||
(click)="addTheme()"
|
||||
>
|
||||
+
|
||||
</button>
|
||||
}
|
||||
</div>
|
||||
|
||||
<ul data-handler="themes-list">
|
||||
@ -24,20 +26,22 @@
|
||||
}
|
||||
{{ theme.name }}
|
||||
</span>
|
||||
<button
|
||||
type="button"
|
||||
data-appearance="secondary"
|
||||
(click)="renameTheme(theme.id, theme.name)"
|
||||
>
|
||||
🖊️
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
data-appearance="secondary"
|
||||
(click)="deleteTheme(theme.id)"
|
||||
>
|
||||
❌
|
||||
</button>
|
||||
@if (isEditableTokens) {
|
||||
<button
|
||||
type="button"
|
||||
data-appearance="secondary"
|
||||
(click)="renameTheme(theme.id, theme.name)"
|
||||
>
|
||||
🖊️
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
data-appearance="secondary"
|
||||
(click)="deleteTheme(theme.id)"
|
||||
>
|
||||
❌
|
||||
</button>
|
||||
}
|
||||
<div class="checkbox-container">
|
||||
<input
|
||||
class="checkbox-input"
|
||||
@ -55,9 +59,11 @@
|
||||
<div class="panel">
|
||||
<div class="panel-heading">
|
||||
<p class="headline-m">SETS</p>
|
||||
<button type="button" data-appearance="secondary" (click)="addSet()">
|
||||
+
|
||||
</button>
|
||||
@if (isEditableTokens) {
|
||||
<button type="button" data-appearance="secondary" (click)="addSet()">
|
||||
+
|
||||
</button>
|
||||
}
|
||||
</div>
|
||||
|
||||
<ul data-handler="sets-list">
|
||||
@ -69,20 +75,22 @@
|
||||
<span (click)="loadTokens(set.id)">
|
||||
{{ set.name }}
|
||||
</span>
|
||||
<button
|
||||
type="button"
|
||||
data-appearance="secondary"
|
||||
(click)="renameSet(set.id, set.name)"
|
||||
>
|
||||
🖊️
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
data-appearance="secondary"
|
||||
(click)="deleteSet(set.id)"
|
||||
>
|
||||
❌
|
||||
</button>
|
||||
@if (isEditableTokens) {
|
||||
<button
|
||||
type="button"
|
||||
data-appearance="secondary"
|
||||
(click)="renameSet(set.id, set.name)"
|
||||
>
|
||||
🖊️
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
data-appearance="secondary"
|
||||
(click)="deleteSet(set.id)"
|
||||
>
|
||||
❌
|
||||
</button>
|
||||
}
|
||||
<div class="checkbox-container">
|
||||
<input
|
||||
class="checkbox-input"
|
||||
@ -105,13 +113,15 @@
|
||||
@for (group of tokenGroups; track group[0]) {
|
||||
<li class="body-m token-group">
|
||||
<span>{{ group[0] }}</span>
|
||||
<button
|
||||
type="button"
|
||||
data-appearance="secondary"
|
||||
(click)="addToken(group[0])"
|
||||
>
|
||||
+
|
||||
</button>
|
||||
@if (isEditableTokens) {
|
||||
<button
|
||||
type="button"
|
||||
data-appearance="secondary"
|
||||
(click)="addToken(group[0])"
|
||||
>
|
||||
+
|
||||
</button>
|
||||
}
|
||||
</li>
|
||||
@for (token of group[1]; track token.id) {
|
||||
<li
|
||||
@ -125,20 +135,22 @@
|
||||
>
|
||||
{{ token.name }}
|
||||
</span>
|
||||
<button
|
||||
type="button"
|
||||
data-appearance="secondary"
|
||||
(click)="renameToken(token.id, token.name)"
|
||||
>
|
||||
🖊️
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
data-appearance="secondary"
|
||||
(click)="deleteToken(token.id)"
|
||||
>
|
||||
❌
|
||||
</button>
|
||||
@if (isEditableTokens) {
|
||||
<button
|
||||
type="button"
|
||||
data-appearance="secondary"
|
||||
(click)="renameToken(token.id, token.name)"
|
||||
>
|
||||
🖊️
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
data-appearance="secondary"
|
||||
(click)="deleteToken(token.id)"
|
||||
>
|
||||
❌
|
||||
</button>
|
||||
}
|
||||
</li>
|
||||
}
|
||||
}
|
||||
|
||||
@ -59,6 +59,7 @@ export class AppComponent {
|
||||
),
|
||||
);
|
||||
|
||||
public isEditableTokens: boolean = false;
|
||||
public themes: TokenTheme[] = [];
|
||||
public sets: TokenSet[] = [];
|
||||
public tokenGroups: TokensGroup[] = [];
|
||||
@ -72,6 +73,8 @@ export class AppComponent {
|
||||
this.#setSets(event.data.setsData);
|
||||
} else if (event.data.type === 'set-tokens') {
|
||||
this.#setTokens(event.data.tokenGroupsData);
|
||||
} else if (event.data.type === 'set-is-editable-tokens') {
|
||||
this.#setIsEditableTokens(event.data.isEditableTokens);
|
||||
}
|
||||
});
|
||||
}
|
||||
@ -268,6 +271,10 @@ export class AppComponent {
|
||||
parent.postMessage(message, '*');
|
||||
}
|
||||
|
||||
#setIsEditableTokens(isEditableTokens: boolean) {
|
||||
this.isEditableTokens = isEditableTokens;
|
||||
}
|
||||
|
||||
#setThemes(themes: TokenTheme[]) {
|
||||
this.themes = themes;
|
||||
}
|
||||
|
||||
@ -58,6 +58,14 @@ function sendMessage(message: PluginMessageEvent) {
|
||||
function loadLibrary() {
|
||||
const tokensCatalog = penpot.library.local.tokens;
|
||||
|
||||
const isEditableTokens = tokensCatalog.isEditableTokens;
|
||||
|
||||
penpot.ui.sendMessage({
|
||||
source: 'penpot',
|
||||
type: 'set-is-editable-tokens',
|
||||
isEditableTokens,
|
||||
});
|
||||
|
||||
const themes = tokensCatalog.themes;
|
||||
|
||||
const themesData = themes.map((theme) => {
|
||||
|
||||
8
plugins/libs/plugin-types/index.d.ts
vendored
8
plugins/libs/plugin-types/index.d.ts
vendored
@ -5213,6 +5213,14 @@ export type Token =
|
||||
* Themes.
|
||||
*/
|
||||
export interface TokenCatalog {
|
||||
/**
|
||||
* Returns true if the tokens can be edited (it can't
|
||||
* if the tokens of the file are in an external library).
|
||||
* Note that even in this case, Themes and Sets status still
|
||||
* can be changed and tokens can be applied to shapes.
|
||||
*/
|
||||
readonly isEditableTokens: boolean;
|
||||
|
||||
/**
|
||||
* The list of themes in this catalog, in creation order.
|
||||
*/
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user