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
8e390a37
Commit
8e390a37
authored
Feb 23, 2022
by
Ajmal.S
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changes
parent
1e3f4dba
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
89 additions
and
46 deletions
+89
-46
App.js
src/App.js
+15
-6
CompletedTodos.js
src/components/CompletedTodos.js
+15
-20
TodoForm.js
src/components/TodoForm.js
+0
-2
TodoItem.js
src/components/TodoItem.js
+38
-12
Todos.js
src/components/Todos.js
+14
-0
index.css
src/index.css
+7
-6
No files found.
src/App.js
View file @
8e390a37
import
React
,
{
useState
,
useCallback
,
useEffect
}
from
"react"
;
import
React
,
{
useState
,
useCallback
,
useEffect
}
from
"react"
;
import
"./App.css"
;
import
"./App.css"
;
import
TodoForm
from
"./components/TodoForm"
;
import
TodoForm
from
"./components/TodoForm"
;
import
TodoItem
from
"./components/TodoItem"
;
import
Header
from
"./components/Header"
;
import
Header
from
"./components/Header"
;
import
CompletedTodos
from
"./components/CompletedTodos"
;
import
CompletedTodos
from
"./components/CompletedTodos"
;
import
Todos
from
'./components/Todos'
function
App
()
{
function
App
()
{
const
[
todos
,
setTodos
]
=
useState
([]);
const
[
todos
,
setTodos
]
=
useState
([]);
...
@@ -71,14 +71,23 @@ function App() {
...
@@ -71,14 +71,23 @@ function App() {
<
Header
todos
=
{
todos
}
/
>
<
Header
todos
=
{
todos
}
/
>
<
TodoItem
/>
<
Todos
todos
=
{
todos
}
completeTodo
=
{
completeTodo
}
removeTodo
=
{
removeTodo
}
editTodo
=
{
editTodo
}
handleEditChange
=
{
handleEditChange
}
editId
=
{
editId
}
inputValue
=
{
inputValue
}
setInputValue
=
{
setInputValue
}
escFunction
=
{
escFunction
}
/
>
<
TodoForm
onSubmit
=
{
addTodo
}
/
>
<
TodoForm
onSubmit
=
{
addTodo
}
/
>
<
CompletedTodos
todos
=
{
todos
}
completeTodo
=
{
completeTodo
}
<
h4
style
=
{{
textAlign
:
'center'
,
marginBottom
:
'10px'
}}
>
{
todos
.
filter
(
todoLen
=>
todoLen
.
status
===
true
).
length
>
0
?
'Completed Todos('
+
todos
.
filter
(
todoLen
=>
todoLen
.
status
===
true
).
length
+
')'
:
''
}
<
/h4
>
removeTodo
=
{
removeTodo
}
/
>
<
CompletedTodos
todos
=
{
todos
}
completeTodo
=
{
completeTodo
}
removeTodo
=
{
removeTodo
}
/
>
<
/div
>
<
/div
>
<
/
>
<
/
>
...
...
src/components/CompletedTodos.js
View file @
8e390a37
import
React
from
"react"
;
import
React
from
"react"
;
import
{
CgCloseO
}
from
"react-icons/cg"
;
import
{
CgCloseO
}
from
"react-icons/cg"
;
const
CompletedTodos
=
({
const
CompletedTodos
=
({
todos
,
completeTodo
,
removeTodo
,
lengthCheck
})
=>
{
todos
,
completeTodo
,
removeTodo
,
})
=>
{
return
todos
.
map
((
todo
)
=>
(
return
todos
.
map
((
todo
)
=>
(
<>
<>
{
todo
.
status
===
true
?
(
{
todo
.
status
===
true
?
(
<
div
className
=
"task-body-content"
>
<
div
className
=
"task-body-content"
>
<
div
style
=
{{
display
:
'flex'
}}
>
<
div
style
=
{{
display
:
'flex'
}}
>
<
div
style
=
{{
margin
:
'2px 4px 0px 0px'
}}
>
<
div
style
=
{{
margin
:
'2px 4px 0px 0px'
,
lineHeight
:
'1px'
}}
>
<
input
type
=
'checkbox'
<
input
type
=
'checkbox'
key
=
{
todo
.
id
}
key
=
{
todo
.
id
}
checked
=
{
todo
.
status
}
checked
=
{
todo
.
status
}
onClick
=
{()
=>
completeTodo
(
todo
.
id
)}
onClick
=
{()
=>
completeTodo
(
todo
.
id
)}
><
/input
>
><
/input
>
<
/div
>
<
div
className
=
{
`todo
${
todo
.
status
?
't-complete'
:
''
}
`
}
onClick
=
{()
=>
lengthCheck
()}
>
{
todo
.
text
}
<
/div
>
<
/div
>
<
div
>
<
CgCloseO
onClick
=
{()
=>
removeTodo
(
todo
.
id
)}
style
=
{{
fontSize
:
'18px'
,
cursor
:
'pointer'
,
color
:
'#ccc'
}}
/
>
<
/div
>
<
/div
>
<
div
>
{
todo
.
text
}
<
/div
>
<
/div
>
<
div
>
<
CgCloseO
onClick
=
{()
=>
removeTodo
(
todo
.
id
)}
style
=
{{
fontSize
:
'18px'
,
cursor
:
'pointer'
,
color
:
'#ccc'
}}
/
>
<
/div
>
<
/div
>
<
/div
>
)
:
''
}
)
:
''
}
<
/
>
<
/
>
));
));
};
};
...
...
src/components/TodoForm.js
View file @
8e390a37
...
@@ -32,8 +32,6 @@ function TodoForm(props) {
...
@@ -32,8 +32,6 @@ function TodoForm(props) {
<
button
className
=
"btn"
onClick
=
{
Submit
}
>
Submit
<
/button
>
<
button
className
=
"btn"
onClick
=
{
Submit
}
>
Submit
<
/button
>
<
/div
>
<
/div
>
<
/form
>
<
/form
>
<
h4
style
=
{{
textAlign
:
'center'
,
marginBottom
:
'10px'
}}
>
Completed
Todos
<
/h4
>
<
/
>
<
/
>
);
);
...
...
src/components/TodoItem.js
View file @
8e390a37
import
React
from
'react'
import
React
from
'react'
import
{
CgCloseO
}
from
"react-icons/cg"
;
import
{
CgCloseO
}
from
"react-icons/cg"
;
const
TodoItem
=
()
=>
{
const
TodoItem
=
(
{
todos
,
completeTodo
,
removeTodo
,
editTodo
,
handleEditChange
,
editId
,
inputValue
,
setInputValue
,
escFunction
}
)
=>
{
return
(
return
(
<
div
className
=
"task"
>
<
div
className
=
"task"
>
<
div
className
=
"task-body-content"
>
<
div
style
=
{{
display
:
'flex'
}}
>
{
/*** List Todos ***/
}
<
div
style
=
{{
margin
:
'2px 4px 0px 0px'
}}
>
<
input
type
=
'checkbox'
defaultChecked
=
{
false
}
><
/input
>
{
editId
!==
todos
.
id
?
(
todos
.
status
===
false
?
(
<
div
className
=
"task-body-content"
>
<
div
style
=
{{
display
:
'flex'
}}
>
<
div
style
=
{{
margin
:
'2px 4px 0px 0px'
,
lineHeight
:
'1px'
}}
>
<
input
type
=
'checkbox'
checked
=
{
todos
.
status
}
onChange
=
{()
=>
completeTodo
(
todos
.
id
)}
><
/input
>
<
/div
>
<
div
onClick
=
{()
=>
handleEditChange
(
todos
.
id
,
todos
.
text
)}
style
=
{{
cursor
:
'pointer'
}}
>
{
todos
.
text
}
<
/div
>
<
/div
>
<
div
>
<
CgCloseO
onClick
=
{()
=>
removeTodo
(
todos
.
id
)}
style
=
{{
fontSize
:
'18px'
,
cursor
:
'pointer'
,
color
:
'#ccc'
}}
/
>
<
/div
>
<
/div
>
)
:
''
)
:
(
<>
{
/*** Edit Todos ***/
}
<
div
className
=
"add-form"
>
<
div
className
=
'form-control'
>
<
input
type
=
"text"
value
=
{
inputValue
}
onChange
=
{(
e
)
=>
setInputValue
(
e
.
target
.
value
)}
escFunction
=
{(
e
)
=>
escFunction
(
e
.
key
)}
/
>
<
/div
>
<
button
className
=
"btn"
onClick
=
{()
=>
editTodo
(
todos
.
id
,
inputValue
)}
>
Save
<
/button
>
<
/div
>
<
/div
>
<
div
>
Item
1
<
/div
>
<
/
>
<
/div
>
)}
<
div
>
<
/div
>
<
CgCloseO
style
=
{{
fontSize
:
'18px'
,
cursor
:
'pointer'
,
color
:
'#ccc'
}}
/
>
<
/div
>
<
/div
>
<
/div
>
)
)
}
}
...
...
src/components/Todos.js
0 → 100644
View file @
8e390a37
import
React
from
'react'
import
TodoItem
from
'./TodoItem'
const
Todos
=
({
todos
,
removeTodo
,
completeTodo
,
editTodo
,
handleEditChange
,
inputValue
,
setInputValue
,
escFunction
,
editId
})
=>
{
return
(
<
div
>
{
todos
.
map
((
todos
)
=>
(
<
TodoItem
key
=
{
todos
.
id
}
todos
=
{
todos
}
removeTodo
=
{
removeTodo
}
completeTodo
=
{
completeTodo
}
editTodo
=
{
editTodo
}
handleEditChange
=
{
handleEditChange
}
inputValue
=
{
inputValue
}
setInputValue
=
{
setInputValue
}
escFunction
=
{
escFunction
}
editId
=
{
editId
}
/
>
))}
<
/div
>
)
}
export
default
Todos
src/index.css
View file @
8e390a37
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
body
{
body
{
font-family
:
sans-serif
;
font-family
:
sans-serif
;
background-color
:
#cccccc24
;
background-color
:
#cccccc24
;
font-size
:
1
4
px
;
font-size
:
1
6
px
;
}
}
.btn
{
.btn
{
...
@@ -29,12 +29,12 @@ body {
...
@@ -29,12 +29,12 @@ body {
.add-form
{
.add-form
{
display
:
flex
;
display
:
flex
;
justify-content
:
space-
around
;
justify-content
:
space-
between
;
margin
:
10px
0
px
;
margin
:
10px
10px
10px
5
px
;
}
}
.form-control
input
{
.form-control
input
{
width
:
100%
;
width
:
20rem
;
height
:
35px
;
height
:
35px
;
margin
:
5px
2px
3px
3px
;
margin
:
5px
2px
3px
3px
;
padding
:
3px
7px
;
padding
:
3px
7px
;
...
@@ -48,7 +48,7 @@ footer {
...
@@ -48,7 +48,7 @@ footer {
}
}
.task-main
{
.task-main
{
width
:
2
5
em
;
width
:
2
6r
em
;
margin
:
15rem
auto
;
margin
:
15rem
auto
;
border-bottom
:
1px
solid
rgba
(
0
,
0
,
0
,
.125
);
border-bottom
:
1px
solid
rgba
(
0
,
0
,
0
,
.125
);
border-radius
:
4px
;
border-radius
:
4px
;
...
@@ -78,5 +78,5 @@ footer {
...
@@ -78,5 +78,5 @@ footer {
}
}
.t-complete
{
.t-complete
{
background-color
:
green
;
text-decoration
:
line-through
;
}
}
\ No newline at end of file
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