Commit 58a4b846 by Ajmal.S

UI,Complete Checkbox and Edit corrections added

parent 5d740fdc
...@@ -2,9 +2,9 @@ import React from "react"; ...@@ -2,9 +2,9 @@ import React from "react";
import "./App.css"; import "./App.css";
import TodoList from "./components/TodoList"; import TodoList from "./components/TodoList";
function App(todos={todos}) { function App() {
return ( return (
<div className='task'> <div className='task-main'>
<TodoList /> <TodoList />
</div> </div>
); );
......
import React from "react";
import { CgCloseO } from "react-icons/cg";
const Todo = ({
todos,
completeTodo,
removeTodo,
}) => {
return todos.map((todo) => (
<>
{todo.status === true ? (
<div className="task-body-content">
<div style={{ display: 'flex' }}>
<div style={{ margin: '2px 4px 0px 0px' }}>
<input type='checkbox'
key={todo.id}
checked={todo.status}
onClick={() => completeTodo(todo.id)}
></input>
</div>
<div>{todo.text}</div>
</div>
<div>
<CgCloseO onClick={() => removeTodo(todo.id)} style={{ fontSize: '18px', cursor: 'pointer', color: '#ccc' }} />
</div>
</div>
) : '' }
</>
));
};
export default Todo;
import React from 'react'; import React from 'react';
import { FcSurvey } from "react-icons/fc";
const Header = ({ todos }) => { const Header = ({ todos }) => {
return ( return (
<div className='App'> <div className='App'>
<FcSurvey style={{ fontSize: '3em' }} /> <div className='task-head'><b>You have {todos.length > 0 ? todos.length : 'No'} Todos</b></div>
<div className='task-head'>You have {todos.length > 0 ? todos.length : 'No'} Todos</div>
</div> </div>
) )
} }
......
import React from "react"; import React from "react";
import { FaRegTrashAlt, FaPen } from "react-icons/fa"; import { CgCloseO } from "react-icons/cg";
const Todo = ({ const CompletedTodos = ({
todos, todos,
completeTodo, completeTodo,
removeTodo, removeTodo,
...@@ -22,29 +22,33 @@ const Todo = ({ ...@@ -22,29 +22,33 @@ const Todo = ({
onChange={(e) => setInputValue(e.target.value)} onChange={(e) => setInputValue(e.target.value)}
/> />
</div> </div>
<button className="btn" onClick={() => editTodo(todo.id, inputValue)}>Edit</button> <button className="btn" onClick={() => editTodo(todo.id, inputValue)}>Save</button>
</div> </div>
) : ( ) : (
<> <>
<div className="task-body-content"> {/* New Todos Section */}
<div {todo.status === false ? (
key={todo.id} < div className="task-body-content">
className={todo.isComplete ? "t-complete" : ""} <div style={{ display: 'flex' }}>
onClick={() => completeTodo(todo.id)} <div style={{ margin: '2px 4px 0px 0px' }}>
style={{ cursor: 'pointer' }} <input type='checkbox'
> key={todo.id}
{todo.text} checked={todo.status}
onClick={() => completeTodo(todo.id)}
></input>
</div>
<div onClick={() => handleEditChange(todo.id, todo.text)} style={{ cursor: 'pointer' }}>{todo.text}</div>
</div>
<div>
<CgCloseO onClick={() => removeTodo(todo.id)} style={{ fontSize: '18px', cursor: 'pointer', color: '#ccc' }} />
</div>
</div> </div>
<div> ) : ''}
<FaPen onClick={() => handleEditChange(todo.id, todo.text)} style={{ cursor: 'pointer', margin: '0px 7px 0px 7px', fontSize: '12px' }} />
<FaRegTrashAlt onClick={() => removeTodo(todo.id)} style={{ color: 'red', cursor: 'pointer' }} />
</div>
</div>
</> </>
)} )}
</div> </div >
)); ));
}; };
export default Todo; export default CompletedTodos;
import React, { useState } from "react"; import React, { useState } from "react";
function TodoForm(props) { function TodoForm(
props,
) {
const [input, setInput] = useState(""); const [input, setInput] = useState("");
const onChange = (e) => { const onChange = (e) => {
...@@ -13,26 +16,27 @@ function TodoForm(props) { ...@@ -13,26 +16,27 @@ function TodoForm(props) {
props.onSubmit({ props.onSubmit({
id: Math.floor(Math.random() * 10000), id: Math.floor(Math.random() * 10000),
text: input, text: input,
complete: false status: false
}); });
setInput(""); setInput("");
}; };
return ( return (
<form onSubmit={Submit}> <>
<div className="add-form"> <form onSubmit={Submit}>
<div className='form-control'> <div className="add-form">
<input <div className='form-control'>
placeholder="Todo..." <input
value={input} placeholder="Enter Item"
onChange={onChange} value={input}
name="text" onChange={onChange}
/> name="text" />
</div>
<button className="btn" onClick={Submit}>Submit</button>
</div> </div>
<button className="btn" onClick={Submit}>Add</button> </form>
</div> </>
</form>
); );
} }
export default TodoForm; export default TodoForm;
...@@ -2,6 +2,7 @@ import React, { useState } from "react"; ...@@ -2,6 +2,7 @@ import React, { useState } from "react";
import TodoForm from "./TodoForm"; import TodoForm from "./TodoForm";
import Todo from "./Todo"; import Todo from "./Todo";
import Header from "./Header"; import Header from "./Header";
import CompletedTodos from "./CompletedTodos"
function TodoList() { function TodoList() {
...@@ -31,7 +32,7 @@ function TodoList() { ...@@ -31,7 +32,7 @@ function TodoList() {
const completeTodo = (id) => { const completeTodo = (id) => {
const updatedTodos = todos.map((todo) => { const updatedTodos = todos.map((todo) => {
if (todo.id === id) { if (todo.id === id) {
todo.isComplete = !todo.isComplete; todo.status = !todo.status;
} }
return todo; return todo;
}); });
...@@ -52,6 +53,7 @@ function TodoList() { ...@@ -52,6 +53,7 @@ function TodoList() {
return ( return (
<> <>
<Header todos={todos} /> <Header todos={todos} />
<Todo <Todo
todos={todos} todos={todos}
completeTodo={completeTodo} completeTodo={completeTodo}
...@@ -63,6 +65,12 @@ function TodoList() { ...@@ -63,6 +65,12 @@ function TodoList() {
setInputValue={setInputValue} setInputValue={setInputValue}
/> />
<TodoForm onSubmit={addTodo} /> <TodoForm onSubmit={addTodo} />
<h4 style={{ textAlign: 'center', marginBottom: '10px' }}>Completed Todos</h4>
<CompletedTodos todos={todos}
completeTodo={completeTodo}
removeTodo={removeTodo} />
</> </>
); );
} }
......
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');
* { * {
box-sizing: border-box; box-sizing: border-box;
margin: 0; margin: 0;
...@@ -7,18 +5,18 @@ ...@@ -7,18 +5,18 @@
} }
body { body {
font-family: 'Poppins', sans-serif; font-family: sans-serif;
/* background-color: #0cf; */ background-color: #cccccc24;
font-size: 14px; font-size: 14px;
} }
.btn { .btn {
display: inline-block; display: inline-block;
background: #000; background: #000;
background-color: #0cf; background-color: #fff;
color: #000; color: #000;
border: none; border: 1px solid #ccc;
padding: 10px 20px; padding: 10px 12px;
margin: 5px; margin: 5px;
border-radius: 5px; border-radius: 5px;
cursor: pointer; cursor: pointer;
...@@ -32,7 +30,7 @@ body { ...@@ -32,7 +30,7 @@ body {
.add-form { .add-form {
display: flex; display: flex;
justify-content: space-around; justify-content: space-around;
margin-top: 10px; margin: 10px 0px;
} }
.form-control input { .form-control input {
...@@ -49,21 +47,22 @@ footer { ...@@ -49,21 +47,22 @@ footer {
margin-top: 30px; margin-top: 30px;
} }
.task { .task-main {
width: 22rem; width: 25em;
padding: 10px 0px; margin: 15rem auto;
margin: 5px auto;
background-color: #000;
border-bottom: 1px solid rgba(0, 0, 0, .125); border-bottom: 1px solid rgba(0, 0, 0, .125);
border-radius: 4px; border-radius: 4px;
color: #fff; color: #000;
box-shadow: -1px 2px 8px 0px #383838; box-shadow: -1px 2px 8px 0px #38383829;
background-color: #fff;
} }
.task-head { .task-head {
border-bottom: 1px solid #ffffff61; border-bottom: 1px solid #ffffff61;
padding-bottom: 10px; padding: 10px;
text-align: center; text-align: center;
box-shadow: 1px 3px 1px #18181812;
margin-bottom: 15px;
} }
.task-body { .task-body {
...@@ -74,11 +73,10 @@ footer { ...@@ -74,11 +73,10 @@ footer {
.task-body-content { .task-body-content {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
border-bottom: 1px solid #ffffff61; border-bottom: 1px solid #ccc;
padding: 0px 15px; padding: 5px 12px;
} }
.t-complete { .t-complete {
text-decoration: line-through; background-color: green;
color: green;
} }
\ 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