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