UNPKG

antd

Version:

An enterprise-class UI design language and React-based implementation

54 lines (47 loc) 1.99 kB
import _classCallCheck from 'babel-runtime/helpers/classCallCheck'; import _createClass from 'babel-runtime/helpers/createClass'; import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn'; import _inherits from 'babel-runtime/helpers/inherits'; import * as React from 'react'; import Button from '../button'; function noop() {} var Operation = function (_React$Component) { _inherits(Operation, _React$Component); function Operation() { _classCallCheck(this, Operation); return _possibleConstructorReturn(this, (Operation.__proto__ || Object.getPrototypeOf(Operation)).apply(this, arguments)); } _createClass(Operation, [{ key: 'render', value: function render() { var _props = this.props, _props$moveToLeft = _props.moveToLeft, moveToLeft = _props$moveToLeft === undefined ? noop : _props$moveToLeft, _props$moveToRight = _props.moveToRight, moveToRight = _props$moveToRight === undefined ? noop : _props$moveToRight, _props$leftArrowText = _props.leftArrowText, leftArrowText = _props$leftArrowText === undefined ? '' : _props$leftArrowText, _props$rightArrowText = _props.rightArrowText, rightArrowText = _props$rightArrowText === undefined ? '' : _props$rightArrowText, leftActive = _props.leftActive, rightActive = _props.rightActive, className = _props.className; return React.createElement( 'div', { className: className }, React.createElement( Button, { type: 'primary', size: 'small', disabled: !leftActive, onClick: moveToLeft, icon: 'left' }, leftArrowText ), React.createElement( Button, { type: 'primary', size: 'small', disabled: !rightActive, onClick: moveToRight, icon: 'right' }, rightArrowText ) ); } }]); return Operation; }(React.Component); export default Operation;