Giter VIP home page Giter VIP logo

jsx-if's Introduction

JSX IF

A really lightweight helper for writing native-looking conditionals in JSX.

Single line:

<div id={_if (condition, 'msg')}>

Multi line:

{
  _if (this.state.title,
    <header>
      {this.state.title}
    </header>,

  _else (
    <h3>No content</h3>
  )
)}

Usage

npm install jsx-if --save-dev

In your component:

var jsxIf   = require('jsx-if');

var _if     = jsxIf._if,
    _elseif = jsxIf._elseif,
    _else   = jsxIf._else;

The _if function takes a minimum of two arguments: a condition and a value or function to return if true. However, it can take any number of arguments, which will act as elseif/else statements. The full syntax is as follows:

_if(condition, value, _elseif(condition, value)..., _else(value))

It's a bit odd but it's as close as it gets until we get proper support built in.

##Examples

As a single line:

<div id={_if (condition, 'msg')}>

or on a block level:

{_if (this.state.title,
    <header>
      {this.state.title}
    </header>
)}

####If-else:

{
  _if (this.state.title,
    <header>
      {this.state.title}
    </header>,

  _else (
    <h3>No content</h3>
  )
)}

Notice the comma at the end of the if block.

####A complete if-elseif-else

At this point I would probably recommend using the immediately-invoked function expressions described in the react docs, however this works completely fine.

{
  _if (this.state.title,
    <header>
      {this.state.title}
    </header>,

  _elseif (this.props.showDefault,
    <h3>Default title</h3>
  ),

  _else (
    <h3>No content</h3>
  )
)}

Tests

npm test

Release history

  • 0.1.0 Initial release

jsx-if's People

Contributors

joarwilk avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.