
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
babel-plugin-transform-jsx-directives
Advanced tools
apply directives to jsx components based on component names or props
Functional directives for JSX elements based on element or attribute name.
Think of it as globally available on-demand higher order components.
npm install --save-dev babel-plugin-transform-jsx-directives
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"
]
}]
]
}
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
name
(String): When a element or attribute (see type) matches the name,
the directive gets appliedsource
(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: 0bootstrap
(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 OptionsMy 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.
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.
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
.
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.
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
),
])
);
}
}
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.
FAQs
apply directives to jsx components based on component names or props
We found that babel-plugin-transform-jsx-directives demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.