// @flow import * as React from 'react'; import { FormField, Form } from 'component/common/form'; import { Modal } from 'modal/modal'; import Button from 'component/button'; import HelpLink from 'component/common/help-link'; import Card from 'component/common/card'; type Props = { closeModal: () => void, error: ?string, rewardIsPending: boolean, setReferrer: (string, boolean) => void, referrerSetPending: boolean, referrerSetError?: string, resetReferrerError: () => void, }; type State = { referrer: string, }; class ModalSetReferrer extends React.PureComponent { constructor() { super(); this.state = { referrer: '', }; (this: any).handleSubmit = this.handleSubmit.bind(this); (this: any).handleTextChange = this.handleTextChange.bind(this); } handleSubmit() { const { referrer } = this.state; const { setReferrer } = this.props; setReferrer(referrer, true); } handleTextChange(e: SyntheticInputEvent<*>) { const { referrerSetError, resetReferrerError } = this.props; this.setState({ referrer: e.target.value }); if (referrerSetError) { resetReferrerError(); } } render() { const { closeModal, rewardIsPending, referrerSetError, referrerSetPending } = this.props; const { referrer } = this.state; return ( {__('Did someone invite you to use lbry.tv? Tell us who and you both get a reward!')} } actions={
} label={__('Code or channel')} placeholder="0123abc" value={referrer} onChange={this.handleTextChange} error={!referrerSetPending && referrerSetError} />
} />
); } } export default ModalSetReferrer;