Socket
Socket
Sign inDemoInstall

babel-plugin-jsx-component-showing-controll

Package Overview
Dependencies
0
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    babel-plugin-jsx-component-showing-controll

Inspired by [babel-plugin-jsx-if](https://github.com/motion/babel-transform-jsx-if).


Version published
Maintainers
1
Install size
3.57 kB
Created

Readme

Source

babel-plugin-jsx-component-showing-controll 1.0.6

Inspired by babel-plugin-jsx-if.

Showing current component or other component conditionally

Install

yarn add babel-plugin-jsx-component-showing-controll -D

Usage

.babelrc

{
  ...
  "plugins": [
    ...,
    "jsx-component-showing-controll"
  ]
}

Component.js

import React, { PureComponent } from 'react'

const InLoading = () => (<div>loading...</div>) // eslint-disable-line

export default class Component extends PureComponent {
  render() {
    return (
      <div is-show={!this.props.loading} >
        current component
      </div>
    )
  }
  // conver to
  // (this.props.loading ? <InLoading /> : <div>current component </div>)
}

Showing custom tag instead of InLoading

import React, { PureComponent } from 'react'

const Loading = () => (<div>loading...</div>) // eslint-disable-line

export default class Component extends PureComponent {
  render() {
    return (
      <div is-show={!this.props.loading} show-tag="Loading">
        current component
      </div>
    )
  }
  // conver to
  // (this.props.loading ? <Loading /> : <div>current component </div>)
}

FAQs

Last updated on 10 Mar 2017

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc