-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement todo update feature #798
base: master
Are you sure you want to change the base?
Changes from 3 commits
0cc9fe9
6c3ebfd
c7bd252
ed445ff
3354fc4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,24 +1,71 @@ | ||||||||||||||||||||||||||||||||
/* eslint-disable max-len */ | ||||||||||||||||||||||||||||||||
/* eslint-disable jsx-a11y/control-has-associated-label */ | ||||||||||||||||||||||||||||||||
import React from 'react'; | ||||||||||||||||||||||||||||||||
import { UserWarning } from './UserWarning'; | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
const USER_ID = 0; | ||||||||||||||||||||||||||||||||
import React, { | ||||||||||||||||||||||||||||||||
useMemo, | ||||||||||||||||||||||||||||||||
useState, | ||||||||||||||||||||||||||||||||
} from 'react'; | ||||||||||||||||||||||||||||||||
import { TodoList } from './components/TodoList'; | ||||||||||||||||||||||||||||||||
import { Header } from './components/Header'; | ||||||||||||||||||||||||||||||||
import { Todo } from './types/Todo'; | ||||||||||||||||||||||||||||||||
import { Footer } from './components/Footer'; | ||||||||||||||||||||||||||||||||
import { ErrorNotification } from './components/ErrorNotification'; | ||||||||||||||||||||||||||||||||
import { FilterOption } from './types/FilterOptions'; | ||||||||||||||||||||||||||||||||
import { useTodo } from './hooks/useTodo'; | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
export const App: React.FC = () => { | ||||||||||||||||||||||||||||||||
if (!USER_ID) { | ||||||||||||||||||||||||||||||||
return <UserWarning />; | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
const [filter, setFilter] = useState<string>(FilterOption.All); | ||||||||||||||||||||||||||||||||
const [tempTodo, setTempTodo] = useState<Todo | null>(null); | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
const { | ||||||||||||||||||||||||||||||||
todos, | ||||||||||||||||||||||||||||||||
setErrorMessage, | ||||||||||||||||||||||||||||||||
errorMessage, | ||||||||||||||||||||||||||||||||
} = useTodo(); | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
const filteredTodos = useMemo(() => { | ||||||||||||||||||||||||||||||||
return todos.filter(({ completed }) => { | ||||||||||||||||||||||||||||||||
switch (filter) { | ||||||||||||||||||||||||||||||||
case FilterOption.Active: | ||||||||||||||||||||||||||||||||
return !completed; | ||||||||||||||||||||||||||||||||
case FilterOption.Completed: | ||||||||||||||||||||||||||||||||
return completed; | ||||||||||||||||||||||||||||||||
case FilterOption.All: | ||||||||||||||||||||||||||||||||
default: | ||||||||||||||||||||||||||||||||
return true; | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||
}, [filter, todos]); | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
const activeTodos = useMemo(() => { | ||||||||||||||||||||||||||||||||
return todos.filter(({ completed }) => !completed); | ||||||||||||||||||||||||||||||||
}, [todos]); | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||||
<section className="section container"> | ||||||||||||||||||||||||||||||||
<p className="title is-4"> | ||||||||||||||||||||||||||||||||
Copy all you need from the prev task: | ||||||||||||||||||||||||||||||||
<br /> | ||||||||||||||||||||||||||||||||
<a href="https://github.com/mate-academy/react_todo-app-add-and-delete#react-todo-app-add-and-delete">React Todo App - Add and Delete</a> | ||||||||||||||||||||||||||||||||
</p> | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
<p className="subtitle">Styles are already copied</p> | ||||||||||||||||||||||||||||||||
</section> | ||||||||||||||||||||||||||||||||
<div className="todoapp"> | ||||||||||||||||||||||||||||||||
<h1 className="todoapp__title">todos</h1> | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
<div className="todoapp__content"> | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
<Header | ||||||||||||||||||||||||||||||||
activeTodos={activeTodos} | ||||||||||||||||||||||||||||||||
setTempTodo={setTempTodo} | ||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
{!!filteredTodos.length | ||||||||||||||||||||||||||||||||
&& <TodoList todos={filteredTodos} tempTodo={tempTodo} />} | ||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
{!!todos.length | ||||||||||||||||||||||||||||||||
&& ( | ||||||||||||||||||||||||||||||||
<Footer | ||||||||||||||||||||||||||||||||
activeTodos={activeTodos} | ||||||||||||||||||||||||||||||||
filter={filter} | ||||||||||||||||||||||||||||||||
setFilter={setFilter} | ||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||
)} | ||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||
<ErrorNotification | ||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||
errorMessage={errorMessage} | ||||||||||||||||||||||||||||||||
setErrorMessage={setErrorMessage} | ||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { Todo } from '../types/Todo'; | ||
import { client } from '../utils/fetchClient'; | ||
|
||
export const getTodos = (userId: number) => { | ||
return client.get<Todo[]>(`/todos?userId=${userId}`); | ||
}; | ||
|
||
export const addTodo = (newTodo: Omit<Todo, 'id'>) => { | ||
return client.post<Todo>('/todos', newTodo); | ||
}; | ||
|
||
export const deleteTodo = (todoId: number) => { | ||
return client.delete(`/todos/${todoId}`); | ||
}; | ||
|
||
export const updateTodo = (todoId: number, newTodo: Omit<Todo, 'id'>) => { | ||
return client.patch<Todo>(`/todos/${todoId}`, newTodo); | ||
}; |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,49 @@ | ||||||
/* eslint-disable jsx-a11y/control-has-associated-label */ | ||||||
import classNames from 'classnames'; | ||||||
import { useEffect } from 'react'; | ||||||
|
||||||
type Props = { | ||||||
errorMessage: string; | ||||||
setErrorMessage: (message: string) => void; | ||||||
}; | ||||||
|
||||||
export const ErrorNotification: React.FC<Props> = ({ | ||||||
errorMessage, | ||||||
setErrorMessage, | ||||||
}) => { | ||||||
useEffect(() => { | ||||||
let timer: NodeJS.Timeout | undefined; | ||||||
|
||||||
if (errorMessage) { | ||||||
timer = setTimeout(() => { | ||||||
setErrorMessage(''); | ||||||
}, 3000); | ||||||
} | ||||||
|
||||||
return () => { | ||||||
if (timer) { | ||||||
clearTimeout(timer); | ||||||
} | ||||||
}; | ||||||
}, [errorMessage]); | ||||||
|
||||||
return ( | ||||||
<div | ||||||
data-cy="ErrorNotification" | ||||||
className={ | ||||||
classNames( | ||||||
'notification is-danger is-light has-text-weight-normal', | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
{ hidden: !errorMessage }, | ||||||
) | ||||||
} | ||||||
> | ||||||
<button | ||||||
data-cy="HideErrorButton" | ||||||
type="button" | ||||||
className="delete" | ||||||
onClick={() => setErrorMessage('')} | ||||||
/> | ||||||
{errorMessage} | ||||||
</div> | ||||||
); | ||||||
}; |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,70 @@ | ||||||||||||||||||||
import classNames from 'classnames'; | ||||||||||||||||||||
import React, { useMemo } from 'react'; | ||||||||||||||||||||
|
||||||||||||||||||||
import { Todo } from '../types/Todo'; | ||||||||||||||||||||
import { FilterOption } from '../types/FilterOptions'; | ||||||||||||||||||||
import { useTodo } from '../hooks/useTodo'; | ||||||||||||||||||||
|
||||||||||||||||||||
type Props = { | ||||||||||||||||||||
activeTodos: Todo[], | ||||||||||||||||||||
filter: string, | ||||||||||||||||||||
setFilter: (filter: string) => void, | ||||||||||||||||||||
}; | ||||||||||||||||||||
|
||||||||||||||||||||
export const Footer: React.FC<Props> = ({ | ||||||||||||||||||||
activeTodos, | ||||||||||||||||||||
filter, | ||||||||||||||||||||
setFilter, | ||||||||||||||||||||
}) => { | ||||||||||||||||||||
const { todos, deleteTodoHandler } = useTodo(); | ||||||||||||||||||||
|
||||||||||||||||||||
const completedTodos = useMemo(() => { | ||||||||||||||||||||
return todos.filter(({ completed }) => completed === true); | ||||||||||||||||||||
}, [todos]); | ||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
useMemo is useless here |
||||||||||||||||||||
|
||||||||||||||||||||
const handleDeleteCompletedTodos = () => { | ||||||||||||||||||||
Promise.all(completedTodos | ||||||||||||||||||||
.map(({ id }) => deleteTodoHandler(id))); | ||||||||||||||||||||
}; | ||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||
|
||||||||||||||||||||
const isClearButtonInvisible = completedTodos.length === 0; | ||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
But you don't really need variable for this |
||||||||||||||||||||
|
||||||||||||||||||||
return ( | ||||||||||||||||||||
<footer className="todoapp__footer" data-cy="Footer"> | ||||||||||||||||||||
<span className="todo-count" data-cy="TodosCounter"> | ||||||||||||||||||||
{activeTodos.length > 1 | ||||||||||||||||||||
? `${activeTodos.length} items left` | ||||||||||||||||||||
: '1 item left'} | ||||||||||||||||||||
</span> | ||||||||||||||||||||
|
||||||||||||||||||||
<nav className="filter" data-cy="Filter"> | ||||||||||||||||||||
{Object.values(FilterOption).map((option) => ( | ||||||||||||||||||||
<a | ||||||||||||||||||||
key={option} | ||||||||||||||||||||
data-cy={`FilterLink${option}`} | ||||||||||||||||||||
href={`#/${option.toLowerCase()}`} | ||||||||||||||||||||
className={classNames( | ||||||||||||||||||||
'filter__link', | ||||||||||||||||||||
{ selected: option === filter }, | ||||||||||||||||||||
)} | ||||||||||||||||||||
onClick={() => setFilter(option)} | ||||||||||||||||||||
> | ||||||||||||||||||||
{option} | ||||||||||||||||||||
</a> | ||||||||||||||||||||
))} | ||||||||||||||||||||
</nav> | ||||||||||||||||||||
|
||||||||||||||||||||
<button | ||||||||||||||||||||
type="button" | ||||||||||||||||||||
className={classNames('todoapp__clear-completed', { | ||||||||||||||||||||
'is-invisible': isClearButtonInvisible, | ||||||||||||||||||||
})} | ||||||||||||||||||||
data-cy="ClearCompletedButton" | ||||||||||||||||||||
onClick={handleDeleteCompletedTodos} | ||||||||||||||||||||
disabled={isClearButtonInvisible} | ||||||||||||||||||||
> | ||||||||||||||||||||
Clear completed | ||||||||||||||||||||
</button> | ||||||||||||||||||||
</footer> | ||||||||||||||||||||
); | ||||||||||||||||||||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
/* eslint-disable jsx-a11y/control-has-associated-label */ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. let's fix this eslint issue:smiley: try to work around |
||
import React, { | ||
useEffect, useRef, useState, | ||
} from 'react'; | ||
import classNames from 'classnames'; | ||
|
||
import { Todo } from '../types/Todo'; | ||
import { USER_ID } from '../utils/constants'; | ||
import { useTodo } from '../hooks/useTodo'; | ||
|
||
type Props = { | ||
activeTodos: Todo[]; | ||
setTempTodo: (todo: Todo | null) => void; | ||
}; | ||
|
||
export const Header: React.FC<Props> = ({ activeTodos, setTempTodo }) => { | ||
const [title, setTitle] = useState(''); | ||
const [titleError, setTitleError] = useState(false); | ||
const [isSubmiting, setIsSubmiting] = useState(false); | ||
const todoTitleField = useRef<HTMLInputElement>(null); | ||
const { | ||
todos, | ||
setErrorMessage, | ||
addTodoHandler, | ||
updateTodoHandler, | ||
} = useTodo(); | ||
|
||
useEffect(() => { | ||
if (todoTitleField.current) { | ||
todoTitleField.current.focus(); | ||
} | ||
}); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Currently, this useEffect triggers on every I think there they focus input only after delete or add todo (after changing the amount of todos) |
||
|
||
const handleTitleChange = (event: React.ChangeEvent<HTMLInputElement>) => { | ||
setTitle(event?.target.value); | ||
|
||
if (titleError) { | ||
setTitleError(false); | ||
} | ||
}; | ||
|
||
const handleSubmit = async (event: React.FormEvent<HTMLFormElement>) => { | ||
event.preventDefault(); | ||
setIsSubmiting(true); | ||
const newTitle = title.trim(); | ||
|
||
if (!newTitle) { | ||
setErrorMessage('Title should not be empty'); | ||
setIsSubmiting(false); | ||
|
||
return; | ||
} | ||
|
||
const newTodo = { | ||
title: newTitle, | ||
userId: USER_ID, | ||
completed: false, | ||
}; | ||
|
||
setTempTodo({ id: 0, ...newTodo }); | ||
|
||
try { | ||
await addTodoHandler(newTodo); | ||
|
||
setIsSubmiting(false); | ||
|
||
setTitle(''); | ||
setTempTodo(null); | ||
} catch (error) { | ||
setIsSubmiting(false); | ||
setTempTodo(null); | ||
} | ||
}; | ||
|
||
const onToggleAll = async () => { | ||
if (activeTodos.length) { | ||
Promise.all(activeTodos | ||
.map(currentTodo => updateTodoHandler( | ||
currentTodo, | ||
{ completed: true }, | ||
))); | ||
} else { | ||
Promise.all(todos | ||
.map(currentTodo => updateTodoHandler( | ||
currentTodo, | ||
{ completed: false }, | ||
))); | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. DRY. a lot of code repeats, try to refactor this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also add |
||
}; | ||
|
||
return ( | ||
<header className="todoapp__header"> | ||
{!!todos.length | ||
&& ( | ||
<button | ||
type="button" | ||
className={classNames( | ||
'todoapp__toggle-all', | ||
{ active: !activeTodos.length }, | ||
)} | ||
data-cy="ToggleAllButton" | ||
onClick={onToggleAll} | ||
/> | ||
)} | ||
<form onSubmit={handleSubmit}> | ||
<input | ||
ref={todoTitleField} | ||
data-cy="NewTodoField" | ||
type="text" | ||
className="todoapp__new-todo" | ||
placeholder="What needs to be done?" | ||
value={title} | ||
onChange={handleTitleChange} | ||
disabled={isSubmiting} | ||
/> | ||
</form> | ||
</header> | ||
); | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would move this logic to separate helper function