bokuweb/re-bulma

View on GitHub
lib-es/elements/image.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 Image extends Component {

  createClassName() {
    return [styles.image, styles[this.props.size], styles[this.props.ratio], this.props.className].join(' ').trim();
  }

  render() {
    return React.createElement(
      'figure',
      _extends({}, getCallbacks(this.props), {
        style: this.props.style,
        className: this.createClassName()
      }),
      React.createElement('img', { src: this.props.src, alt: this.props.alt })
    );
  }
}
Image.propTypes = {
  style: PropTypes.object,
  className: PropTypes.string,
  src: PropTypes.string,
  alt: PropTypes.string,
  size: PropTypes.oneOf(['is16X16', 'is24X24', 'is32X32', 'is48X48', 'is64X64', 'is96X96', 'is128X128']),
  ratio: PropTypes.oneOf(['isSquare', 'is1By1', 'is4By3', 'is3By2', 'is16By9', 'is2By1'])
};
Image.defaultProps = {
  src: '',
  style: {},
  className: ''
};