Skip to content
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

Pull request for review 2 #76

Open
wants to merge 538 commits into
base: main
Choose a base branch
from
Open

Pull request for review 2 #76

wants to merge 538 commits into from

Conversation

EvgeniiyaR
Copy link
Contributor

В данном Pull request находится актуальное состояние ветки Develop.

@EvgeniiyaR EvgeniiyaR requested a review from MaxOrel November 3, 2023 08:12
getUserInformation()
.then((user) => {
setIsLoggedIn(true);
if (user.role === 'volunteer') {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Лучше в таких случаях использовать switch case, а не if

first_name: '',
second_name: '',
last_name: '',
const [currentUser, setCurrentUser] = useState({
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Не думали завести централизованное хранилище Redux или Mobx?

Promise.all([getNews(), getPlatformAbout()])
.then(([dataNews, dataPlatformAbout]) => {
setNews(dataNews.results);
const { about_us: aboutUs, valuations } = dataPlatformAbout;
Copy link

@MaxOrel MaxOrel Nov 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Существует такой паттерн программирования называется адаптер, вот чтобы не деструктурировать с переименованием. Можете его применить кога вас не удовлетворяют поля которые приходят с сервера https://doka.guide/js/design-patterns-structural/

closeModal();
logOut()
.then(() => {
localStorage.removeItem('token');
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Вынесите работу с localStorage в отдельные функции, где ключ вы будете передавать как аргумент.


const router = createBrowserRouter([
const router = createHashRouter([
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Почему используете hash router? Если хотите публиковать на githubPages можете завести переменную окружения и если деплой идет на github pages то подставлять hashrouter, а вообще лучше использовать brouserRouter

}}
/>
<Footer platformEmail={platformEmail} />
<Modal modal={modal} closeModal={closeModal} />
{modal.isOpen &&
createPortal(
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Портал нужно создать внутри самого компонента модального окна, т.е. обернуть его в createPortal, чтобы каждый раз не подключать его

Copy link

@MaxOrel MaxOrel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Работа в целом написана хорошо, лучше конечно завести централизованное хранилище, т.к. данные размазаны по всему проекту и следить за ними и контролировать становится все сложнее. В качестве хранилища используйте либо Mobx, либо Redux Toolkit

DBKai and others added 30 commits December 15, 2023 15:33
Added presentation link
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants