bokuweb/re-bulma

View on GitHub
lib-es/components/menu/menu-link.js

Summary

Maintainability
B
6 hrs
Test Coverage
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import styles from '../../../build/styles';
import { getCallbacks } from '../../helper/helper';

export default class MenuLink extends Component {

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

  render() {
    return React.createElement(
      'a',
      _extends({}, getCallbacks(this.props), {
        href: this.props.href,
        style: this.props.style,
        className: this.createClassName()
      }),
      this.props.children
    );
  }
}
MenuLink.propTypes = {
  style: PropTypes.object,
  children: PropTypes.any,
  className: PropTypes.string,
  href: PropTypes.string,
  isActive: PropTypes.bool
};
MenuLink.defaultProps = {
  style: {},
  className: ''
};