-
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
Develop #1526
Open
NazarHaida
wants to merge
4
commits into
mate-academy:master
Choose a base branch
from
NazarHaida:develop
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Develop #1526
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,26 +1,311 @@ | ||||||||||||||
/* eslint-disable max-len */ | ||||||||||||||
/* eslint-disable jsx-a11y/label-has-associated-control */ | ||||||||||||||
/* eslint-disable jsx-a11y/control-has-associated-label */ | ||||||||||||||
import React from 'react'; | ||||||||||||||
import { UserWarning } from './UserWarning'; | ||||||||||||||
|
||||||||||||||
const USER_ID = 0; | ||||||||||||||
import React, { FormEvent, useEffect, useRef, useState } from 'react'; | ||||||||||||||
// import { UserWarning } from './UserWarning'; | ||||||||||||||
import { | ||||||||||||||
deleteTodos, | ||||||||||||||
editTodos, | ||||||||||||||
getTodos, | ||||||||||||||
postTodos, | ||||||||||||||
USER_ID, | ||||||||||||||
} from './api/todos'; | ||||||||||||||
import { Todo } from './types/Todo'; | ||||||||||||||
import { Footer } from './Footer'; | ||||||||||||||
import { TodoList } from './TodoList'; | ||||||||||||||
import classNames from 'classnames'; | ||||||||||||||
import { Filters } from './types/Filters'; | ||||||||||||||
import { TodoItem } from './TodoItem'; | ||||||||||||||
|
||||||||||||||
export const App: React.FC = () => { | ||||||||||||||
if (!USER_ID) { | ||||||||||||||
return <UserWarning />; | ||||||||||||||
} | ||||||||||||||
const [todos, setTodos] = useState<Todo[]>([]); | ||||||||||||||
const [deletingTodoId, setDeletingTodoId] = useState<number | null>(null); | ||||||||||||||
const [error, setError] = useState<string | null>(null); | ||||||||||||||
const [addTodoTitle, setAddTodoTitle] = useState(''); | ||||||||||||||
const [isSubmitting, setIsSubmitting] = useState(false); | ||||||||||||||
const [filterSelected, setFilterSelected] = useState<Filters>(Filters.All); | ||||||||||||||
const [tempTodo, setTempTodo] = useState<Todo | null>(null); | ||||||||||||||
const [updatingStatusIds, setUpdatingStatusIds] = useState<Set<number>>( | ||||||||||||||
new Set(), | ||||||||||||||
); | ||||||||||||||
const [clearingCompletedIds, setClearingCompletedIds] = useState<Set<number>>( | ||||||||||||||
new Set(), | ||||||||||||||
); | ||||||||||||||
|
||||||||||||||
const [allCompleted, setAllCompleted] = useState(false); | ||||||||||||||
|
||||||||||||||
const ref = useRef<HTMLInputElement | null>(null); | ||||||||||||||
|
||||||||||||||
const updateTodos = (todoId, title) => { | ||||||||||||||
// prettier-ignore | ||||||||||||||
setTodos(prevState => | ||||||||||||||
title === null | ||||||||||||||
? prevState.filter(todo => todo.id !== todoId) | ||||||||||||||
: prevState.map(todo => todoId === todo.id | ||||||||||||||
? { ...todo, title: title } : todo,), | ||||||||||||||
); | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
const handleDelete = async (todoId: number) => { | ||||||||||||||
setDeletingTodoId(todoId); | ||||||||||||||
try { | ||||||||||||||
await deleteTodos(todoId); | ||||||||||||||
updateTodos(todoId, null); | ||||||||||||||
ref.current.focus(); | ||||||||||||||
} catch (Error) { | ||||||||||||||
setError('Unable to delete a todo'); | ||||||||||||||
} | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
const updateStatus = (todoId, completed) => { | ||||||||||||||
// prettier-ignore | ||||||||||||||
setTodos(prevState => | ||||||||||||||
prevState.map(todo => todoId === todo.id | ||||||||||||||
? { ...todo, completed: completed } : todo,), | ||||||||||||||
); | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
const handleSubmit = async (event: FormEvent<HTMLFormElement>) => { | ||||||||||||||
event.preventDefault(); | ||||||||||||||
const trimmedTitle = addTodoTitle.trim(); | ||||||||||||||
|
||||||||||||||
if (!trimmedTitle) { | ||||||||||||||
setError('Title should not be empty'); | ||||||||||||||
|
||||||||||||||
return; | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
setTempTodo({ | ||||||||||||||
id: 0, | ||||||||||||||
title: trimmedTitle, | ||||||||||||||
completed: false, | ||||||||||||||
userId: USER_ID, | ||||||||||||||
}); | ||||||||||||||
|
||||||||||||||
setIsSubmitting(true); | ||||||||||||||
try { | ||||||||||||||
const newTodo = { | ||||||||||||||
title: trimmedTitle, | ||||||||||||||
completed: false, | ||||||||||||||
userId: USER_ID, | ||||||||||||||
}; | ||||||||||||||
const createdTodo = await postTodos(newTodo); | ||||||||||||||
|
||||||||||||||
setTodos(prevState => [...prevState, createdTodo]); | ||||||||||||||
setTempTodo(null); | ||||||||||||||
setAddTodoTitle(''); | ||||||||||||||
} catch { | ||||||||||||||
setError('Unable to add a todo'); | ||||||||||||||
|
||||||||||||||
setTempTodo(null); | ||||||||||||||
} finally { | ||||||||||||||
setIsSubmitting(false); | ||||||||||||||
} | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
const handleStatus = async (todoId, completed) => { | ||||||||||||||
setUpdatingStatusIds(prev => new Set(prev.add(todoId))); | ||||||||||||||
const todoToUpdate = todos.find(todo => todo.id === todoId); | ||||||||||||||
|
||||||||||||||
const updatedTodo = { | ||||||||||||||
title: todoToUpdate.title, | ||||||||||||||
completed: !completed, | ||||||||||||||
todoId, | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
try { | ||||||||||||||
await editTodos(updatedTodo); | ||||||||||||||
updateStatus(todoId, !completed); | ||||||||||||||
} catch (Error) { | ||||||||||||||
setError('Unable to update a todo'); | ||||||||||||||
} finally { | ||||||||||||||
setUpdatingStatusIds(prev => { | ||||||||||||||
const updated = new Set(prev); | ||||||||||||||
|
||||||||||||||
updated.delete(todoId); | ||||||||||||||
|
||||||||||||||
return updated; | ||||||||||||||
}); | ||||||||||||||
} | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
const handleToggleAll = async () => { | ||||||||||||||
const IsAllCompleted = todos.every(todo => todo.completed); | ||||||||||||||
const todosToUpdate = todos.filter( | ||||||||||||||
todo => todo.completed !== !allCompleted, | ||||||||||||||
); | ||||||||||||||
|
||||||||||||||
setIsSubmitting(true); | ||||||||||||||
|
||||||||||||||
try { | ||||||||||||||
const updatePromises = todosToUpdate.map(async todo => { | ||||||||||||||
setUpdatingStatusIds(prev => new Set(prev.add(todo.id))); | ||||||||||||||
await editTodos({ | ||||||||||||||
title: todo.title, | ||||||||||||||
completed: !IsAllCompleted, | ||||||||||||||
todoId: todo.id, | ||||||||||||||
}); | ||||||||||||||
updateStatus(todo.id, !IsAllCompleted); | ||||||||||||||
setUpdatingStatusIds(prev => { | ||||||||||||||
const updated = new Set(prev); | ||||||||||||||
|
||||||||||||||
updated.delete(todo.id); | ||||||||||||||
|
||||||||||||||
return updated; | ||||||||||||||
}); | ||||||||||||||
}); | ||||||||||||||
|
||||||||||||||
await Promise.all(updatePromises); | ||||||||||||||
} catch (Error) { | ||||||||||||||
setError('Unable to update a todo'); | ||||||||||||||
} finally { | ||||||||||||||
setIsSubmitting(false); | ||||||||||||||
} | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
const handleClearCompleted = async () => { | ||||||||||||||
const completedTodos = todos.filter(todo => todo.completed); | ||||||||||||||
|
||||||||||||||
setClearingCompletedIds(new Set(completedTodos.map(todo => todo.id))); | ||||||||||||||
try { | ||||||||||||||
await Promise.all( | ||||||||||||||
completedTodos.map(async todo => { | ||||||||||||||
await handleDelete(todo.id); | ||||||||||||||
}), | ||||||||||||||
); | ||||||||||||||
} catch { | ||||||||||||||
setError('Unable to delete a todo'); | ||||||||||||||
} finally { | ||||||||||||||
setClearingCompletedIds(new Set()); | ||||||||||||||
} | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
const filteredTodos = () => { | ||||||||||||||
if (filterSelected === Filters.Active) { | ||||||||||||||
return todos.filter(todo => !todo.completed); | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
if (filterSelected === Filters.Completed) { | ||||||||||||||
return todos.filter(todo => todo.completed); | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
return todos; | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
useEffect(() => { | ||||||||||||||
getTodos() | ||||||||||||||
.then(setTodos) | ||||||||||||||
.catch(() => { | ||||||||||||||
setError('Unable to load todos'); | ||||||||||||||
}); | ||||||||||||||
}, []); | ||||||||||||||
|
||||||||||||||
useEffect(() => { | ||||||||||||||
const IsAllCompleted = todos.every(todo => todo.completed); | ||||||||||||||
|
||||||||||||||
setAllCompleted(IsAllCompleted); | ||||||||||||||
}, [todos]); | ||||||||||||||
|
||||||||||||||
Comment on lines
+202
to
+207
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
|
||||||||||||||
useEffect(() => { | ||||||||||||||
if (error) { | ||||||||||||||
const timer = setTimeout(() => { | ||||||||||||||
setError(null); | ||||||||||||||
}, 3000); | ||||||||||||||
|
||||||||||||||
return () => clearTimeout(timer); | ||||||||||||||
} | ||||||||||||||
}, [error]); | ||||||||||||||
|
||||||||||||||
useEffect(() => { | ||||||||||||||
if (!isSubmitting && ref.current) { | ||||||||||||||
ref.current.focus(); | ||||||||||||||
} | ||||||||||||||
}, [isSubmitting]); | ||||||||||||||
|
||||||||||||||
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 className="todoapp__header"> | ||||||||||||||
{todos.length !== 0 && ( | ||||||||||||||
<button | ||||||||||||||
disabled={isSubmitting} | ||||||||||||||
type="button" | ||||||||||||||
className={classNames('todoapp__toggle-all', { | ||||||||||||||
active: allCompleted, | ||||||||||||||
})} | ||||||||||||||
data-cy="ToggleAllButton" | ||||||||||||||
onClick={() => handleToggleAll()} | ||||||||||||||
/> | ||||||||||||||
)} | ||||||||||||||
<form | ||||||||||||||
onSubmit={event => { | ||||||||||||||
handleSubmit(event); | ||||||||||||||
}} | ||||||||||||||
> | ||||||||||||||
<input | ||||||||||||||
ref={ref} | ||||||||||||||
disabled={isSubmitting} | ||||||||||||||
data-cy="NewTodoField" | ||||||||||||||
type="text" | ||||||||||||||
className="todoapp__new-todo" | ||||||||||||||
placeholder="What needs to be done?" | ||||||||||||||
value={addTodoTitle} | ||||||||||||||
onChange={event => { | ||||||||||||||
setAddTodoTitle(event.target.value); | ||||||||||||||
}} | ||||||||||||||
/> | ||||||||||||||
</form> | ||||||||||||||
</header> | ||||||||||||||
|
||||||||||||||
<TodoList | ||||||||||||||
todos={filteredTodos()} | ||||||||||||||
deletingTodoId={deletingTodoId} | ||||||||||||||
updateTodos={updateTodos} | ||||||||||||||
updateStatus={updateStatus} | ||||||||||||||
setTodos={setTodos} | ||||||||||||||
setError={setError} | ||||||||||||||
handleDelete={handleDelete} | ||||||||||||||
handleStatus={handleStatus} | ||||||||||||||
updatingStatusIds={updatingStatusIds} | ||||||||||||||
clearingCompletedIds={clearingCompletedIds} | ||||||||||||||
/> | ||||||||||||||
|
||||||||||||||
{tempTodo && ( | ||||||||||||||
<TodoItem | ||||||||||||||
todo={tempTodo} | ||||||||||||||
todos={[]} | ||||||||||||||
updateTodos={() => {}} | ||||||||||||||
setTodos={() => {}} | ||||||||||||||
setError={setError} | ||||||||||||||
handleDelete={() => {}} | ||||||||||||||
tempTodo={tempTodo} | ||||||||||||||
/> | ||||||||||||||
)} | ||||||||||||||
{!!todos.length && ( | ||||||||||||||
<Footer | ||||||||||||||
todos={todos} | ||||||||||||||
filterSelected={filterSelected} | ||||||||||||||
setFilterSelected={setFilterSelected} | ||||||||||||||
handleDelete={handleDelete} | ||||||||||||||
clearingCompletedIds={clearingCompletedIds} | ||||||||||||||
handleClearCompleted={handleClearCompleted} | ||||||||||||||
/> | ||||||||||||||
)} | ||||||||||||||
</div> | ||||||||||||||
|
||||||||||||||
<div | ||||||||||||||
data-cy="ErrorNotification" | ||||||||||||||
className={`notification is-danger is-light has-text-weight-normal ${error ? '' : 'hidden'}`} | ||||||||||||||
> | ||||||||||||||
<button | ||||||||||||||
data-cy="HideErrorButton" | ||||||||||||||
type="button" | ||||||||||||||
className="delete" | ||||||||||||||
onClick={() => setError(null)} | ||||||||||||||
/> | ||||||||||||||
{error} | ||||||||||||||
</div> | ||||||||||||||
</div> | ||||||||||||||
); | ||||||||||||||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import { Todo } from './types/Todo'; | ||
import classNames from 'classnames'; | ||
import { Filters } from './types/Filters'; | ||
|
||
type Props = { | ||
todos: Todo[]; | ||
}; | ||
|
||
export const Footer: React.FC<Props> = ({ | ||
todos, | ||
filterSelected, | ||
setFilterSelected, | ||
handleClearCompleted, | ||
}) => { | ||
const remainingTodosCount = todos.filter(todo => !todo.completed).length; | ||
|
||
const filterOptions: Filters[] = Object.values(Filters) as Filters[]; | ||
|
||
return ( | ||
<footer className="todoapp__footer" data-cy="Footer"> | ||
<span className="todo-count" data-cy="TodosCounter"> | ||
{remainingTodosCount} items left | ||
</span> | ||
|
||
<nav className="filter" data-cy="Filter"> | ||
{filterOptions.map((filter: Filters) => ( | ||
<a | ||
key={filter} | ||
href={`#/${filter.toLowerCase()}`} | ||
className={classNames('filter__link', { | ||
selected: filterSelected === filter, | ||
})} | ||
data-cy={`FilterLink${filter}`} | ||
onClick={() => setFilterSelected(filter)} | ||
> | ||
{filter} | ||
</a> | ||
))} | ||
</nav> | ||
|
||
<button | ||
type="button" | ||
className="todoapp__clear-completed" | ||
data-cy="ClearCompletedButton" | ||
onClick={handleClearCompleted} | ||
disabled={todos.every(todo => !todo.completed)} | ||
> | ||
Clear completed | ||
</button> | ||
</footer> | ||
); | ||
}; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
it can be just a variable