import React from 'react'; import { findDOMNode } from 'react-dom'; import classNames from 'classnames'; import { isCssAnimationSupported } from 'css-animation'; import warning from 'warning'; export default class Spin extends React.Component { static defaultProps = { prefixCls: 'ant-spin', spinning: true, } static propTypes = { className: React.PropTypes.string, size: React.PropTypes.oneOf(['small', 'default', 'large']), } isNestedPattern() { return !!(this.props && this.props.children); } componentDidMount() { warning(!('spining' in this.props), '`spining` property of Popover is a spell mistake, use `spinning` instead.'); if (!isCssAnimationSupported) { // Show text in IE8/9 findDOMNode(this).className += ` ${this.props.prefixCls}-show-text`; } } render() { const { className, size, prefixCls, tip, spining = true } = this.props; const spinning = this.props.spinning && spining; // Backwards support const spinClassName = classNames({ [prefixCls]: true, [`${prefixCls}-sm`]: size === 'small', [`${prefixCls}-lg`]: size === 'large', [className]: !!className, [`${prefixCls}-spinning`]: spinning, [`${prefixCls}-show-text`]: !!this.props.tip, }); const spinElement = (