mirror of
https://github.com/penpot/penpot.git
synced 2025-02-10 00:58:26 -05:00
141 lines
5.3 KiB
Clojure
141 lines
5.3 KiB
Clojure
(ns token-tests.logic.token-actions-test
|
|
(:require
|
|
[app.common.test-helpers.ids-map :as thi]
|
|
[app.common.test-helpers.compositions :as ctho]
|
|
[app.common.test-helpers.files :as cthf]
|
|
[app.common.test-helpers.shapes :as cths]
|
|
[app.main.ui.workspace.tokens.core :as wtc]
|
|
[cljs.test :as t :include-macros true]
|
|
[frontend-tests.helpers.pages :as thp]
|
|
[frontend-tests.helpers.state :as ths]
|
|
[token-tests.helpers.state :as tohs]
|
|
[app.main.ui.workspace.tokens.token :as wtt]))
|
|
|
|
(t/use-fixtures :each
|
|
{:before thp/reset-idmap!})
|
|
|
|
(defn add-token [state label params]
|
|
(let [id (thi/new-id! label)
|
|
token (assoc params :id id)]
|
|
(update-in state [:data :tokens] assoc id token)))
|
|
|
|
(defn get-token [file label]
|
|
(let [id (thi/id label)]
|
|
(get-in file [:data :tokens id])))
|
|
|
|
(def radius-token
|
|
{:value "12"
|
|
:name "sm"
|
|
:type :border-radius})
|
|
|
|
(def radius-ref-token
|
|
{:value "{sm} * 2"
|
|
:name "md"
|
|
:type :border-radius})
|
|
|
|
(def test-tokens
|
|
{(:id radius-token) radius-token
|
|
(:id radius-ref-token) radius-ref-token})
|
|
|
|
(defn apply-token-to-shape [file shape-label token-label attributes]
|
|
(let [first-page-id (get-in file [:data :pages 0])
|
|
shape-id (thi/id shape-label)
|
|
token-id (thi/id token-label)
|
|
applied-attributes (wtt/attributes-map attributes token-id)]
|
|
(update-in file [:data
|
|
:pages-index first-page-id
|
|
:objects shape-id
|
|
:applied-tokens]
|
|
merge applied-attributes)))
|
|
|
|
(defn- setup-file
|
|
[]
|
|
(-> (cthf/sample-file :file-1 :page-label :page-1)
|
|
(ctho/add-rect :rect-1 {})
|
|
(ctho/add-rect :rect-2 {})
|
|
(ctho/add-rect :rect-3 {})
|
|
(add-token :token-1 {:value "12"
|
|
:name "borderRadius.sm"
|
|
:type :border-radius})
|
|
(add-token :token-2 {:value "{borderRadius.sm} * 2"
|
|
:name "borderRadius.md"
|
|
:type :border-radius})))
|
|
|
|
(t/deftest test-apply-token
|
|
(t/testing "applying a token twice with the same attributes will override")
|
|
(t/async
|
|
done
|
|
(let [file (setup-file)
|
|
store (ths/setup-store file)
|
|
rect-1 (cths/get-shape file :rect-1)
|
|
events [(wtc/apply-token {:shape-ids [(:id rect-1)]
|
|
:attributes #{:rx :ry}
|
|
:token (get-token file :token-1)
|
|
:on-update-shape wtc/update-shape-radius})
|
|
;; Will override
|
|
(wtc/apply-token {:shape-ids [(:id rect-1)]
|
|
:attributes #{:rx :ry}
|
|
:token (get-token file :token-2)
|
|
:on-update-shape wtc/update-shape-radius})]]
|
|
(tohs/run-store-async
|
|
store done events
|
|
(fn [new-state]
|
|
(let [file' (ths/get-file-from-store new-state)
|
|
token-2' (get-token file' :token-2)
|
|
rect-1' (cths/get-shape file' :rect-1)]
|
|
(t/is (some? (:applied-tokens rect-1')))
|
|
(t/is (= (:rx (:applied-tokens rect-1')) (:id token-2')))
|
|
(t/is (= (:ry (:applied-tokens rect-1')) (:id token-2')))
|
|
(t/is (= (:rx rect-1') 24))
|
|
(t/is (= (:ry rect-1') 24))))))))
|
|
|
|
(t/deftest test-toggle-token
|
|
(t/testing "will apply token to all selected items, where no item has the token applied"
|
|
(t/async
|
|
done
|
|
(let [file (setup-file)
|
|
store (ths/setup-store file)
|
|
rect-1 (cths/get-shape file :rect-1)
|
|
rect-2 (cths/get-shape file :rect-2)
|
|
events [(wtc/toggle-token {:shapes [rect-1 rect-2]
|
|
:token-type-props {:attributes #{:rx :ry}
|
|
:on-update-shape wtc/update-shape-radius}
|
|
:token (get-token file :token-2)})]]
|
|
(tohs/run-store-async
|
|
store done events
|
|
(fn [new-state]
|
|
(let [file' (ths/get-file-from-store new-state)
|
|
token-2' (get-token file' :token-2)
|
|
rect-1' (cths/get-shape file' :rect-1)
|
|
rect-2' (cths/get-shape file' :rect-2)]
|
|
(t/is (some? (:applied-tokens rect-1')))
|
|
(t/is (some? (:applied-tokens rect-2')))
|
|
(t/is (= (:rx (:applied-tokens rect-1')) (:id token-2')))
|
|
(t/is (= (:rx (:applied-tokens rect-2')) (:id token-2')))
|
|
(t/is (= (:ry (:applied-tokens rect-1')) (:id token-2')))
|
|
(t/is (= (:ry (:applied-tokens rect-2')) (:id token-2')))
|
|
(t/is (= (:rx rect-1') 24))
|
|
(t/is (= (:rx rect-2') 24)))))))))
|
|
|
|
(comment
|
|
(t/run-tests)
|
|
(defn make-printable
|
|
"Convert records that are not printable by cider inspect into regular maps."
|
|
[coll]
|
|
(letfn [(stringifyable? [x]
|
|
(not (or (map? x)
|
|
(sequential? x)
|
|
(keyword? x)
|
|
(number? x)
|
|
(uuid? x))))]
|
|
(clojure.walk/postwalk #(cond->> %
|
|
(record? %) (into {})
|
|
(stringifyable? %) str)
|
|
coll)))
|
|
|
|
(-> (cthf/sample-file :file-1)
|
|
(assoc :tokens {})
|
|
(make-printable))
|
|
|
|
(make-printable (setup-file))
|
|
nil)
|