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

Открывается и закрывается #6

Merged
merged 4 commits into from
Mar 25, 2024

Conversation

IvanMalkS
Copy link
Contributor

@IvanMalkS IvanMalkS commented Mar 14, 2024

@keksobot keksobot changed the title big images Открывается и закрывается Mar 14, 2024
js/bigPicture.js Outdated
};

export const closeBigPicture = () => {
document.addEventListener('keydown', (event) => {
Copy link
Collaborator

Choose a reason for hiding this comment

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

Обработчики событий нужно удалять с DOM-элементов, иначе они будут там копиться до бесконечности и забивать память (я говорил об этом на занятии 14го марта, можешь посмотреть запись)

js/bigPicture.js Outdated
@@ -0,0 +1,67 @@
export const showBigPicture = (post) => {
Copy link
Collaborator

Choose a reason for hiding this comment

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

Имеет смысл разбить эту функцию на несколько:

  1. Функция для удаления классов скрывающих модалку
  2. Функция для рендера правильной картинки/описания
  3. Функция для рендера комментариев

js/bigPicture.js Outdated
bigPicture.classList.add('hidden');
};

export const closeBigPicture = () => {
Copy link
Collaborator

Choose a reason for hiding this comment

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

Комментарии нужно стирать после того как мы открыли новую картинку. Иначе они будут копиться до бесконечности (попробуй открыть два раза модалку с 3-4 комментами и поймешь о чем я)

@@ -0,0 +1,84 @@
const openModal = () => {
const bigPicture = document.querySelector('.big-picture');
Copy link
Collaborator

Choose a reason for hiding this comment

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

Давай в эту функцию добавим обработчики событий для закрытия модалки

js/bigPicture.js Outdated
const closeButton = document.getElementById('picture-cancel');
const clickHandler = () => {
close();
closeButton.removeEventListener('click', clickHandler);
Copy link
Collaborator

Choose a reason for hiding this comment

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

Удаление обработчиков событий должно находиться в функции ответственной за закрытие модалки. Вообще, логика должна быть примерно следующей:

  1. Открыли модалку - повесили обработчики событий
  2. Закрыли модалку - удалили обработчики событий

Copy link
Collaborator

Choose a reason for hiding this comment

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

Сейчас у тебя перестают работать обработчики событий если несколько раз закрыть и открыть модалку

@AlSudar AlSudar merged commit 9279e17 into htmlacademy-javascript:master Mar 25, 2024
1 check passed
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.

2 participants