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
62561d01
Commit
62561d01
authored
Feb 25, 2022
by
Ajmal.S
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
edit and corrections added
parent
34c64b06
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
16 deletions
+26
-16
App.js
src/App.js
+4
-1
TodoForm.js
src/components/TodoForm.js
+0
-5
TodoItem.js
src/components/TodoItem.js
+18
-6
index.css
src/index.css
+4
-4
No files found.
src/App.js
View file @
62561d01
...
@@ -41,6 +41,9 @@ function App() {
...
@@ -41,6 +41,9 @@ function App() {
console
.
log
(
id
,
text
)
console
.
log
(
id
,
text
)
}
}
const
onClick
=
(
id
,
value
)
=>
{
console
.
log
(
id
,
value
)
}
// const removeTodo = (id) => {
// const removeTodo = (id) => {
// const removedArr = [...todos].filter((todoId) => todoId.id !== id);
// const removedArr = [...todos].filter((todoId) => todoId.id !== id);
...
@@ -90,7 +93,7 @@ function App() {
...
@@ -90,7 +93,7 @@ function App() {
<
Header
count
=
{
todoData
.
length
}
/
>
<
Header
count
=
{
todoData
.
length
}
/
>
{
todoData
.
map
((
todos
)
=>
(
{
todoData
.
map
((
todos
)
=>
(
<
TodoItem
key
=
{
todos
.
id
}
todoId
=
{
todos
.
id
}
complete
=
{
todos
.
isComplete
}
onEdit
=
{
onEdit
}
onComplete
=
{
onComplete
}
>
{
todos
.
text
}
<
/TodoItem
>
<
TodoItem
key
=
{
todos
.
id
}
id
=
{
todos
.
id
}
complete
=
{
todos
.
isComplete
}
onEdit
=
{
onEdit
}
edit
=
{
todos
.
isEdit
}
onComplete
=
{
onComplete
}
onClick
=
{
onClick
}
>
{
todos
.
text
}
<
/TodoItem
>
))}
))}
{
/* <Todos todos={todos}
{
/* <Todos todos={todos}
...
...
src/components/TodoForm.js
View file @
62561d01
import
PropTypes
from
'prop-types'
;
import
React
,
{
useState
}
from
'react'
;
import
React
,
{
useState
}
from
'react'
;
function
TodoForm
()
{
function
TodoForm
()
{
...
@@ -48,7 +47,3 @@ function TodoForm() {
...
@@ -48,7 +47,3 @@ function TodoForm() {
}
}
export
default
TodoForm
;
export
default
TodoForm
;
TodoForm
.
propTypes
=
{
onSubmit
:
PropTypes
.
func
,
};
src/components/TodoItem.js
View file @
62561d01
import
React
from
'react'
import
React
from
'react'
const
TodoItem
=
({
todoId
,
children
,
complete
,
onEdit
,
onComplete
})
=>
{
const
TodoItem
=
({
id
,
children
,
edit
,
complete
,
onEdit
,
onComplete
,
onClick
})
=>
{
const
className
=
`todos
${
complete
?
't-complete'
:
''
}
`
const
className
=
`todos
${
complete
?
't-complete'
:
''
}
`
return
(
return
(
<
div
className
=
"task"
>
<
div
className
=
"task"
>
<
div
className
=
"task-body-content"
>
<
div
className
=
"task-body-content"
>
<
div
style
=
{{
display
:
'flex'
}}
>
{
!
edit
?
(
<
input
type
=
'checkbox'
defaultChecked
=
{
complete
}
onChange
=
{()
=>
onComplete
(
todoId
,
complete
)}
><
/input
>
<
div
style
=
{{
display
:
'flex'
}}
>
<
span
style
=
{{
cursor
:
'pointer'
}}
className
=
{
className
}
onClick
=
{()
=>
onEdit
(
todoId
,
children
)}
>
{
children
}
<
/span
>
<
input
type
=
'checkbox'
checked
=
{
complete
}
onChange
=
{(
e
)
=>
onComplete
(
id
,
e
.
target
.
checked
)}
><
/input
>
<
/div
>
<
span
style
=
{{
cursor
:
'pointer'
}}
className
=
{
className
}
onClick
=
{()
=>
onClick
(
id
,
children
)}
>
{
children
}
<
/span
>
<
/div
>
)
:
<
form
>
<
div
className
=
'add-form'
>
<
div
className
=
'form-control'
>
<
input
type
=
'input'
defaultValue
=
{
children
}
onChange
=
{(
e
)
=>
onEdit
(
id
,
e
.
target
.
value
)}
/
>
<
/div
>
<
button
type
=
'button'
className
=
'btn'
>
Save
<
/button
>
<
/div
>
<
/form
>
}
<
/div
>
<
/div
>
<
/div
>
<
/div
>
)
)
}
}
...
...
src/index.css
View file @
62561d01
...
@@ -11,7 +11,7 @@ body {
...
@@ -11,7 +11,7 @@ body {
color
:
#000
;
color
:
#000
;
border
:
1px
solid
#ccc
;
border
:
1px
solid
#ccc
;
padding
:
10px
12px
;
padding
:
10px
12px
;
margin
:
5px
;
margin
:
5px
12px
;
border-radius
:
5px
;
border-radius
:
5px
;
cursor
:
pointer
;
cursor
:
pointer
;
text-decoration
:
none
;
text-decoration
:
none
;
...
@@ -23,7 +23,7 @@ body {
...
@@ -23,7 +23,7 @@ body {
.add-form
{
.add-form
{
display
:
flex
;
display
:
flex
;
justify-content
:
space-between
;
justify-content
:
space-between
;
margin
:
3
0px
10px
10px
5px
;
margin
:
1
0px
10px
10px
5px
;
}
}
.form-control
input
{
.form-control
input
{
...
@@ -51,14 +51,14 @@ body {
...
@@ -51,14 +51,14 @@ body {
padding
:
10px
;
padding
:
10px
;
text-align
:
center
;
text-align
:
center
;
box-shadow
:
1px
3px
1px
#18181812
;
box-shadow
:
1px
3px
1px
#18181812
;
margin-bottom
:
1
5px
;
margin-bottom
:
5px
;
}
}
.task-body-content
{
.task-body-content
{
display
:
flex
;
display
:
flex
;
justify-content
:
space-between
;
justify-content
:
space-between
;
border-bottom
:
1px
solid
#ccc
;
border-bottom
:
1px
solid
#ccc
;
padding
:
5
px
6px
;
padding
:
4
px
6px
;
}
}
.t-complete
{
.t-complete
{
...
...
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