import React from 'react' import PropTypes from 'prop-types' import { connect } from 'react-redux' import { defineMessages, injectIntl } from 'react-intl' import { createAlbum } from '../actions/albums' import { closeModal } from '../actions/modal' import Button from '../components/button' import Input from '../components/input' import Form from '../components/form' import Text from '../components/text' import Divider from '../components/divider' import Textarea from '../components/textarea' class AlbumCreate extends React.PureComponent { state = { titleValue: '', descriptionValue: '', checked: false, } onChangeTitle = (titleValue) => { this.setState({ titleValue }) } onChangeDescription = (descriptionValue) => { this.setState({ descriptionValue }) } handleOnSubmit = () => { const { titleValue, descriptionValue, checked } = this.state this.props.onSubmit(titleValue, descriptionValue, checked) } onTogglePrivacy = (checked) => { this.setState({ checked }) } render() { const { titleValue, descriptionValue, } = this.state const isDisabled = !titleValue console.log("HELLO") return (