Skip to content
Snippets Groups Projects
Commit a71e56e9 authored by john's avatar john
Browse files

make new book modal focus on open, capture new title and handle empty input

parent a6027cc5
No related branches found
No related tags found
No related merge requests found
...@@ -6,25 +6,49 @@ export default class AddBook extends React.Component { ...@@ -6,25 +6,49 @@ export default class AddBook extends React.Component {
constructor (props) { constructor (props) {
super(props) super(props)
this.handleKeyOnInput = this.handleKeyOnInput.bind(this)
this.onInputChange = this.onInputChange.bind(this)
this.onCreate = this.onCreate.bind(this) this.onCreate = this.onCreate.bind(this)
this.state = { error: false }
}
componentDidUpdate () {
const { show } = this.props
if (show) this.inputRef.focus()
} }
// TODO -- focus input handleKeyOnInput (event) {
componentDidMount () { if (event.charCode !== 13) return
// console.log(this.inputRef) this.onCreate()
// this.inputRef.focus()
} }
onCreate () { onCreate () {
const { create } = this.props const { create } = this.props
create('haha')
const input = this.inputRef
const newTitle = input.value.trim()
if (newTitle.length === 0) return this.setState({ error: true })
create(newTitle)
}
onInputChange () {
const { error } = this.state
if (!error) return
this.setState({ error: false })
} }
renderBody () { renderBody () {
const error = this.renderError()
return ( return (
<span> <span>
{ error }
<input <input
name='name' name='title'
onChange={this.onInputChange}
onKeyPress={this.handleKeyOnInput}
placeholder='Untitled' placeholder='Untitled'
ref={(item) => { this.inputRef = item }} ref={(item) => { this.inputRef = item }}
type='text' type='text'
...@@ -33,6 +57,19 @@ export default class AddBook extends React.Component { ...@@ -33,6 +57,19 @@ export default class AddBook extends React.Component {
) )
} }
renderError () {
const { error } = this.state
const el = (
<div>
New book title cannot be empty
</div>
)
const res = error ? el : null
return res
}
render () { render () {
const { container, show, toggle } = this.props const { container, show, toggle } = this.props
const body = this.renderBody() const body = this.renderBody()
......
...@@ -24,16 +24,9 @@ export class BookList extends React.Component { ...@@ -24,16 +24,9 @@ export class BookList extends React.Component {
createCollection = newTitle => { createCollection = newTitle => {
const { createCollection } = this.props.actions const { createCollection } = this.props.actions
const collection = { title: newTitle || 'Untitled' }
// TODO -- make it dynamic with refs
const collection = {
title: newTitle || 'Untitled'
}
createCollection(collection) createCollection(collection)
// TODO: allow the title to be edited
// TODO: handle errors
this.toggleModal() this.toggleModal()
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment