import React from 'react'; import classNames from 'classnames'; import PureRenderMixin from 'rc-util/lib/PureRenderMixin'; import assign from 'object-assign'; import Lazyload from 'react-lazy-load'; import Checkbox from '../checkbox'; export default class Item extends React.Component { shouldComponentUpdate(...args) { return PureRenderMixin.shouldComponentUpdate.apply(this, args); } render() { const { renderedText, renderedEl, item, lazy, checked, prefixCls, onClick } = this.props; const className = classNames({ [`${prefixCls}-content-item`]: true, [`${prefixCls}-content-item-disabled`]: item.disabled, }); const listItem = (
  • onClick(item)} > {renderedEl}
  • ); let children: JSX.Element | null = null; if (lazy) { const lazyProps = assign({ height: 32, offset: 500, throttle: 0, debounce: false, }, lazy); children = {listItem}; } else { children = listItem; } return children; } }