Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
react-todo-app
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ajmal.S
react-todo-app
Commits
a6b33e19
Commit
a6b33e19
authored
Feb 18, 2022
by
Ajmal.S
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
escape function added
parent
2802ecb8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
5 deletions
+22
-5
TodoHome.js
src/components/TodoHome.js
+18
-2
TodoItem.js
src/components/TodoItem.js
+3
-2
index.css
src/index.css
+1
-1
No files found.
src/components/TodoHome.js
View file @
a6b33e19
import
React
,
{
useState
}
from
"react"
;
import
React
,
{
useState
,
useCallback
,
useEffect
}
from
"react"
;
import
TodoForm
from
"./TodoForm"
;
import
TodoItem
from
"./TodoItem"
;
import
Header
from
"./Header"
;
import
CompletedTodos
from
"./CompletedTodos"
import
CompletedTodos
from
"./CompletedTodos"
;
function
TodoHome
()
{
...
...
@@ -50,6 +50,21 @@ function TodoHome() {
setEdit
(
false
);
};
const
escFunction
=
useCallback
((
event
)
=>
{
if
(
event
.
keyCode
===
27
)
{
console
.
log
(
"esc"
);
return
editTodo
();
}
});
useEffect
(()
=>
{
document
.
addEventListener
(
"keydown"
,
escFunction
);
return
()
=>
{
document
.
removeEventListener
(
"keydown"
,
escFunction
);
};
},
[
escFunction
]);
return
(
<>
<
Header
todos
=
{
todos
}
/
>
...
...
@@ -63,6 +78,7 @@ function TodoHome() {
editId
=
{
editId
}
inputValue
=
{
inputValue
}
setInputValue
=
{
setInputValue
}
escFunction
=
{
escFunction
}
/
>
<
TodoForm
onSubmit
=
{
addTodo
}
/
>
...
...
src/components/TodoItem.js
View file @
a6b33e19
import
React
from
"react"
;
import
{
CgCloseO
}
from
"react-icons/cg"
;
const
TodoItem
=
({
todos
,
completeTodo
,
...
...
@@ -9,7 +8,8 @@ const TodoItem = ({
editId
,
handleEditChange
,
inputValue
,
setInputValue
setInputValue
,
escFunction
})
=>
{
return
todos
.
map
((
todo
)
=>
(
<
div
className
=
"task"
>
...
...
@@ -20,6 +20,7 @@ const TodoItem = ({
type
=
"text"
value
=
{
inputValue
}
onChange
=
{(
e
)
=>
setInputValue
(
e
.
target
.
value
)}
escFunction
=
{(
e
)
=>
escFunction
(
e
.
key
)}
/
>
<
/div
>
<
button
className
=
"btn"
onClick
=
{()
=>
editTodo
(
todo
.
id
,
inputValue
)}
>
Save
<
/button
>
...
...
src/index.css
View file @
a6b33e19
...
...
@@ -36,7 +36,7 @@ body {
.form-control
input
{
width
:
100%
;
height
:
35px
;
margin
:
5px
;
margin
:
5px
2px
3px
3px
;
padding
:
3px
7px
;
font-size
:
17px
;
border
:
1px
solid
#ccc
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment