Socket
Book a DemoInstallSign in
Socket

react-closeable-tabs

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-closeable-tabs

Simple closeable tabs. Add or remove tabs

latest
Source
npmnpm
Version
1.1.5
Version published
Maintainers
1
Created
Source

React closeable tabs

Simple Closeable tabs with React.

Usage

First install package

npm i -S react-closeable-tabs (yarn add react-closeable-tabs)

To start using closeable tabs, you need to pass data prop which is an array of objects. Each object has the following properties:

{
  tab: 'Tab text', 
  component: <YourComponent />, 
  id: 'uniqueId', 
  closeable: true
}

If you don't want tab to be closeable (not to have X to close it), you can set closeable property to false.

Example

import React from 'react';
import { render } from 'react-dom';

import CloseableTabs from 'react-closeable-tabs';

class Demo extends React.Component {
  state = {
    data: [
      {
        tab: 'List',
        component: <div><h1>Your list</h1></div>,
        id: 0
      },
      {
        tab: 'Item detail 1',
        component: <div>Item details for 1</div>,
        id: 1,
        closeable: true
      },
      {
        tab: 'Item detail 2',
        component: <div>Item details for 2</div>,
        id: 2,
        closeable: true
      },
      {
        tab: 'Item detail 3',
        component: <div>Item details for 3</div>,
        id: 3,
        closeable: true
      }
    ]
  };

  addItem = () => {
    const id = new Date().valueOf();
    this.setState({
      data: this.state.data.concat({
        tab: 'New item ' + id,
        component: (
          <div>
            Your new component data for {id.toString().substring(6, 10)}
          </div>
        ),
        id: id,
        closeable: true
      }),
      activeIndex: this.state.data.length
    });
  };

  render() {
    return (
      <div>
        <button onClick={this.addItem}>Add item</button>
        <CloseableTabs
          tabPanelColor='lightgray'
          data={this.state.data}
          onCloseTab={(id, newIndex) => {
            this.setState({
              data: this.state.data.filter(item => item.id !== id),
              activeIndex: newIndex
            });
          }}
          activeIndex={this.state.activeIndex}
        />
      </div>
    );
  }
}

render(<Demo />, document.querySelector('#demo'));

API

PropTypeDefaultDescription
dataArray[]Array of objects that need to be in the following format: {tab: 'Tab text', component: <YourComponent />, id: 'uniqueId', closeable: true}
activeIndexNumber0Define which tab is active by default
identifierStringidYou can define new key for unique ID in your data object
onCloseTabFunction(id, newIndex)nullCallback function that is invoked after clicking close tab. It passes id of closed object tab
onTabClickFunction(id, newIndex, oldIndex)nullCallback function that is invoked after clicking tab. It passes id of clicked tab
onBeforeTabClickFunction(id, newIndex, oldIndex)nullCallback function that is invoked before clicking tab. It passes id of clicked tab
tabPanelColorString#f2f2f2Background of tabPanel holder
renderCloseFunction'X'Custom content render of close button
closeTitleString'Close tab'Close button tooltip text
mainClassNameString''Option to add additional class to main wrapping panel
tabPanelClassString''Option to add additional class to tabPanel
tabContentClassString''Option to add additional class to contentPanel
noTabUnmountbooleanfalseif true, all tabs will be mounted on start, will be toggled with CSS display (since version 1.1.0)

Limitations

This library does not work in IE11. Use polyfill for Object.values and Number.isInteger if you need to support it.

Keywords

react-component, react, styled-components, tabs

FAQs

Package last updated on 25 Nov 2019

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