mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
✨ Implement text case token (#6978)
This commit is contained in:
@@ -592,6 +592,40 @@
|
||||
(t/is (= (:font-family (:applied-tokens text-1')) (:name token-target')))
|
||||
(t/is (= (:font-family style-text-blocks) (:font-id txt/default-text-attrs))))))))))
|
||||
|
||||
(t/deftest test-apply-text-case
|
||||
(t/testing "applies text-case token and updates the text transform"
|
||||
(t/async
|
||||
done
|
||||
(let [text-case-token {:name "uppercase-case"
|
||||
:value "uppercase"
|
||||
:type :text-case}
|
||||
file (-> (setup-file-with-tokens)
|
||||
(update-in [:data :tokens-lib]
|
||||
#(ctob/add-token-in-set % "Set A" (ctob/make-token text-case-token))))
|
||||
store (ths/setup-store file)
|
||||
text-1 (cths/get-shape file :text-1)
|
||||
events [(dwta/apply-token {:shape-ids [(:id text-1)]
|
||||
:attributes #{:text-case}
|
||||
:token (toht/get-token file "uppercase-case")
|
||||
:on-update-shape dwta/update-text-case})]]
|
||||
(tohs/run-store-async
|
||||
store done events
|
||||
(fn [new-state]
|
||||
(let [file' (ths/get-file-from-state new-state)
|
||||
token-target' (toht/get-token file' "uppercase-case")
|
||||
text-1' (cths/get-shape file' :text-1)
|
||||
style-text-blocks (->> (:content text-1')
|
||||
(txt/content->text+styles)
|
||||
(remove (fn [[_ text]] (str/empty? (str/trim text))))
|
||||
(mapv (fn [[style text]]
|
||||
{:styles (merge txt/default-text-attrs style)
|
||||
:text-content text}))
|
||||
(first)
|
||||
(:styles))]
|
||||
(t/is (some? (:applied-tokens text-1')))
|
||||
(t/is (= (:text-case (:applied-tokens text-1')) (:name token-target')))
|
||||
(t/is (= (:text-transform style-text-blocks) "uppercase")))))))))
|
||||
|
||||
(t/deftest test-toggle-token-none
|
||||
(t/testing "should apply token to all selected items, where no item has the token applied"
|
||||
(t/async
|
||||
|
||||
Reference in New Issue
Block a user