Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

conditional-component

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

conditional-component

Conditionally render a React component

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

<Conditional> Component

Conditional Component is a higher order component to help with conditionally rendering components.

Example

import React, { Component, PropTypes } from 'react';
import Conditional from 'conditional-component';

class ContactsList extends Component {
  static propTypes = {
    isLoading: PropTypes.bool,
    contacts: PropTypes.array
  };

  hasConfirmedContacts() {
    return this.props.contacts.filter(contact => contact.isConfirmed).length > 0
  }

  render() {
    <div>
      {/* Use a boolean property to conditionally render: */}
      <Conditional if={this.props.isLoading}>
        <div className="loading-message">
          Contacts loading, please wait...
        </div>
      </Conditional>

      {/* Use a function to conditionally render: */}
      <Conditional if={this.hasConfirmedContacts.bind(this)}>
        <ul className="contacts-list">
          {this.props.contacts.map((contact) => {
            return <li>{contact.name}</li>
          })}
        </ul>
      </Conditional>
    </div>
  }
}

Install

npm install --save conditional-component

Keywords

FAQs

Package last updated on 17 Jan 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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc