All files / packages/design-system/ui/components/tabs index.react.jsx

91.17% Statements 31/34
62.5% Branches 10/16
66.66% Functions 2/3
91.17% Lines 31/34

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212              3x       52x 52x             52x                         3x         3x                         52x 52x                                                               52x 52x           52x 52x                   3x             3x 3x                     3x               17x 17x       17x 55x               17x   3x                 52x                             17x 17x         17x                               3x                 3x             3x 3x 3x      
// Copyright (c) 2015-present, salesforce.com, inc. All rights reserved
// Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license
 
import React from 'react';
import classNames from 'classnames';
import PropTypes from 'prop-types';
 
const PT = PropTypes;
 
class TabContent extends React.Component {
  render() {
    const { current, flavor, ...rest } = this.props;
    const classNameComputed = classNames(
      classNames(`slds-tabs_${flavor}__content`, {
        'slds-show': current,
        'slds-hide': !current
      })
    );
 
    return (
      <div
        {...rest}
        className={classNameComputed}
        role="tabpanel"
        aria-labelledby={`${this.props.id}__item`}
      >
        {this.props.children}
      </div>
    );
  }
}
 
TabContent.propTypes = {
  current: PT.bool,
  flavor: PT.oneOf(['scoped', 'default', 'path'])
};
 
TabContent.defaultProps = { current: true };
 
class TabItem extends React.Component {
  renderCustom(tabIndex) {
    return React.cloneElement(this.props.content, {
      tabIndex: tabIndex,
      className: `slds-tabs_${this.props.flavor}__link`,
      'aria-selected': this.props.current,
      'aria-controls': this.props['aria-controls'] || this.props.id
    });
  }
 
  renderDefault(tabIndex, leftIcon, rightIcon) {
    const { flavor, current, id, title } = this.props;
    return (
      <a
        className={`slds-tabs_${flavor}__link`}
        href="#"
        role="tab"
        tabIndex={tabIndex}
        aria-selected={current}
        aria-controls={id}
        id={`${id}__item`}
        onClick={e => e.preventDefault()}
      >
        {leftIcon && <span className="slds-tabs__left-icon">{leftIcon}</span>}
        {title}
        {rightIcon && (
          <span className="slds-tabs__right-icon">{rightIcon}</span>
        )}
      </a>
    );
  }
 
  render() {
    const {
      className,
      id,
      role,
      current,
      flavor,
      content,
      size,
      leftIcon,
      rightIcon,
      ...rest
    } = this.props;
    const classNameComputed = classNames(
      className,
      classNames(`slds-tabs_${flavor}__item`, {
        'slds-is-active': current
      })
    );
    const tabIndex = current ? 0 : -1;
    return (
      <li className={classNameComputed} {...rest} role="presentation">
        {content
          ? this.renderCustom(tabIndex)
          : this.renderDefault(tabIndex, leftIcon, rightIcon)}
      </li>
    );
  }
}
 
TabItem.propTypes = {
  title: PT.string,
  content: PT.node,
  flavor: PT.oneOf(['scoped', 'default', 'path'])
};
 
export const TabItemOverflow = props => {
  const { flavor, children, title } = props;
  return (
    <li
      className={`slds-tabs_${flavor}__item slds-tabs_${flavor}__overflow-button`}
      title={title}
      role="presentation"
    >
      {children}
    </li>
  );
};
 
TabItemOverflow.propTypes = {
  title: PT.string,
  children: PT.node,
  flavor: PT.oneOf(['scoped', 'default', 'path'])
};
 
class Tabs extends React.Component {
  constructor(props) {
    super(props);
    this.state = { currentTab: this.props.selectedIndex };
  }
 
  tabs() {
    return React.Children.map(this.props.children, (c, i) => {
      return React.cloneElement(c, {
        current: this.state.currentTab === i,
        flavor: this.props.flavor
      });
    });
  }
 
  currentPanel() {
    return React.Children.map(this.props.children, (c, i) => {
      if (c.type === TabItemOverflow) {
        return null;
      } else {
        if (c.props.children.type === TabContent) {
          return React.cloneElement(c.props.children, {
            id: c.props.id,
            current: this.state.currentTab === i,
            flavor: this.props.flavor
          });
        } else {
          return (
            <TabContent
              current={this.state.currentTab === i}
              id={c.props.id}
              flavor={this.props.flavor}
            >
              {c.props.children}
            </TabContent>
          );
        }
      }
    });
  }
 
  render() {
    const { flavor, panel, size, isCard, selectedIndex, withHeader, showHeader, ...rest } = this.props;
    const composedClassName = classNames(`slds-tabs_${flavor}`, {
      'slds-tabs_medium': size === 'medium',
      'slds-tabs_large': size === 'large',
      'slds-tabs_card': isCard
    });
    return (
      <div {...rest} className={composedClassName}>
        {withHeader ? (showHeader ? (
          <div role="heading" aria-level="2" className='slds-tabs_default__header'>This is a sample header for tabs</div>
        ) : (
          <div role="heading" aria-level="2" className='slds-tabs_default__header slds-assistive-text'>This is a sample invisible header for tabs</div>
        )) : null}
        <ul className={`slds-tabs_${flavor}__nav`} role="tablist">
          {this.tabs()}
        </ul>
        {panel || this.currentPanel()}
      </div>
    );
  }
}
 
Tabs.propTypes = {
  selectedIndex: PT.number,
  flavor: PT.oneOf(['scoped', 'default', 'path']),
  size: PT.oneOf(['medium', 'large']),
  isCard: PT.bool,
  showHeader: PT.bool,
  withHeader: PT.bool
};
 
Tabs.defaultProps = {
  selectedIndex: 0,
  flavor: 'default',
  withHeader: false,
  showHeader: false
};
 
Tabs.Item = TabItem;
Tabs.ItemOverflow = TabItemOverflow;
Tabs.Content = TabContent;
 
export default Tabs;