-
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
finalize solution with some skipped tests #822
Open
serkrops
wants to merge
5
commits into
mate-academy:master
Choose a base branch
from
serkrops:todo-app-with-api_serkrops
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
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
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
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
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,24 +1,216 @@ | ||||||||||||||
/* 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, { | ||||||||||||||
useEffect, | ||||||||||||||
useMemo, | ||||||||||||||
useRef, | ||||||||||||||
useState, | ||||||||||||||
} from 'react'; | ||||||||||||||
import { Todo } from './types/Todo'; | ||||||||||||||
import * as todoService from './api/todos'; | ||||||||||||||
import { TodoRow } from './Components/TodoRow'; | ||||||||||||||
import { TodoHeader } from './Components/TodoHeader'; | ||||||||||||||
import { TodoFooter } from './Components/TodoFooter'; | ||||||||||||||
import { getFilteredTodo } from './utils/GetFilteredTodo'; | ||||||||||||||
import { TodoStatus } from './types/TodoStatus'; | ||||||||||||||
import { ErrorMessage } from './Components/ErrorMessage'; | ||||||||||||||
|
||||||||||||||
export const App: React.FC = () => { | ||||||||||||||
if (!USER_ID) { | ||||||||||||||
return <UserWarning />; | ||||||||||||||
} | ||||||||||||||
const [todos, setTodos] = useState<Todo[]>([]); | ||||||||||||||
const [errorMessage, setErrorMessage] = useState(''); | ||||||||||||||
const [processingTodoIds, setProcessingTodoIds] = useState<number[]>([]); | ||||||||||||||
const [tempTodo, setTempTodo] = useState<Todo | null>(null); | ||||||||||||||
const [ | ||||||||||||||
selectedStatus, | ||||||||||||||
setSelectedStatus, | ||||||||||||||
] = useState<TodoStatus>(TodoStatus.All); | ||||||||||||||
const [inputFocus, setInputFocus] = useState(false); | ||||||||||||||
|
||||||||||||||
useEffect(() => { | ||||||||||||||
todoService | ||||||||||||||
.getTodos() | ||||||||||||||
.then(setTodos) | ||||||||||||||
.catch(() => { | ||||||||||||||
setErrorMessage('Unable to load todos'); | ||||||||||||||
}); | ||||||||||||||
}, []); | ||||||||||||||
|
||||||||||||||
const timerId = useRef<number>(0); | ||||||||||||||
const activeTodosCount = todos.filter(todo => todo.completed !== true).length; | ||||||||||||||
const isAnyTodoCompleted = todos.some(todo => todo.completed === true); | ||||||||||||||
|
||||||||||||||
const updateTodoInArray = (prevState: Todo[], updatedTodo: Todo) => ( | ||||||||||||||
prevState.map((currentTodo: Todo) => ( | ||||||||||||||
currentTodo.id !== updatedTodo.id | ||||||||||||||
? currentTodo | ||||||||||||||
: updatedTodo | ||||||||||||||
)) | ||||||||||||||
); | ||||||||||||||
|
||||||||||||||
useEffect(() => { | ||||||||||||||
if (timerId.current) { | ||||||||||||||
window.clearTimeout(timerId.current); | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
timerId.current = window.setTimeout(() => { | ||||||||||||||
setErrorMessage(''); | ||||||||||||||
}, 3000); | ||||||||||||||
}, [errorMessage]); | ||||||||||||||
|
||||||||||||||
const filteredTodos = useMemo(() => { | ||||||||||||||
return getFilteredTodo(todos, selectedStatus); | ||||||||||||||
}, [selectedStatus, todos]); | ||||||||||||||
|
||||||||||||||
const handleSelectedStatus = (filterLink: TodoStatus) => { | ||||||||||||||
setSelectedStatus(filterLink); | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
const handleAddTodo = (todoTitle: string) => { | ||||||||||||||
setTempTodo({ | ||||||||||||||
id: 0, | ||||||||||||||
title: todoTitle, | ||||||||||||||
userId: 0, | ||||||||||||||
completed: false, | ||||||||||||||
}); | ||||||||||||||
|
||||||||||||||
return todoService | ||||||||||||||
.addTodo(todoTitle) | ||||||||||||||
.then((newTodo) => { | ||||||||||||||
setTodos((prevTodos) => [...prevTodos, newTodo]); | ||||||||||||||
}) | ||||||||||||||
.catch(() => { | ||||||||||||||
setErrorMessage('Unable to add a todo'); | ||||||||||||||
setInputFocus(true); | ||||||||||||||
}) | ||||||||||||||
.finally(() => { | ||||||||||||||
setTempTodo(null); | ||||||||||||||
}); | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
const handleDeleteTodo = (todoId: number) => { | ||||||||||||||
setProcessingTodoIds((prevtodoIds) => [...prevtodoIds, todoId]); | ||||||||||||||
|
||||||||||||||
return todoService | ||||||||||||||
.deleteTodo(todoId) | ||||||||||||||
.then(() => { | ||||||||||||||
setTodos((prevTodos) => prevTodos.filter(todo => todo.id !== todoId)); | ||||||||||||||
}) | ||||||||||||||
.catch(() => { | ||||||||||||||
setErrorMessage('Unable to delete a todo'); | ||||||||||||||
}) | ||||||||||||||
.finally(() => { | ||||||||||||||
setProcessingTodoIds( | ||||||||||||||
(prevTodoIds) => prevTodoIds.filter(id => id !== todoId), | ||||||||||||||
); | ||||||||||||||
}); | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
const handleRenameTodo = (todo: Todo, newTodoTitle: string) => { | ||||||||||||||
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. This function and |
||||||||||||||
setProcessingTodoIds((prevtodoIds) => [...prevtodoIds, todo.id]); | ||||||||||||||
|
||||||||||||||
return todoService | ||||||||||||||
.updateTodo({ | ||||||||||||||
...todo, | ||||||||||||||
title: newTodoTitle, | ||||||||||||||
}) | ||||||||||||||
.then(updatedTodo => { | ||||||||||||||
setTodos(prevState => updateTodoInArray(prevState, updatedTodo)); | ||||||||||||||
}) | ||||||||||||||
.catch(() => { | ||||||||||||||
setErrorMessage('Unable to update a todo'); | ||||||||||||||
}).finally(() => { | ||||||||||||||
setProcessingTodoIds( | ||||||||||||||
(prevTodoIds) => prevTodoIds.filter(id => id !== todo.id), | ||||||||||||||
); | ||||||||||||||
}); | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
const handleToggleTodo = (todo: Todo) => { | ||||||||||||||
setProcessingTodoIds((prevtodoIds) => [...prevtodoIds, todo.id]); | ||||||||||||||
|
||||||||||||||
return todoService | ||||||||||||||
.updateTodo({ | ||||||||||||||
...todo, | ||||||||||||||
completed: !todo.completed, | ||||||||||||||
}) | ||||||||||||||
.then(updatedTodo => { | ||||||||||||||
setTodos(prevState => updateTodoInArray(prevState, updatedTodo)); | ||||||||||||||
}) | ||||||||||||||
.catch(() => { | ||||||||||||||
setErrorMessage('Unable to update a todo'); | ||||||||||||||
}).finally(() => { | ||||||||||||||
setProcessingTodoIds( | ||||||||||||||
(prevTodoIds) => prevTodoIds.filter(id => id !== todo.id), | ||||||||||||||
); | ||||||||||||||
}); | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
const handleClearCompletedTodos = () => { | ||||||||||||||
todos | ||||||||||||||
.filter(todo => todo.completed) | ||||||||||||||
.forEach(todo => { | ||||||||||||||
handleDeleteTodo(todo.id); | ||||||||||||||
}); | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
const isAllCompleted = todos.every(todo => todo.completed); | ||||||||||||||
const activeTodos = todos.filter(todo => !todo.completed); | ||||||||||||||
|
||||||||||||||
const handleToggleAllTodo = () => { | ||||||||||||||
if (isAllCompleted) { | ||||||||||||||
todos.forEach(handleToggleTodo); | ||||||||||||||
} else { | ||||||||||||||
activeTodos.forEach(handleToggleTodo); | ||||||||||||||
} | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
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"> | ||||||||||||||
<TodoHeader | ||||||||||||||
onTodoAdd={handleAddTodo} | ||||||||||||||
onTodoAddError={setErrorMessage} | ||||||||||||||
isAllCompleted={isAllCompleted} | ||||||||||||||
toggleAll={handleToggleAllTodo} | ||||||||||||||
todosLength={todos.length} | ||||||||||||||
inputFocus={inputFocus} | ||||||||||||||
/> | ||||||||||||||
<section className="todoapp__main" data-cy="TodoList"> | ||||||||||||||
{filteredTodos.map(todo => ( | ||||||||||||||
<TodoRow | ||||||||||||||
todo={todo} | ||||||||||||||
key={todo.id} | ||||||||||||||
onTodoDelete={() => handleDeleteTodo(todo.id)} | ||||||||||||||
onTodoRename={(todoTitle) => handleRenameTodo(todo, todoTitle)} | ||||||||||||||
isProcessing={processingTodoIds.includes(todo.id)} | ||||||||||||||
toggleTodo={() => handleToggleTodo(todo)} | ||||||||||||||
onTodoRenameError={setErrorMessage} | ||||||||||||||
/> | ||||||||||||||
))} | ||||||||||||||
|
||||||||||||||
{tempTodo && ( | ||||||||||||||
<TodoRow | ||||||||||||||
todo={tempTodo} | ||||||||||||||
isProcessing | ||||||||||||||
/> | ||||||||||||||
)} | ||||||||||||||
</section> | ||||||||||||||
|
||||||||||||||
{!!todos.length && ( | ||||||||||||||
<TodoFooter | ||||||||||||||
todoStatus={selectedStatus} | ||||||||||||||
onStatusSelect={handleSelectedStatus} | ||||||||||||||
activeTodos={activeTodosCount} | ||||||||||||||
onClearCompleted={handleClearCompletedTodos} | ||||||||||||||
isAnyTodoCompleted={isAnyTodoCompleted} | ||||||||||||||
/> | ||||||||||||||
)} | ||||||||||||||
|
||||||||||||||
</div> | ||||||||||||||
<ErrorMessage | ||||||||||||||
Comment on lines
+208
to
+210
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> | ||||||||||||||
); | ||||||||||||||
}; |
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,36 @@ | ||
/* eslint-disable jsx-a11y/control-has-associated-label */ | ||
import classNames from 'classnames'; | ||
import React from 'react'; | ||
|
||
type Props = { | ||
errorMessage: string, | ||
setErrorMessage: (error: string) => void, | ||
}; | ||
|
||
export const ErrorMessage: React.FC<Props> = ({ | ||
errorMessage, | ||
setErrorMessage, | ||
}) => ( | ||
<div | ||
data-cy="ErrorNotification" | ||
className={classNames( | ||
'notification', | ||
'is-danger', | ||
'is-light', | ||
'has-text-weight-normal', | ||
{ | ||
hidden: !errorMessage, | ||
}, | ||
)} | ||
> | ||
<button | ||
data-cy="HideErrorButton" | ||
type="button" | ||
className="delete" | ||
onClick={() => { | ||
setErrorMessage(''); | ||
}} | ||
/> | ||
{errorMessage} | ||
</div> | ||
); |
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.