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
b320fbb1
Commit
b320fbb1
authored
Feb 24, 2022
by
Ajmal.S
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
corrections
parent
817fbd56
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
28 additions
and
43 deletions
+28
-43
App.js
src/App.js
+6
-8
Header.js
src/components/Header.js
+2
-2
TodoForm.js
src/components/TodoForm.js
+3
-2
TodoItem.js
src/components/TodoItem.js
+7
-8
index.css
src/index.css
+10
-23
No files found.
src/App.js
View file @
b320fbb1
...
...
@@ -43,7 +43,7 @@ function App() {
// alert('Please add a Todo')
// return;
// }
// const newTodos = [todo, ...todo
s
];
// const newTodos = [todo, ...todo
Data
];
// setTodos(newTodos);
// console.log(newTodos);
// };
...
...
@@ -93,13 +93,11 @@ function App() {
<>
<
div
className
=
'task-main'
>
<
Header
todos
=
{
todoData
}
/
>
<
Header
count
=
{
todoData
}
/
>
{
todoData
.
map
((
todos
)
=>
(
<
TodoItem
key
=
{
todos
.
id
}
todos
=
{
todos
}
editMode
=
{((
e
)
=>
console
.
log
(
e
.
target
.
value
))}
/
>
))}
{
/* {todoData.map((todos) => (
<TodoItem key={todos.id} children={todos.text} complete={todos.isComplete}/>
))} */
}
{
/* <Todos todos={todos}
completeTodo={completeTodo}
...
...
@@ -111,7 +109,7 @@ function App() {
setInputValue={setInputValue}
escFunction={escFunction} /> */
}
{
/* <TodoForm onSubmit={addTodo} /> */
}
<
TodoForm
/>
{
/* <h4 style={{ textAlign: 'center', marginBottom: '10px' }}>{todos.filter(todoLen => todoLen.status === true).length > 0 ? 'Completed Todos(' + todos.filter(todoLen => todoLen.status === true).length + ')' : ''}</h4>
...
...
src/components/Header.js
View file @
b320fbb1
import
React
from
'react'
;
const
Header
=
({
todos
})
=>
{
const
Header
=
({
count
})
=>
{
return
(
<
div
className
=
'App'
>
<
div
className
=
'task-head'
><
b
>
You
have
{
todos
.
length
>
0
?
todos
.
length
:
'No'
}
Todos
<
/b></
div
>
<
div
className
=
'task-head'
><
b
>
You
have
{
count
.
length
>
0
?
count
.
length
:
'No'
}
{
count
.
length
<=
1
?
'Todo'
:
'Todos'
}
<
/b></
div
>
<
/div
>
)
}
...
...
src/components/TodoForm.js
View file @
b320fbb1
...
...
@@ -13,10 +13,12 @@ function TodoForm(props) {
props
.
onSubmit
({
id
:
Math
.
floor
(
Math
.
random
()
*
10000
),
text
:
input
,
status
:
false
,
isEdit
:
false
,
isComplete
:
false
});
setInput
(
''
);
};
return
(
<
form
onSubmit
=
{
Submit
}
>
<
div
className
=
'add-form'
>
...
...
@@ -25,7 +27,6 @@ function TodoForm(props) {
placeholder
=
'Enter Item'
value
=
{
input
}
onChange
=
{
onChange
}
name
=
'text'
/
>
<
/div
>
<
button
className
=
'btn'
onClick
=
{
Submit
}
>
...
...
src/components/TodoItem.js
View file @
b320fbb1
import
React
from
'react'
const
TodoItem
=
({
todos
,
editMod
e
})
=>
{
const
TodoItem
=
({
children
,
complet
e
})
=>
{
const
className
=
`todos
${
todos
.
isC
omplete
?
't-complete'
:
''
}
`
const
className
=
`todos
${
c
omplete
?
't-complete'
:
''
}
`
return
(
<
div
className
=
"task"
>
{
todos
.
isEdit
?
<
input
type
=
'text'
defaultValue
=
{
todos
.
text
}
onChange
=
{
editMode
}
><
/input>
:
<
div
>
<
input
type
=
'checkbox'
defaultChecked
=
{
todos
.
isComplete
}
><
/input
>
<
span
className
=
{
className
}
>
{
todos
.
text
}
<
/span
>
<
div
className
=
"task-body-content"
>
<
div
style
=
{{
display
:
'flex'
}}
>
<
input
type
=
'checkbox'
defaultChecked
=
{
complete
}
><
/input
>
<
span
style
=
{{
cursor
:
'pointer'
}}
className
=
{
className
}
>
{
children
}
<
/span
>
<
/div
>
}
<
/div
>
<
/div
>
)
}
...
...
src/index.css
View file @
b320fbb1
*
{
box-sizing
:
border-box
;
margin
:
0
;
padding
:
0
;
}
body
{
font-family
:
sans-serif
;
background-color
:
#cccccc24
;
font-size
:
16px
;
background-color
:
#fff
;
font-size
:
15px
;
box-sizing
:
border-box
;
}
.btn
{
display
:
inline-block
;
background
:
#000
;
background-color
:
#fff
;
color
:
#000
;
border
:
1px
solid
#ccc
;
...
...
@@ -22,7 +16,6 @@ body {
cursor
:
pointer
;
text-decoration
:
none
;
font-size
:
15px
;
font-family
:
inherit
;
height
:
35px
;
line-height
:
0px
;
}
...
...
@@ -34,19 +27,15 @@ body {
}
.form-control
input
{
width
:
20
rem
;
height
:
35
px
;
width
:
18
rem
;
height
:
26
px
;
margin
:
5px
2px
3px
3px
;
padding
:
3px
7px
;
font-size
:
1
7
px
;
font-size
:
1
5
px
;
border
:
1px
solid
#ccc
;
border-radius
:
4px
;
}
footer
{
margin-top
:
30px
;
}
.task-main
{
width
:
26rem
;
margin
:
15rem
auto
;
...
...
@@ -65,18 +54,15 @@ footer {
margin-bottom
:
15px
;
}
.task-body
{
height
:
30px
;
padding
:
0px
18px
!important
;
}
.task-body-content
{
display
:
flex
;
justify-content
:
space-between
;
border-bottom
:
1px
solid
#ccc
;
padding
:
5px
12px
;
}
.task-body-content
:last-child
{
border
:
none
;
}
.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