- Notifications
You must be signed in to change notification settings - Fork26
Clojure Style Sheets — CSS-in-JS for ClojureScript
License
clj-commons/cljss
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
CSS-in-JS for ClojureScript
Ask questions on #cljss chat atClojuarians Slack
[clj-commons/cljss "1.6.4"]
- Why write CSS in ClojureScript?
- Features
- How it works
- Usage
- Composing styles
- Development workflow
- Production build
- Roadmap
- Contributing
- Supporters
- License
Writing styles this way has the same benefits as writing components that keep together view logic and presentation. It all comes to developer efficiency and maintainability.
Thease are some resources that can give you more context:
- “A Unified Styling Language” by Mark Dalgleish
- “A Unified Styling Language” (talk) by Mark Dalgleish
- “The road to styled components: CSS in component-based systems” by Glen Maddern
- Automatic scoped styles by generating unique names
- CSS pseudo-classes and pseudo-elements
- CSS animations via
@keyframes
at-rule - CSS Media Queries
- Nested CSS selectors
- Injects styles into
<style>
tag at run-time - Debuggable styles in development (set via
goog.DEBUG
) - Fast, 1000 insertions in under 100ms
defstyles
macro expands into a function which accepts an arbitrary number of arguments and returns a string of auto-generated class names that references both static and dynamic styles.
(defstylesbutton [bg] {:font-size"14px":background-color bg})(button"#000");; "-css-43696 -vars-43696"
Dynamic styles are updated via CSS Variables (seebrowser support).
defstyled
macro accepts var name, HTML element tag name as a keyword and a hash of styles.
The macro expands into a function which accepts an optional hash of attributes and child components, and returns a React element. It is available for the Om, Rum and Reagent libraries. Each of them are in corresponding namespaces:cljss.om/defstyled
,cljss.rum/defstyled
andcljss.reagent/defstyled
.
A hash of attributes with dynamic CSS values as well as normal HTML attributes can be passed into the underlying React element. Reading from the attributes hash map can be done via anything that satisfiescljs.core/ifn?
predicate (Fn
andIFn
protocols, and normal functions).
NOTE: Dynamic props that are used only to compute styles are also passed onto React element and thus result in adding an unknown attribute on a DOM node. To prevent this it is recommended to use keyword or a function marked withwith-meta
so the library can remove those props (see example below).
- keyword value — reads the value from props map and removes matching attribute
with-meta
with a single keyword — passes a value of a specified attribute from props map into a function and removes matching attributewith-meta
with a collection of keywords — passes values of specified attributes from props map into a function in the order of these attributes and removes matching attributes
(defstyledh1:h1 {:font-family"sans-serif":font-size:size;; reads the value and removes custom `:size` attribute:color (with-meta #(get {:light"#fff":dark"#000"} %):color)};; gets `:color` value and removes this attribute:padding (with-meta #(str %1"" %2) [:padding-v:padding-h]));; gets values of specified attrs as arguments and remove those attrs(h1 {:size"32px";; custom attr:color:dark;; custom attr:padding-v"8px";; custom attr:padding-h"4px";; custom attr:margin"8px 16px"};; normal CSS rule"Hello, world!");; (js/React.createElement "h1" #js {:className "css-43697 vars-43697"} "Hello, world!")
Sometimes you want toggle between two values. In this example a menu item can switch between active and non-active styles using:active?
attribute.
(defstyledMenuItem:li {:color (with-meta #(if %"black""grey"):active?)})(MenuItem {:active?true})
Because this pattern is so common there's a special treatment for predicate attributes (keywords ending with?
) in styles definition.
(defstyledMenuItem:li {:color"grey":active? {:color"black"}})(MenuItem {:active?true})
CSS pseudo classes can be expressed as a keyword using parent selector syntax&
which is popular in CSS pre-processors or as a string if selector is not a valid keyword e.g.&:nth-child(4)
.
(defstylesbutton [bg] {:font-size"14px":background-color blue :&:hover {:background-color light-blue}"&:nth-child(3)" {:color"blue"}})
Sometimes when you want to override library styles you may want to refer to DOM node via its class name, tag or whatever. For this purpose you can use nested CSS selectors via string key.
(defstyleserror-form [] {:border"1px solid red"".material-ui--input" {:color"red"}})[:form {:class (error-form)};; .css-817253 {border: 1px solid red} (mui/Input)];; .css-817253 .material-ui--input {color: red}
:css
attribute allows to define styles inline and still benefit from CSS-in-JS approach.
NOTE: This feature is supported only for Rum/Sablono elements
(defcolor"#000")[:button {:css {:color color}}"Button"];; (js/React.createElement "button" #js {:className "css-43697 vars-43697"} "Button")
defkeyframes
macro expands into a function which accepts arbitrary number of arguments, injects @keyframes declaration and returns a string that is an animation name.
(defkeyframesspin [from to] {:from {:transform (str"rotate(" from"deg)"):to {:transform (str"rotate(" to"deg)")}})[:div {:style {:animation (str (spin0180)" 500ms ease infinite")}}];; (js/React.createElement "div" #js {:style #js {:animation "animation-43697 500ms ease infinite"}})
font-face
macro allows to define custom fonts via@font-face
CSS at-rule. The macro generates CSS string and injects it at runtime. The syntax is defined in example below.
The macro supports referring to styles declaration in a separate *.clj namespace.
(require '[cljss.core:refer [font-face]])(defpath"https://fonts.gstatic.com/s/patrickhandsc/v4/OYFWCgfCR-7uHIovjUZXsZ71Uis0Qeb9Gqo8IZV7ckE")(font-face {:font-family"Patrick Hand SC":font-style"normal":font-weight400:src [{:local"Patrick Hand SC"} {:local"PatrickHandSC-Regular"} {:url (str path".woff2"):format"woff2"} {:url (str path".otf"):format"opentype"}]:unicode-range ["U+0100-024F""U+1E00-1EFF"]})
inject-global
macro allows to defined global styles, such as to reset user agent default styles. The macro generates CSS string and injects it at runtime. The syntax is defined in example below.
The macro supports referring to styles declaration in a separate *.clj namespace.
(require '[cljss.core:refer [inject-global]])(defv-margin4)(inject-global {:body {:margin0}:ul {:list-style"none"}"ul > li" {:margin (str v-margin"px 0")}})
The syntax is specified as ofCSS Media Queries Level 4 spec.
(require [cljss.core:as css])(defstylesheader [height] {:height height::css/media {[:only:screen:and [:max-width"460px"]] {:height (/ height2)}}})
- Supported media types:
#{:all :print :screen :speech}
- Modifiers:
#{:not :only}
More examples of a query:
[[:monochrome]]
[[:max-width"460px"]]
[[:screen:and [:max-width"460px"]] [:print:and [:color]]]
Supported operators for range queries#{'= '< '<= '> '>=}
'[[:max-width >"400px"]]
'[["1200px" >=:max-width >"400px"]]
(defstyles name [args] styles)
name
name of a var[args]
argumentsstyles
a hash map of styles definition
(nsexample.core (:require [cljss.core:refer-macros [defstyles]]))(defstylesbutton [bg] {:font-size"14px":background-color bg})[:div {:class (button"#fafafa")}]
(defstyled name tag-name styles)
name
name of a vartag-name
HTML tag name as a keywordstyles
a hash map of styles definition
UsingSablono templating forReact
(nsexample.core (:require [sablono.core:refer [html]] [cljss.rum:refer [defstyled]]))(defstyledButton:button {:padding"16px":margin-top:v-margin:margin-bottom:v-margin})(html (Button {:v-margin"8px":on-click #(console.log"Click!")}))
Dynamically injected CSS:
.css-43697 {padding:16px;margin-top:var(--css-43697-0);margin-bottom:var(--css-43697-1);}.vars-43697 {--css-43697-0:8px;--css-43697-1:8px;}
Because CSS is generated at compile-time it's not possible to compose styles as data, as you would normally do it in Clojure. At run-time, in ClojureScript, you'll get functions that inject generated CSS and give back a class name. Hence composition is possibly by combining together those class names.
(defstylesmargin [& {:keys [x y]}] {:margin-top y:margin-bottom y:margin-left x:margin-right x})(defstylesbutton [bg] {:padding"8px 24px":background-color bg})(clojure.string/join"" [(button"blue") (margin:y"16px")]);; ".css-817263 .css-912834"
If you see that styles are not being reloaded, add(:require-macros [cljss.core])
, this should do the job.
When developing with Figwheel in order to deduplicate styles between reloads it is recommended to use Figwheel's:on-jsload
hook to clean injected styles.
:figwheel {:on-jsload example.core/on-reload}
(nsexample.core (:require [cljss.core:as css]))(defnon-reload [] (css/remove-styles!) (render-app))
NOTE: don't forget that once styles were removed you have to re-injectdefkeyframes
,font-face
andinject-global
declarations
Setgoog.DEBUG
tofalse
to enable fast path styles injection.
{:compiler {:closure-defines {"goog.DEBUG"false}}}
NOTE: production build enables fast pass styles injection which makes those styles invisible in<style>
tag on a page.
- Server-side rendering
- Pick an issue with
help wanted
label (make sure no one is working on it) - Stick to project's code style as much as possible
- Make small commits with descriptive commit messages
- Submit a PR with detailed description of what was done
A repl for the example project is provided vialein-figwheel.
$ cd example$ lein figwheel
If using emacscider - you can also launch the repl usingM-x cider-jack-in-clojurescript
.
cljss uses a combination of Clojure and ClojureScript tests. Clojure tests are run vialein test
and ClojureScript tests are run viadoo. ClojureScript tests require a valid environment in order to run -PhantomJS being the easiest to install.
Once a valid environment is setup, ClojureScript tests can be run like so:
$ lein doo phantom test once
Or with file watching:
$ lein doo phantom test
To run Clojure and ClojureScript tests at once use thetest-all
task:
$ lein test-all
Copyright © 2017 Roman Liutikov
Distributed under the Eclipse Public License either version 1.0 or (atyour option) any later version.
About
Clojure Style Sheets — CSS-in-JS for ClojureScript
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors9
Uh oh!
There was an error while loading.Please reload this page.