import React, { PropTypes } from 'react'; import classNames from 'classnames'; import captcha from 'services/captcha'; import { skins, SKIN_DARK } from 'components/ui'; import { ComponentLoader } from 'components/ui/loader'; import styles from './form.scss'; import FormInputComponent from './FormInputComponent'; export default class Captcha extends FormInputComponent { static displayName = 'Captcha'; static propTypes = { skin: PropTypes.oneOf(skins), delay: PropTypes.number }; static defaultProps = { skin: SKIN_DARK, delay: 0 }; componentDidMount() { setTimeout(() => captcha.render(this.el, { skin: this.props.skin, onSetCode: this.setCode }), this.props.delay); } render() { const {skin} = this.props; return (