All files / packages/sds-subsystems/.storybook/addons/theme-builder/src/components Tabs.jsx

0% Statements 0/30
0% Branches 0/21
0% Functions 0/7
0% Lines 0/26

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 213 214 215 216 217 218 219                                                                                                                                                                                                                                                                                                                                                                                                                                                     
// 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, { useEffect, useMemo, useState } from 'react';
import classNames from 'classnames';
import PropTypes from 'prop-types';
 
const PT = PropTypes;
 
const TabContent = (props) => {
  const { current, flavor, id, children, ...rest } = props;
  const classNameComputed = classNames(
    classNames(`slds-tabs_${flavor}__content`, {
      'slds-show': current,
      'slds-hide': !current
    })
  );
 
  return (
    <div
      {...rest}
      className={classNameComputed}
      role="tabpanel"
      aria-labelledby={`${id}__item`}
    >
      {children}
    </div>
  );
};
 
TabContent.propTypes = {
  current: PT.bool,
  flavor: PT.oneOf(['scoped', 'default', 'path'])
};
 
TabContent.defaultProps = { current: true };
 
const TabItem = (props) => {
  const {
    className,
    id,
    current,
    flavor,
    content,
    leftIcon,
    rightIcon,
    title,
    onSelect,
    ...rest
  } = props;
 
  const classNameComputed = classNames(
    className,
    classNames(`slds-tabs_${flavor}__item`, {
      'slds-is-active': current
    })
  );
  const tabIndex = current ? 0 : -1;
 
  const handleActivate = (e) => {
    if (e) e.preventDefault();
    if (onSelect) onSelect();
  };
 
  const renderCustom = (ti) =>
    React.cloneElement(content, {
      tabIndex: ti,
      className: `slds-tabs_${flavor}__link`,
      'aria-selected': current,
      'aria-controls': props['aria-controls'] || id,
      onClick: handleActivate,
      onKeyDown: (e) => {
        if (e.key === 'Enter' || e.key === ' ') handleActivate(e);
      }
    });
 
  const renderDefault = (ti) => (
    <a
      className={`slds-tabs_${flavor}__link`}
      href="#"
      role="tab"
      tabIndex={ti}
      aria-selected={current}
      aria-controls={id}
      id={`${id}__item`}
      onClick={handleActivate}
      onKeyDown={(e) => {
        if (e.key === 'Enter' || e.key === ' ') handleActivate(e);
      }}
    >
      {leftIcon && <span className="slds-tabs__left-icon">{leftIcon}</span>}
      {title}
      {rightIcon && (
        <span className="slds-tabs__right-icon">{rightIcon}</span>
      )}
    </a>
  );
 
  return (
    <li className={classNameComputed} {...rest} role="presentation">
      {content ? renderCustom(tabIndex) : renderDefault(tabIndex)}
    </li>
  );
};
 
TabItem.propTypes = {
  title: PT.string,
  content: PT.node,
  flavor: PT.oneOf(['scoped', 'default', 'path'])
};
 
const Tabs = (props) => {
  const {
    flavor,
    panel,
    size,
    isCard,
    selectedIndex,
    withHeader,
    showHeader,
    children,
    onTabChange,
    ...rest
  } = props;
 
  const [currentTab, setCurrentTab] = useState(selectedIndex);
 
  // Keep internal state in sync if selectedIndex prop changes
  useEffect(() => {
    setCurrentTab(selectedIndex);
  }, [selectedIndex]);
 
  const composedClassName = classNames(`slds-tabs_${flavor}`, {
    'slds-tabs_medium': size === 'medium',
    'slds-tabs_large': size === 'large',
    'slds-tabs_card': isCard
  });
 
  const tabs = useMemo(
    () =>
      React.Children.map(children, (c, i) =>
        React.cloneElement(c, {
          current: currentTab === i,
          flavor,
          onSelect: () => {
            setCurrentTab(i);
            if (onTabChange) onTabChange(i);
          }
        })
      ),
    [children, currentTab, flavor]
  );
 
  const currentPanel = useMemo(
    () =>
      React.Children.map(children, (c, i) => {
        if (c.props.children?.type === TabContent) {
          return React.cloneElement(c.props.children, {
            id: c.props.id,
            current: currentTab === i,
            flavor
          });
        }
        return (
          <TabContent current={currentTab === i} id={c.props.id} flavor={flavor}>
            {c.props.children}
          </TabContent>
        );
      }),
    [children, currentTab, flavor]
  );
 
  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">
        {tabs}
      </ul>
      {panel || 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
};
 
export {TabItem};
 
export default Tabs;