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
34c64b06
Commit
34c64b06
authored
Feb 25, 2022
by
Ajmal.S
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
header and todoform corrections
parent
b320fbb1
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
35 additions
and
32 deletions
+35
-32
App.js
src/App.js
+12
-18
Header.js
src/components/Header.js
+1
-1
TodoForm.js
src/components/TodoForm.js
+15
-5
TodoItem.js
src/components/TodoItem.js
+3
-3
index.css
src/index.css
+4
-5
No files found.
src/App.js
View file @
34c64b06
...
...
@@ -29,24 +29,18 @@ function App() {
}
]
// const [todos, setTodos] = useState([]);
// const [editId, setEdit] = useState(false);
// const [inputValue, setInputValue] = useState("");
// const handleEditChange = (id, text) => {
// setEdit(id);
// setInputValue(text);
// };
const
onEdit
=
(
id
,
text
)
=>
{
console
.
log
(
id
,
text
)
};
const
onComplete
=
(
id
,
text
)
=>
{
console
.
log
(
id
,
text
)
}
// const addTodo = (todo) => {
// if (!todo.text || /^\s*$/.test(todo.text)) {
// alert('Please add a Todo')
// return;
// }
// const newTodos = [todo, ...todoData];
// setTodos(newTodos);
// console.log(newTodos);
// };
// const removeTodo = (id) => {
// const removedArr = [...todos].filter((todoId) => todoId.id !== id);
...
...
@@ -93,11 +87,11 @@ function App() {
<>
<
div
className
=
'task-main'
>
<
Header
count
=
{
todoData
}
/
>
<
Header
count
=
{
todoData
.
length
}
/
>
{
/* {
todoData.map((todos) => (
<TodoItem key={todos.id}
children={todos.text} complete={todos.isComplete}/
>
))}
*/
}
{
todoData
.
map
((
todos
)
=>
(
<
TodoItem
key
=
{
todos
.
id
}
todoId
=
{
todos
.
id
}
complete
=
{
todos
.
isComplete
}
onEdit
=
{
onEdit
}
onComplete
=
{
onComplete
}
>
{
todos
.
text
}
<
/TodoItem
>
))}
{
/* <Todos todos={todos}
completeTodo={completeTodo}
...
...
src/components/Header.js
View file @
34c64b06
...
...
@@ -3,7 +3,7 @@ import React from 'react';
const
Header
=
({
count
})
=>
{
return
(
<
div
className
=
'App'
>
<
div
className
=
'task-head'
><
b
>
You
have
{
count
.
length
>
0
?
count
.
length
:
'No'
}
{
count
.
length
<=
1
?
'Todo'
:
'Todos'
}
<
/b></
div
>
<
div
className
=
'task-head'
><
b
>
You
have
{
count
>
0
?
count
:
'No'
}
{
count
<=
1
?
'Todo'
:
'Todos'
}
<
/b></
div
>
<
/div
>
)
}
...
...
src/components/TodoForm.js
View file @
34c64b06
import
PropTypes
from
'prop-types'
;
import
React
,
{
useState
}
from
'react'
;
function
TodoForm
(
props
)
{
function
TodoForm
()
{
const
[
input
,
setInput
]
=
useState
(
''
);
const
[
todos
,
setTodos
]
=
useState
([]);
const
onChange
=
(
e
)
=>
{
setInput
(
e
.
target
.
value
);
};
const
addTodo
=
(
todo
)
=>
{
if
(
!
todo
.
text
||
/^
\s
*$/
.
test
(
todo
.
text
))
{
alert
(
'Please add a Todo'
)
return
;
}
const
newTodos
=
[
todo
,
...
todos
];
setTodos
(
newTodos
);
console
.
log
(
'newTodos =>'
,
newTodos
);
};
const
Submit
=
(
e
)
=>
{
e
.
preventDefault
();
props
.
onSubmit
({
addTodo
({
id
:
Math
.
floor
(
Math
.
random
()
*
10000
),
text
:
input
,
isEdit
:
false
,
...
...
@@ -29,9 +41,7 @@ function TodoForm(props) {
onChange
=
{
onChange
}
/
>
<
/div
>
<
button
className
=
'btn'
onClick
=
{
Submit
}
>
Submit
<
/button
>
<
button
className
=
'btn'
>
Submit
<
/button
>
<
/div
>
<
/form
>
);
...
...
src/components/TodoItem.js
View file @
34c64b06
import
React
from
'react'
const
TodoItem
=
({
children
,
c
omplete
})
=>
{
const
TodoItem
=
({
todoId
,
children
,
complete
,
onEdit
,
onC
omplete
})
=>
{
const
className
=
`todos
${
complete
?
't-complete'
:
''
}
`
...
...
@@ -8,8 +8,8 @@ const TodoItem = ({ children, complete }) => {
<
div
className
=
"task"
>
<
div
className
=
"task-body-content"
>
<
div
style
=
{{
display
:
'flex'
}}
>
<
input
type
=
'checkbox'
defaultChecked
=
{
complete
}
><
/input
>
<
span
style
=
{{
cursor
:
'pointer'
}}
className
=
{
className
}
>
{
children
}
<
/span
>
<
input
type
=
'checkbox'
defaultChecked
=
{
complete
}
onChange
=
{()
=>
onComplete
(
todoId
,
complete
)}
><
/input
>
<
span
style
=
{{
cursor
:
'pointer'
}}
className
=
{
className
}
onClick
=
{()
=>
onEdit
(
todoId
,
children
)}
>
{
children
}
<
/span
>
<
/div
>
<
/div
>
<
/div
>
...
...
src/index.css
View file @
34c64b06
...
...
@@ -23,7 +23,7 @@ body {
.add-form
{
display
:
flex
;
justify-content
:
space-between
;
margin
:
1
0px
10px
10px
5px
;
margin
:
3
0px
10px
10px
5px
;
}
.form-control
input
{
...
...
@@ -58,11 +58,9 @@ body {
display
:
flex
;
justify-content
:
space-between
;
border-bottom
:
1px
solid
#ccc
;
padding
:
5px
12px
;
}
.task-body-content
:last-child
{
border
:
none
;
padding
:
5px
6px
;
}
.t-complete
{
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