-
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 #1499
Open
Mariana-VV
wants to merge
19
commits into
mate-academy:master
Choose a base branch
from
Mariana-VV: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 #1499
Changes from 13 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
e0f64c1
check
Mariana-VV 1a3cdc8
message
Mariana-VV 5b3b423
message
Mariana-VV 6a1456a
message
Mariana-VV 69aa58f
message
Mariana-VV d950f61
onlycheck
Mariana-VV 1f5741c
onlycheck
Mariana-VV ddc63fc
onlycheck
Mariana-VV dd1fa55
solution
Mariana-VV ee93fbe
solution
Mariana-VV 9d0dcb3
improvement
Mariana-VV df5c5a8
onlycheck
Mariana-VV 3385ffa
try
Mariana-VV a787c03
improvement
Mariana-VV e85df0d
improvement
Mariana-VV 71ab383
message
Mariana-VV 5061ace
message
Mariana-VV fa12eb5
message
Mariana-VV a61c620
message
Mariana-VV 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,226 @@ | ||||||||||||||||||
/* eslint-disable max-len */ | ||||||||||||||||||
/* eslint-disable jsx-a11y/control-has-associated-label */ | ||||||||||||||||||
import React from 'react'; | ||||||||||||||||||
import React, { useEffect, useState } from 'react'; | ||||||||||||||||||
import { UserWarning } from './UserWarning'; | ||||||||||||||||||
import { USER_ID } from './api/todos'; | ||||||||||||||||||
import classNames from 'classnames'; | ||||||||||||||||||
import { Todo } from './types/Todo'; | ||||||||||||||||||
import * as todosFromServer from './api/todos'; | ||||||||||||||||||
import { wait } from './utils/fetchClient'; | ||||||||||||||||||
import { TodoForm } from './components/TodoForm/TodoForm'; | ||||||||||||||||||
import { TodoList } from './components/TodoList/TodoList'; | ||||||||||||||||||
import { TodoFooter } from './components/TodoFooter/TodoFooter'; | ||||||||||||||||||
import { Status } from './types/Status'; | ||||||||||||||||||
import { TodoItem } from './components/TodoItem/TodoItem'; | ||||||||||||||||||
|
||||||||||||||||||
const USER_ID = 0; | ||||||||||||||||||
const getTodosByStatus = (status: string, todos: Todo[]) => { | ||||||||||||||||||
const preperedTodos = [...todos]; | ||||||||||||||||||
|
||||||||||||||||||
if (status) { | ||||||||||||||||||
switch (status) { | ||||||||||||||||||
case Object.keys(Status)[Object.values(Status).indexOf(Status.active)]: | ||||||||||||||||||
return preperedTodos.filter(todo => !todo.completed); | ||||||||||||||||||
case Object.keys(Status)[Object.values(Status).indexOf(Status.completed)]: | ||||||||||||||||||
return preperedTodos.filter(todo => todo.completed); | ||||||||||||||||||
default: | ||||||||||||||||||
return preperedTodos; | ||||||||||||||||||
} | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
return preperedTodos; | ||||||||||||||||||
}; | ||||||||||||||||||
|
||||||||||||||||||
export const App: React.FC = () => { | ||||||||||||||||||
const [titleError, setTitleError] = useState(false); | ||||||||||||||||||
const [todos, setTodos] = useState<Todo[]>([]); | ||||||||||||||||||
const [loadError, setLoadError] = useState(false); | ||||||||||||||||||
const [addError, setAddError] = useState(false); | ||||||||||||||||||
const [deleteError, setDeleteError] = useState(false); | ||||||||||||||||||
const [updateError, setUpdateError] = useState(false); | ||||||||||||||||||
const [status, setStatus] = useState('all'); | ||||||||||||||||||
const [tempTodo, setTempTodo] = useState<Todo | null>(null); | ||||||||||||||||||
const [tempArray, setTempArray] = useState<Todo[]>([]); | ||||||||||||||||||
const [edit, setEdit] = useState(false); | ||||||||||||||||||
|
||||||||||||||||||
const temp = (currentTodo: Todo) => { | ||||||||||||||||||
setTempArray(prevArray => [...prevArray, currentTodo]); | ||||||||||||||||||
}; | ||||||||||||||||||
|
||||||||||||||||||
const filteredTodos = getTodosByStatus(status, todos); | ||||||||||||||||||
|
||||||||||||||||||
async function addTodo(newTodoTitle: string) { | ||||||||||||||||||
const editedTitle = newTodoTitle.trim(); | ||||||||||||||||||
|
||||||||||||||||||
if (!editedTitle) { | ||||||||||||||||||
setTitleError(true); | ||||||||||||||||||
wait(3000).then(() => setTitleError(false)); | ||||||||||||||||||
|
||||||||||||||||||
return; | ||||||||||||||||||
} else { | ||||||||||||||||||
setTempTodo({ | ||||||||||||||||||
id: 0, | ||||||||||||||||||
userId: 839, | ||||||||||||||||||
title: editedTitle, | ||||||||||||||||||
completed: false, | ||||||||||||||||||
}); | ||||||||||||||||||
|
||||||||||||||||||
return todosFromServer | ||||||||||||||||||
.createTodos({ | ||||||||||||||||||
userId: 839, | ||||||||||||||||||
title: editedTitle, | ||||||||||||||||||
completed: false, | ||||||||||||||||||
}) | ||||||||||||||||||
.then(newTodo => { | ||||||||||||||||||
setTodos(prevTodos => [...prevTodos, newTodo]); | ||||||||||||||||||
setTempTodo(null); | ||||||||||||||||||
}) | ||||||||||||||||||
.catch(error => { | ||||||||||||||||||
setAddError(true); | ||||||||||||||||||
setTempTodo(null); | ||||||||||||||||||
wait(3000).then(() => setAddError(false)); | ||||||||||||||||||
throw error; | ||||||||||||||||||
}); | ||||||||||||||||||
} | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
async function updateTodo( | ||||||||||||||||||
updatedTodo: Todo, | ||||||||||||||||||
// successUpdateState?: VoidFunction, | ||||||||||||||||||
): Promise<void> { | ||||||||||||||||||
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. It's important to use one way of creating functions, fix it everywhere
Suggested change
|
||||||||||||||||||
return todosFromServer | ||||||||||||||||||
.updateTodos(updatedTodo) | ||||||||||||||||||
.then((todo: Todo) => { | ||||||||||||||||||
setTodos(currentTodos => { | ||||||||||||||||||
const newTodos = [...currentTodos]; | ||||||||||||||||||
const index = newTodos.findIndex( | ||||||||||||||||||
thisTodo => thisTodo.id === updatedTodo.id, | ||||||||||||||||||
); | ||||||||||||||||||
|
||||||||||||||||||
newTodos.splice(index, 1, todo); | ||||||||||||||||||
|
||||||||||||||||||
return newTodos; | ||||||||||||||||||
}); | ||||||||||||||||||
setEdit(false); | ||||||||||||||||||
// successUpdateState?.(); | ||||||||||||||||||
}) | ||||||||||||||||||
.catch(error => { | ||||||||||||||||||
setEdit(true); | ||||||||||||||||||
setUpdateError(true); | ||||||||||||||||||
wait(3000).then(() => setUpdateError(false)); | ||||||||||||||||||
setTempArray([]); | ||||||||||||||||||
throw error; | ||||||||||||||||||
}); | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
const deleteTodo = (paramTodo: Todo) => { | ||||||||||||||||||
todosFromServer | ||||||||||||||||||
.deleteTodos(paramTodo.id) | ||||||||||||||||||
.then(() => | ||||||||||||||||||
setTodos(prevTodos => | ||||||||||||||||||
prevTodos.filter(todo => todo.id !== paramTodo.id), | ||||||||||||||||||
), | ||||||||||||||||||
) | ||||||||||||||||||
.catch(() => { | ||||||||||||||||||
setDeleteError(true); | ||||||||||||||||||
wait(3000).then(() => { | ||||||||||||||||||
setDeleteError(false); | ||||||||||||||||||
}); | ||||||||||||||||||
}); | ||||||||||||||||||
}; | ||||||||||||||||||
|
||||||||||||||||||
useEffect(() => { | ||||||||||||||||||
todosFromServer | ||||||||||||||||||
.getTodos() | ||||||||||||||||||
.then(setTodos) | ||||||||||||||||||
.catch(() => setLoadError(true)); | ||||||||||||||||||
wait(3000).then(() => setLoadError(false)); | ||||||||||||||||||
}, []); | ||||||||||||||||||
|
||||||||||||||||||
if (!USER_ID) { | ||||||||||||||||||
return <UserWarning />; | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
const deleteCompletedTodos = (paramTodos: Todo[]) => { | ||||||||||||||||||
paramTodos.forEach(todo => deleteTodo(todo)); | ||||||||||||||||||
}; | ||||||||||||||||||
|
||||||||||||||||||
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> | ||||||||||||||||||
<div className="todoapp"> | ||||||||||||||||||
<h1 className="todoapp__title">todos</h1> | ||||||||||||||||||
|
||||||||||||||||||
<div className="todoapp__content"> | ||||||||||||||||||
<header className="todoapp__header"> | ||||||||||||||||||
{/* Add a todo on form submit */} | ||||||||||||||||||
<TodoForm | ||||||||||||||||||
onSubmit={addTodo} | ||||||||||||||||||
setTitleError={setTitleError} | ||||||||||||||||||
todos={todos} | ||||||||||||||||||
updateTodo={updateTodo} | ||||||||||||||||||
setTempArray={temp} | ||||||||||||||||||
edit={edit} | ||||||||||||||||||
/> | ||||||||||||||||||
</header> | ||||||||||||||||||
|
||||||||||||||||||
<p className="subtitle">Styles are already copied</p> | ||||||||||||||||||
</section> | ||||||||||||||||||
<TodoList | ||||||||||||||||||
todos={filteredTodos} | ||||||||||||||||||
updateTodo={updateTodo} | ||||||||||||||||||
deleteTodo={deleteTodo} | ||||||||||||||||||
array={tempArray} | ||||||||||||||||||
setTempArray={temp} | ||||||||||||||||||
edit={edit} | ||||||||||||||||||
/> | ||||||||||||||||||
|
||||||||||||||||||
{tempTodo && ( | ||||||||||||||||||
<TodoItem | ||||||||||||||||||
todo={tempTodo} | ||||||||||||||||||
updateTodo={updateTodo} | ||||||||||||||||||
deleteTodo={deleteTodo} | ||||||||||||||||||
tempArray={tempArray} | ||||||||||||||||||
setTempArray={temp} | ||||||||||||||||||
edit={edit} | ||||||||||||||||||
/> | ||||||||||||||||||
)} | ||||||||||||||||||
|
||||||||||||||||||
{!!todos.length && ( | ||||||||||||||||||
// {/* Hide the footer if there are no todos */} | ||||||||||||||||||
<TodoFooter | ||||||||||||||||||
todos={todos} | ||||||||||||||||||
setStatus={setStatus} | ||||||||||||||||||
status={status} | ||||||||||||||||||
deleteCompletedTodos={deleteCompletedTodos} | ||||||||||||||||||
/> | ||||||||||||||||||
)} | ||||||||||||||||||
</div> | ||||||||||||||||||
|
||||||||||||||||||
{/* {error && ( */} | ||||||||||||||||||
{/* DON'T use conditional rendering to hide the notification */} | ||||||||||||||||||
{/* Add the 'hidden' class to hide the message smoothly */} | ||||||||||||||||||
<div | ||||||||||||||||||
data-cy="ErrorNotification" | ||||||||||||||||||
className={classNames( | ||||||||||||||||||
'notification is-danger is-light has-text-weight-normal', | ||||||||||||||||||
{ | ||||||||||||||||||
hidden: | ||||||||||||||||||
!titleError && | ||||||||||||||||||
!loadError && | ||||||||||||||||||
!addError && | ||||||||||||||||||
!deleteError && | ||||||||||||||||||
!updateError, | ||||||||||||||||||
}, | ||||||||||||||||||
)} | ||||||||||||||||||
> | ||||||||||||||||||
<button data-cy="HideErrorButton" type="button" className="delete" /> | ||||||||||||||||||
{/* show only one message at a time */} | ||||||||||||||||||
{loadError && 'Unable to load todos'} | ||||||||||||||||||
<br /> | ||||||||||||||||||
{titleError && 'Title should not be empty'} | ||||||||||||||||||
<br /> | ||||||||||||||||||
{addError && 'Unable to add a todo'} | ||||||||||||||||||
<br /> | ||||||||||||||||||
{deleteError && 'Unable to delete a todo'} | ||||||||||||||||||
<br /> | ||||||||||||||||||
{updateError && 'Unable to update a todo'} | ||||||||||||||||||
</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,32 @@ | ||||
import { Todo } from '../types/Todo'; | ||||
import { client } from '../utils/fetchClient'; | ||||
|
||||
export const USER_ID = 839; | ||||
//https://mate.academy/students-api/todos?userId=839 | ||||
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
|
||||
|
||||
export const getTodos = () => { | ||||
return client.get<Todo[]>(`/todos?userId=${USER_ID}`); | ||||
}; | ||||
|
||||
// Add more methods here | ||||
|
||||
export const createTodos = ({ userId, title, completed }: Omit<Todo, 'id'>) => { | ||||
return client.post<Todo>(`/todos`, { | ||||
userId, | ||||
title, | ||||
completed, | ||||
}); | ||||
}; | ||||
|
||||
export const updateTodos = ({ id, userId, title, completed }: Todo) => { | ||||
return client.patch<Todo>(`/todos/${id}`, { | ||||
id, | ||||
userId, | ||||
title, | ||||
completed, | ||||
}); | ||||
}; | ||||
|
||||
export const deleteTodos = (todoId: number) => { | ||||
return client.delete(`/todos/${todoId}`); | ||||
}; |
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,76 @@ | ||
import classNames from 'classnames'; | ||
import { Todo } from '../../types/Todo'; | ||
import { Status } from '../../types/Status'; | ||
|
||
type Props = { | ||
todos: Todo[]; | ||
setStatus: (status: string) => void; | ||
status: string; | ||
deleteCompletedTodos: (todos: Todo[]) => void; | ||
}; | ||
|
||
const getDataCYByStatus = (status: string) => { | ||
switch (status) { | ||
case Object.keys(Status)[Object.values(Status).indexOf(Status.active)]: | ||
return 'FilterLinkActive'; | ||
case Object.keys(Status)[Object.values(Status).indexOf(Status.completed)]: | ||
return 'FilterLinkCompleted'; | ||
default: | ||
return 'FilterLinkAll'; | ||
} | ||
}; | ||
|
||
export const TodoFooter: React.FC<Props> = ({ | ||
todos, | ||
setStatus, | ||
status, | ||
deleteCompletedTodos, | ||
}) => { | ||
const itemsLeft = todos.filter(todo => !todo.completed).length; | ||
const handleTodosStatus = (currentStatus: string) => { | ||
setStatus(currentStatus); | ||
}; | ||
|
||
const isOneComplited = | ||
todos.filter(todo => todo.completed).length > 0 ? false : true; | ||
|
||
const handleDeleteAllCompleted = () => { | ||
deleteCompletedTodos(todos.filter(t => t.completed === true)); | ||
}; | ||
|
||
return ( | ||
<footer className="todoapp__footer" data-cy="Footer"> | ||
<span className="todo-count" data-cy="TodosCounter"> | ||
{itemsLeft} items left | ||
</span> | ||
|
||
{/* Active link should have the 'selected' class */} | ||
<nav className="filter" data-cy="Filter"> | ||
{Object.entries(Status).map(([key, value]) => ( | ||
<a | ||
key={key} | ||
href="#/" | ||
className={classNames('filter__link', { | ||
selected: status === key, | ||
})} | ||
data-cy={getDataCYByStatus(key)} | ||
onClick={() => handleTodosStatus(key)} | ||
> | ||
{value} | ||
</a> | ||
))} | ||
</nav> | ||
|
||
{/* this button should be disabled if there are no completed todos */} | ||
<button | ||
disabled={isOneComplited} | ||
type="button" | ||
className="todoapp__clear-completed" | ||
data-cy="ClearCompletedButton" | ||
onClick={handleDeleteAllCompleted} | ||
> | ||
Clear completed | ||
</button> | ||
</footer> | ||
); | ||
}; |
Oops, something went wrong.
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.
Remove comments