How to use the babel-macros.createMacro function in babel-macros

To help you get started, weโ€™ve selected a few babel-macros examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github kentcdodds / babel-plugin-macros-example / greeting.macro.js View on Github external
// ast-pretty-print is really handy :)
const printAST = require('ast-pretty-print')
const {createMacro} = require('babel-macros')

module.exports = createMacro(greetingMacro)

function greetingMacro({references, babel}) {
  const {default: hello = [], goodbye = []} = references
  hello.forEach(reference => {
    // console.log(printAST(reference))
    reference.replaceWith(babel.types.stringLiteral('hi there'))
  })
  goodbye.forEach(reference => {
    // console.log(printAST(reference))
    reference.replaceWith(babel.types.stringLiteral('goodbye friend'))
  })
}
github jdeal / qim / src / macros / unwrap.macro.js View on Github external
(TEMP_VAR = NODE, UNWRAP)
`);

const createUnwrapExpression = (id) =>
  buildUnwrapExpression({
    WRAPPED: id
  });

const createUnwrapSequence = (id, node) =>
  buildUnwrapSequence({
    TEMP_VAR: id,
    NODE: node,
    UNWRAP: createUnwrapExpression(id)
  });

module.exports = createMacro(({ references }) => {
  const refs = references.default.slice(0).reverse();
  refs.forEach(path => {
    const id = t.identifier('_wrappedValue');
    const maybeValueNode = path.parentPath.node.arguments[0];
    const valueNode = maybeValueNode !== undefined ?
      maybeValueNode :
      t.identifier('undefined');
    if (valueNode.type === 'Identifier') {
      path.parentPath.replaceWith(
        createUnwrapExpression(valueNode)
      );
    } else {
      path.parentPath.replaceWith(
        createUnwrapSequence(id, valueNode)
      );
      ensureVar(id, path);
github storybookjs / paths.macro / macro.js View on Github external
};

const macro = ({ references, state }) => {
  const paths = getPaths(state.file.opts.filename);

  Object.keys(paths).forEach(key => {
    const value = (key === 'default' ? paths['base'] : paths[key]) || '';
    const list = references[key] || [];

    list.forEach(reference => {
      reference.replaceWithSourceString(JSON.stringify(value));
    });
  })
};

module.exports = createMacro(macro);

babel-macros

It is now [babel-plugin-macros](https://www.npmjs.com/package/babel-plugin-macros).

MIT
Latest version published 6 years ago

Package Health Score

59 / 100
Full package analysis

Popular babel-macros functions

Similar packages