npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

babel-plugin-transform-jsx-directives

v1.1.3

Published

apply directives to jsx components based on component names or props

Downloads

31

Readme

babel-plugin-transform-jsx-directives

CircleCI codecov Greenkeeper badge semantic-release Love and Peace

Functional directives for JSX elements based on element or attribute name.
Think of it as globally available on-demand higher order components.

Install

npm install --save-dev babel-plugin-transform-jsx-directives

Config

Add in your .babelrc

{
  "plugins": [
    ["transform-jsx-directives", {
      "directives": [
        {
          "type": "element",
          "name": "button",
          "priority": 100,
          "source": "./myButtonDirective.js",
          "bootstrap": {
            "colour": "fuchsia"
          }
        },
        ["directive-module", { "colour": "pink" }],
        "path/to/a/directiveConfiguration.js"
      ]
    }]
  ]
}

Plugin Options

  • directives (Array): A mandatory* array of configurations or node modules/files providing one or more configurations.

* Not really mandatory, but this plugin wont do nothing without specific configurations

Directive Configuration

  • name (String): When a element or attribute (see type) matches the name, the directive gets applied
  • source (String|Function): path to the directive runtime component or function returning the path. Function gets called with transformed options and bootstrap.
  • type ("attribute"|"element"): whether the directive should be applied on matches against element names or attribute names. Default: "attribute"
  • priority (Integer): Directives with a higher priority run first, Default: 0
  • bootstrap (any): If present, a bootstrap function is imported from source and called a single time when the application starts with any value provided to bootstrap. The value is being JSON encoded, in order to be moved from config to runtime, so methods will get lost.
  • transformOptions (Function): Only for attribute directives. Optional transformer for the options node. See Transform Options

Why?

My main motivation behind this plugin is to provide a clean way of extending the feature set of a JSX target library.

I recommend sticking to plain old components and higher order components when working on application specific solutions.

Use directives in cases where you want to provide a globally available abstraction for a complex solution that feels like it's part of the library you're using.

How does this work?

Assuming we want every button in our app to alert "baby don't hurt me" on click.

This is our button.jsx file

<button>What is love?</button>

when we use this directive configuration

{
  "name": "button",
  "type": "element",
  "source": "./HaddawayButton.js"
}

the directive plugin will transform our button.jsx into

import _buttonDirective from './HaddawayButton.js';

<_buttonDirective
  Elm="button"
  props={{}}
  next={(_Elm, _props) => <_Elm {..._props} />}
/>

the last bit is now the implementation of HaddawayButton.js

function whatIsLove() {
  alert('baby don\'t hurt me');
}

export default function HaddawayButton({ Elm, props, next }) {
  return next(Elm, { ...props, onClick: whatIsLove });
} 

and voilà you have an earworm.

Directive Runtime Components

As shown in the example, directive components receive Elm, props, next and attribute directives additionally options. Since the runtime is just another component, it can utilize all features of the target library, like context in React.

  • Elm: Element name or component, the directive was matched against.

    Directives can manipulate the element by passing a new one into next.
    Since multiple directives can be applied to the same element, Elm is not necessarily the original element.

  • props: Object of all attributes used on the element.

    Can be manipulated by passing new props into next.
    Since multiple directives can be applied to the same element, these are not necessarily the original attributes.

  • next: Callback function that will apply the next directive or create the child elements.

    A no-op directive would just return next(Elm, props).

    A directive can also decide to not call next at all and prevent creation of all child components.

  • options: Value of the directive attribute. (Only available on attribute directives)

    Given this jsx <div foo="bar" />, a foo attribute directive would receive "bar" as options:

    The original attribute used for options is excluded from props.

    Parent directives have no access to the options of child directives so this always is the original value.

    Directives can provide an option transformer in order to mutate own options beforehand.

  • as: JSX namespace of the directive attribute. (Only available on attribute directives)

    Given this jsx <div onClick:alert="Hello World!" />, a alert attribute directive would receive "onClick" as as.

Transform Options

A transformOptions(babel, node) function provided to a Directive Configuration that returns a (new) babel node.

The main Idea here is to support transforming of Domain-specific languages for attribute directives pre-runtime but it also could be used for validation or to add defaults.

Example:

Lets say our directive expects an object as options but we want to provide a shorthand for { value: 'Foo' } and just use "Foo" in that case.

{
  name: 'foo',
  type: 'attribute',
  transformOptions({ types: t }, node) {
    if (!t.isStringLiteral(node)) {
      return node;
    }

    return t.jSXExpressionContainer(
      t.objectExpression([
        t.objectProperty(
          t.identifier('value'),
          node
        ),
      ])
    );
  }
}

License

The MIT License

Copyright (C) 2017 Hannes Diercks

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.