zaftig
TypeScript icon, indicating that this package has built-in type declarations

0.10.0 • Public • Published

Zaftig npm size

Zaftig efficiently parses styles, generates a classname for them and inserts them a into a stylesheet in the head of the document.

Passing the same style string will return the same classname.

z`display flex` // .zjsdkk43-1
z`display flex` // .zjsdkk43-1

Highlights

  • 💸 Quick and lightweight
  • 🙇 User defined helper functions z.helper({})
  • 💯 Simplified CSS syntax with nested selector support z`:hover { c green }`
  • 🅰️ Initial based CSS property shorthands e.g. bc == background-color or d == display
  • ⚙️ Basic automatic vendor prefixing for: Chrome, Safari, Firefox, Edge, Opera (webkit)

Example:

// works just as well with React and other libraries/frameworks
import m from 'https://unpkg.com/mithril@2.0.0-rc.4?module'
import z from 'https://unpkg.com/zaftig?module'

z.global`
  $btn-color #4444dd
  ff sans-serif
  fs 14
  m 10
`

const btn =
  'button' +
  z`
    border none
    p 0.75rem
    line-height 1.2rem
    color $btn-color
    border 0.5 solid $btn-color
    bc white
    fs 16
    cursor pointer
    transition transform 100ms
    outline none
    :active { transform scale(0.9) }
    &.primary { bc $btn-color; c white }
    &.rounded { br 4 }
  `

const App = () =>
  m('main' + z`${btn} { m 5 }`, [
    m(btn, 'Normal'),
    m(btn + '.primary.rounded', 'Primary'),
    m(btn + z`$compose rounded; $btn-color #ee5555`, 'Warning'),
    m(btn + z`$btn-color green`, 'Success'),
    m(btn + z`$compose primary rounded; $btn-color green`, 'Success + Primary')
  ])

m.render(document.body, App())

example

playground

Usage

ES6 modules:

import z from 'https://unpkg.com/zaftig?module'
z`color green; background red`

ES5 browser environment:

<script src="https://unpkg.com/zaftig"></script>
<script>
  z`color green; background red`
</script>

Or download the script and use it locally.

You can see all the options here.

Plugins and Tools

API

Quick links: z ~~ z.setDebug ~~ z.setDot ~~ z.global ~~ z.style ~~ z.concat ~~ z.anim ~~ z.helper ~~ z.getSheet ~~ z.new


z`<StyleString>`

Generates a className for the given StyleString and inserts it into a stylesheet in the head of the document.

It returns a Style object { class, className, concat, z }.

.concat allows you to combine the current className with others. See z.concat.

.z lets you extend/chain another StyleString, it calls .concat under the hood and is equivalent to z`...`.concat(z`...`)

const white = z`color white` // z1234-1
const whiteAndBlack = white.z`background-color black` // z1234-1 z1234-2
const extended = whiteAndBlack.concat(z`font-size 20px`, 'test') // z1234-1 z1234-2 z1234-3 test

When .toString() is called on a Style object the className will be returned.

When .valueOf() is called it will return the className with a dot prefixed. This allows you to directly concatenate style objects to tag names when using a hyperscript helper like mithril offers:

m('h1' + z`margin auto`) ==> m('h1.zfwe983')

Example expressions:

z`color green`
z`color green; background-color orange`
z`
  color green
  background-color orange
  :focus {
    margin 20px
    ::placeholder { c orange }
  }
  > span { p 10px }
`
z`c green;bc orange`

Styles are separated by ; or \n.

sel { /* rules */ } creates a nested style. Use & within the selector to reference the parent selector similar to how Less works.

There are a couple of special properties that can be used within a StyleString.

$name will prepend the given string to the generated class name to make it easier to read the DOM:

z`
  $name button
  border none
`
// generated classname will look something like: 'button-z2djkf2342-1'

$compose will make z generate a list of classnames rather than just the generated one:

z`
  $compose btn btn-primary
  border none
`
// .class will output something like: 'btn btn-primary z2djkf2342-1'

This allows you to easily combine zaftig generated classes with external css classes that you've manually written or that are provided by a css framework/library.

CSS variable handling:

You can create/reference css variables using the $ syntax. The normal css syntax using -- and var() also works.

z.global`
  $bg-color black
  $fg-color white
  $font-size 16px
`

z`
  color $fg-color
  background-color $bg-color
  font-size $font-size
`
/* generated css */

:root {
  --bg-color: black;
  --fg-color: white;
  --font-size: 16px;
}

.z2djkf2342-1 {
  color: var(--fg-color);
  background-color: var(--bg-color);
  font-size: var(--font-size);
}

Automatic px:

Zaftig will automatically append px to any numeric value provided to a css property that accepts px values.

z`
  margin 10
  padding 100
  width 5
  height 50
  box-shadow 0 2 4 0 rgba(0, 0, 0, 0.1)
  opacity 0.5
`
/* generated css */

.z2djkf2342-1 {
  margin: 10px;
  padding: 100px;
  width: 5px;
  height: 50px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  opacity: 0.5;
}

You can specify px manually if you prefer to, but zaftig will add it for you if you don't.


z.setDebug(bool)

Enable/disable debug mode.

In debug mode Zaftig will insert styles using textContent and will log to the console when an unknown css property is encountered.

textContent is much less efficient than the non debug CSSOM method, but it allows you to modify the styles using chrome dev tools.

NOTE: make sure to call setDebug before inserting any styles


z.setDot(bool)

Controls how Style objects behave when valueOf() is invoked.

The default for dot is true, meaning that a dot will be prepended to classNames, this is useful when using a hyperscript helper such as microh or Mithril's m function.

Under normal circumstances this should not interfere with usage of zaftig, but depending on how some libraries process component props you may want to disable the dot.


z.global`<StyleString>`

Appends global styles. Multiple calls with the same string will result in the style being appended multiple times.

z.global`
  html, body {
    font-family sans-serif
    margin 0
  }
`

z.style`<StyleString>`

Parses given style string and returns string of css rules. Useful for styles that change frequently to prevent generating too many classNames. Resulting string can be assigned to the style attribute of a DOM element.

z.style`color ${fgColor};background-color ${bgColor}`

// returns
;('color: #444; background-color: #fff;')

Nested selectors will be ignored, only simple styles will be returned.


z.concat(...(string | Style | Falsy))

Processes all the given arguments into a final className wrapped in a Style object for further chaining.

Falsy arguments are ignored which means arguments can be conditionally included.

z.concat('hello', cond && 'world') // 'hello' or 'hello world' depending on cond

// you can use either strings or zaftig styles
z.concat('btn btn-large', z`c green`) // 'btn btn-large z1234-1'

// concat can be used statically
z.concat('one', 'two') // 'one two'

// or chained of an existing style
z`c green`.concat('one', 'two') // 'z1234-1 one two'

// you can continue chaining after calling concat
z.concat('one').concat('two').concat('three').z`c green` // 'one two three z1234-1'

z.anim`<StyleString>`

Generates an @keyframes for the given StyleString. It returns the generated name.

const grow = z.anim`
  0% { scale(0.2) }
  100% { scale(1) }
`
// then to use it
z`animation ${grow} 1s ease`

z.helper({ helperName: StyleString | Function, ... })

Register helpers functions to be called from style strings.

A helper can be a StyleString or a function that returns a StyleString.

If the helper is a function it will receive arguments, as seen in the size example below. If it is a StyleString it will have arguments appended to it.

z.helper({
  mx: x => `margin-left ${x}; margin-right ${x}`,
  size: (h, w) => `h ${h}; w ${w}`,
  shadow: 'box-shadow 0 2 4 2 rgba(0,0,0,0.5)',
  smooth: 'transition' // since args are appended, this can act as an alias
})

z`
  mx 10
  size 50 100
  shadow
  smooth color 1s
`
/* generated css */

.z2djkf2342-1 {
  margin-left: 10px;
  margin-right: 10px;
  height: 50px;
  width: 100px;
  box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.5);
}

String based helpers will have any arguments passed automatically appended. This allows you to easily create your own css property shorthands.

z.helper({
  bo: 'border',
  tra: 'transition'
})

z`
  bo 4 solid red
  tra 500ms
`
/* generated css */

.zx5cc6j6obc9-1 {
  border: 4px solid red;
  transition: 500ms;
}

Helpers can also be used in selectors, mainly useful for media queries.

const breakpoints = { sm: '640px', md: '768px', lg: '1024px', xl: '1280px' }

z.helper({
  // can be function with arguments like normal helpers
  '@med': x => `@media (min-width: ${breakpoints[x]})`,
  // or simply a string
  '@lg': '@media (min-width: 1024px)'
})

z`
  c blue
  @med md { c orange }
  @lg { c red }
`
/* generated css */
.z2djkf2342-1 {
  color: blue;
}

@media (min-width: 768px) {
  .z2djkf2342-1 {
    color: orange;
  }
}

@media (min-width: 1024px) {
  .z2djkf2342-1 {
    color: red;
  }
}

z.getSheet()

Returns the DOM node representing the stylesheet.

You can read the stylesheet from it in a couple ways depending on the whether you're in debug mode or not:

// in debug mode you can look for the stylesheet in document.head in DOM or like this:
z.getSheet().textContent
// in prod mode you can use the following code to get the stylesheet:
[...z.getSheet().sheet.cssRules].map(x => x.cssText).join('\n')

z.new(config)

Creates a new instance of zaftig, with a separate style element, helpers and rule/parser cache.

The new instance will have all the same methods as the default one.

config is an optional object parameter that looks something like this:

const newZ = z.new({
  // if you pass a style elem, you need to append it to the doc yourself
  // if you don't pass one then zaftig will create and append one for you
  style: document.head.appendChild(document.createElement('style')),

  // override the prefix for all classes generated by zaftig
  // a random one will be generated by default
  id: 'custom-id',

  // preload the instance with some helpers
  // defults to {}, add more with z.helper()
  helpers: { mx: x => `ml ${x}; mr ${x}` },

  // overrides auto-px behavior, if property accepts px, then automatically
  // this unit to numbers
  unit: 'rem',

  // debug flag, default is false
  debug: true,

  // whether or not to add dot to className when valueOf() is called, default is true
  dot: true
})

Creating a new instance is useful when you want to you ensure you get a private/non global version of zaftig, or to render styles into a shadow DOM.

Credits

Heavily inspired by bss by Rasmus Porsager.

Readme

Keywords

Package Sidebar

Install

npm i zaftig

Weekly Downloads

17

Version

0.10.0

License

MIT

Unpacked Size

76.7 kB

Total Files

11

Last publish

Collaborators

  • fuzetsu