Commit b320fbb1 by Ajmal.S

corrections

parent 817fbd56
...@@ -43,7 +43,7 @@ function App() { ...@@ -43,7 +43,7 @@ function App() {
// alert('Please add a Todo') // alert('Please add a Todo')
// return; // return;
// } // }
// const newTodos = [todo, ...todos]; // const newTodos = [todo, ...todoData];
// setTodos(newTodos); // setTodos(newTodos);
// console.log(newTodos); // console.log(newTodos);
// }; // };
...@@ -93,13 +93,11 @@ function App() { ...@@ -93,13 +93,11 @@ function App() {
<> <>
<div className='task-main'> <div className='task-main'>
<Header todos={todoData} /> <Header count={todoData} />
{todoData.map((todos) => ( {/* {todoData.map((todos) => (
<TodoItem key={todos.id} <TodoItem key={todos.id} children={todos.text} complete={todos.isComplete}/>
todos={todos} ))} */}
editMode={((e) => console.log(e.target.value))} />
))}
{/* <Todos todos={todos} {/* <Todos todos={todos}
completeTodo={completeTodo} completeTodo={completeTodo}
...@@ -111,7 +109,7 @@ function App() { ...@@ -111,7 +109,7 @@ function App() {
setInputValue={setInputValue} setInputValue={setInputValue}
escFunction={escFunction} /> */} 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> {/* <h4 style={{ textAlign: 'center', marginBottom: '10px' }}>{todos.filter(todoLen => todoLen.status === true).length > 0 ? 'Completed Todos(' + todos.filter(todoLen => todoLen.status === true).length + ')' : ''}</h4>
......
import React from 'react'; import React from 'react';
const Header = ({ todos }) => { const Header = ({ count }) => {
return ( return (
<div className='App'> <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> </div>
) )
} }
......
...@@ -13,10 +13,12 @@ function TodoForm(props) { ...@@ -13,10 +13,12 @@ function TodoForm(props) {
props.onSubmit({ props.onSubmit({
id: Math.floor(Math.random() * 10000), id: Math.floor(Math.random() * 10000),
text: input, text: input,
status: false, isEdit: false,
isComplete: false
}); });
setInput(''); setInput('');
}; };
return ( return (
<form onSubmit={Submit}> <form onSubmit={Submit}>
<div className='add-form'> <div className='add-form'>
...@@ -25,7 +27,6 @@ function TodoForm(props) { ...@@ -25,7 +27,6 @@ function TodoForm(props) {
placeholder='Enter Item' placeholder='Enter Item'
value={input} value={input}
onChange={onChange} onChange={onChange}
name='text'
/> />
</div> </div>
<button className='btn' onClick={Submit}> <button className='btn' onClick={Submit}>
......
import React from 'react' import React from 'react'
const TodoItem = ({ todos, editMode }) => { const TodoItem = ({ children, complete }) => {
const className = `todos ${todos.isComplete ? 't-complete' : ''}` const className = `todos ${complete ? 't-complete' : ''}`
return ( return (
<div className="task"> <div className="task">
{todos.isEdit ? <div className="task-body-content">
<input type='text' defaultValue={todos.text} onChange={editMode}></input> : <div style={{ display: 'flex' }}>
<div> <input type='checkbox' defaultChecked={complete}></input>
<input type='checkbox' defaultChecked={todos.isComplete}></input> <span style={{ cursor: 'pointer' }} className={className}>{children}</span>
<span className={className}>{todos.text}</span>
</div> </div>
} </div>
</div > </div >
) )
} }
......
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body { body {
font-family: sans-serif; font-family: sans-serif;
background-color: #cccccc24; background-color: #fff;
font-size: 16px; font-size: 15px;
box-sizing: border-box;
} }
.btn { .btn {
display: inline-block; display: inline-block;
background: #000;
background-color: #fff; background-color: #fff;
color: #000; color: #000;
border: 1px solid #ccc; border: 1px solid #ccc;
...@@ -22,7 +16,6 @@ body { ...@@ -22,7 +16,6 @@ body {
cursor: pointer; cursor: pointer;
text-decoration: none; text-decoration: none;
font-size: 15px; font-size: 15px;
font-family: inherit;
height: 35px; height: 35px;
line-height: 0px; line-height: 0px;
} }
...@@ -34,19 +27,15 @@ body { ...@@ -34,19 +27,15 @@ body {
} }
.form-control input { .form-control input {
width: 20rem; width: 18rem;
height: 35px; height: 26px;
margin: 5px 2px 3px 3px; margin: 5px 2px 3px 3px;
padding: 3px 7px; padding: 3px 7px;
font-size: 17px; font-size: 15px;
border: 1px solid #ccc; border: 1px solid #ccc;
border-radius: 4px; border-radius: 4px;
} }
footer {
margin-top: 30px;
}
.task-main { .task-main {
width: 26rem; width: 26rem;
margin: 15rem auto; margin: 15rem auto;
...@@ -65,18 +54,15 @@ footer { ...@@ -65,18 +54,15 @@ footer {
margin-bottom: 15px; margin-bottom: 15px;
} }
.task-body {
height: 30px;
padding: 0px 18px !important;
}
.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: 5px 12px; padding: 5px 12px;
} }
.task-body-content:last-child{
border: none;
}
.t-complete { .t-complete {
text-decoration: line-through; text-decoration: line-through;
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment