You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

babel-plugin-jsx-component-showing-controll

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

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).

1.0.7
latest
npmnpm
Version published
Weekly downloads
11
120%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 10 Mar 2017

Did you know?

Socket

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