babel-plugin-glamorous-to-emotion icon indicating copy to clipboard operation
babel-plugin-glamorous-to-emotion copied to clipboard

A codemod to migrate existing React or Preact codebases from glamorous to emotion.

💄 glamorous → 👩‍🎤 emotion

This codemod was created to help migrate an existing React or Preact codebase from glamorous to emotion in light of this issue on glamorous.

Features

This codemod follows the glamorous to emotion migration guide on the glamorous repo. Particularly, it rewrites the following:

  • ✅ All import statements, including ThemeProvider inclusion.
  • ✅ All glamorous function calls to emotion function calls.
  • ✅ The content property to be emotion friendly.

Usage

You'll need to use babel-codemod to apply this codemod to your existing codebase. It should be pretty straightforward:

  • First, install this plugin: yarn add babel-plugin-glamorous-to-emotion -D

  • Then run it: npx babel-codemod --plugin babel-plugin-glamorous-to-emotion "src/**/*.js" or a similar variation depending on your directory structure.

This will put you fully in emotion-land.

Options

You may also pass --plugin-options to the babel-codemod command. Here's a sample call:

npx babel-codemod --plugin babel-plugin-glamorous-to-emotion --plugin-options glamorousToEmotion='{"mode": "withBabelPlugin"}' src/**/*.js
  • mode

    This plugin offers three modes to convert your glamorous code.

    Let's compare them based on this glamorous snippet

    <glamorous.Div marginTop={5} />
    
    {"mode": "withJsxPragma"} (default)

    If you can't or don't want to add emotion's @emotion/babel-preset-css-prop, you can use emotion via setting the jsx pragma. This will create code like this:

    /** @jsx jsx */
    import { jsx } from "@emotion/core";
    
    <div css={{marginTop: 5}} />
    
    {"mode": "withBabelPlugin"}

    Use this option if you are able to use the babel plugin. The resulting code will look like this:

    <div css={{marginTop: 5}} />
    
    {"mode": "className"}

    If neither is an option for you, this codemod allows you to directly set the className instead:

    import { css } from "@emotion/core";
    
    <div className={css({marginTop: 5})} />
    
  • {"preact": true}

    Uses import styled from "@emotion/preact-styled" instead of import styled from "@emotion/styled"

Contributing

ALL CONTRIBUTIONS WELCOME!

I sincerely hope it helps you migrate your codebase! Please open issues for areas where it doesn't quite help and we'll sort it out.

Acknowledgements

The following people are awesome for their open source work and should be acknowledged as such.