Commit 62561d01 by Ajmal.S

edit and corrections added

parent 34c64b06
...@@ -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}
......
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,
};
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>
) )
} }
......
...@@ -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: 30px 10px 10px 5px; margin: 10px 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: 15px; 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: 5px 6px; padding: 4px 6px;
} }
.t-complete { .t-complete {
......
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