SaasBridge helps you write sass functions by defining conventions around and handling Sass <-> JavaScript type conversion for you.
Here's how you might write a function without SaasBridge:
webpack.config.js
:
WRITE EXAMPLE WITH SASS LOADER HERE
And here's how it looks with SassBridge:
webpack.config.js
:
WRITE EXAMPLE WITH SASS LOADER HERE
Some types are similar between Sass and JavaScript, and type conversion for the following types are automatic:
Sass booleans will convert to JS booleans
Sass strings will convert to JS strings
Sass lists will convert to JS arrays
Other types don't quite map 1-1 or have edge cases / limitations that you need to be aware of:
Sass maps will convert to a something with a Map-like interface rather than a plain object. You will need to use the myMap.get('key')
and myMap.set('key', value)
methods to manipulate this object.
Sass numbers don't map 1-1 to JS numbers because CSS has units (px, rem, em, fr, etc.). Numbers are therefore represented as an special object. For example, 10px
would be converted to:
{
denominatorUnits: [],
numeratorUnits: ["px"],
value: 10
}
Sass colors, whether they were specified in hex, rgb, hsl, etc. format in your Sass code, will be returned as an RGBA object. So #ffffff
would be converted to:
{
R: 255,
G: 255,
B: 255,
A: 1
}
As far I as I know, this just works. Values like #fefefe
and 12px
are valid and SaasBridge will infer that you meant a color and number with a pixel unit. The special object representations of Sass types listed above (Maps, Numbers, Colors) will also convert back to their respective sass types. Please submit an issue if you encounter any problems with this or need some clarification.