项目作者: mitchellhamilton

项目描述 :
Create unique and deterministic strings with a babel macro
高级语言: JavaScript
项目地址: git://github.com/mitchellhamilton/unique.macro.git
创建时间: 2017-11-10T09:06:21Z
项目社区:https://github.com/mitchellhamilton/unique.macro

开源协议:MIT License

下载


unqiue.macro

Create unique and deterministic strings with a babel macro

Babel Macro
Build Status

unique.macro is a babel macro that generates a unique string based on filename to the nearest package.json, the name in the nearest package.json and the contents of the file it’s in. unique.macro is primarily useful for generating unique class names to use as selectors with css-in-js libraries like emotion or glamor. Using unique.macro is better for Server Side Rendering than Math.random or something like it because it will use the same class on the server as on the client so there won’t be any mismatches.

Install

  1. yarn add --dev babel-macros unique.macro

or

  1. npm install --save-dev babel-macros unique.macro

Configuration

unique.macro requires babel-macros to be in your babel config as below.

.babelrc

  1. {
  2. "plugins": ["babel-macros"]
  3. }

Via CLI

  1. babel --plugins babel-macros script.js

Via Node API

  1. require('babel-core').transform('code', {
  2. plugins: ['babel-macros'],
  3. })

Use

  1. import unique from 'unique.macro'
  2. const uniqueString = unique()
  3. // use it with a css-in-js library like emotion
  4. import { css } from 'emotion'
  5. const classWithStyles = css`
  6. background-color: green;
  7. .${uniqueString} {
  8. background-color: hotpink;
  9. }
  10. `
  11. <div className={classWithStyles}>
  12. some text with a green background
  13. <span className={uniqueString}>some text with a hotpink background</span>
  14. </div>

Prefix

By default the unique hash generated by babel-macros is prefixed with css- so that it can be used with jest-glamor-react in snapshots and be replaced with glamor-{index}. The prefix can be changed in two ways.

Inline

  1. import unique from 'unique.macro'
  2. const someClass = unique('some-other-prefix-')
  3. // note the string MUST be inline, e.g. this won't work
  4. const customPrefix = 'another-prefix-'
  5. const throwsAnError = unique(customPrefix)

Config File

unique.macro also supports changing the prefix with babel-macros‘ config. If there is an inline prefix it will be used instead of the config file. babel-macros supports configuration via cosmiconfig so it can be configured with any of the ways below.

  • .babel-macrosrc
  • .babel-macrosrc.json
  • .babel-macrosrc.yaml
  • .babel-macrosrc.yml
  • .babel-macrosrc.js
  • babel-macros.config.js
  • babelMacros in package.json

Example .babel-macrosrc.json

  1. {
  2. "unique": {
  3. "prefix": "some-other-prefix-"
  4. }
  5. }

Thanks

Thanks to the styled-components team for writing the code to generate the unique hash.

LICENSE

MIT