-
Notifications
You must be signed in to change notification settings - Fork 0
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
steroids/dev#578 Сделать логику сохранения элементов дерево в local storage #316
Conversation
src/hooks/useTree.ts
Outdated
saveInClientStorage(); | ||
}); | ||
|
||
window.addEventListener('beforeunload', saveInClientStorage); |
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.
- Зачем эта строчка?
- Обращение к window, document всегда должно быть в хуке, а не просто в компоненте
- Нельзя просто так обращаться к window, document, потому что их нет в ssr режиме
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.
В момент перезагрузки страницы, данные не записывались в localstorage.
Переделал, добавил хук useBeforeUnload
с его помощью сохраняет в localstorage.
Если такой вариант не подойдет, предлагаю созвониться
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.
Хорошо, такое решение подойдет. Но нужно проверить его в режиме SSR. Попробуй запустить сайт стероидов локально командой yarn ssr, если все корректно отработает, то можешь мержить этот pr
No description provided.