bokuweb/re-bulma

View on GitHub
src/components/nav/nav-item.js

Summary

Maintainability
B
4 hrs
Test Coverage
import React from 'react';
import PropTypes from 'prop-types';
import styles from '../../../build/styles';
import { getCallbacks } from './../../helper/helper';
import DataComponent from '../../dataComponent';

export default class NavItem extends DataComponent {
  static propTypes = {
    style: PropTypes.object,
    children: PropTypes.any,
    className: PropTypes.string,
    isActive: PropTypes.bool,
    isTab: PropTypes.bool,
    data: PropTypes.array,
  };

  static defaultProps = {
    style: {},
    className: '',
  };

  createClassName() {
    return [
      styles.navItem,
      this.props.isActive ? styles.isActive : '',
      this.props.isTab ? styles.isTab : '',
      this.props.className,
    ].join(' ').trim();
  }

  render() {
    return (
      <span
        {...getCallbacks(this.props)}
        style={this.props.style}
        className={this.createClassName()}
        {...this.dataProps()}
      >
        {this.props.children}
      </span>
    );
  }
}