Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
editoria
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Yannis Barlas
editoria
Commits
a71e56e9
Commit
a71e56e9
authored
7 years ago
by
john
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/components/BookBuilder/AddBook.jsx
+43
-6
43 additions, 6 deletions
app/components/BookBuilder/AddBook.jsx
app/components/BookBuilder/BookList.jsx
+1
-8
1 addition, 8 deletions
app/components/BookBuilder/BookList.jsx
with
44 additions
and
14 deletions
app/components/BookBuilder/AddBook.jsx
+
43
−
6
View file @
a71e56e9
...
@@ -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
()
...
...
This diff is collapsed.
Click to expand it.
app/components/BookBuilder/BookList.jsx
+
1
−
8
View file @
a71e56e9
...
@@ -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
()
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment