-
Notifications
You must be signed in to change notification settings - Fork 1
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
Открывается и закрывается #12
Открывается и закрывается #12
Conversation
♻️ Я собрал ваш пулреквест. Посмотреть можно здесь. |
js/big-picture-popup.js
Outdated
bigPhotoPopup.querySelector('.social__comment-shown-count').textContent = currentPhoto.comments.length; | ||
bigPhotoPopup.querySelector('.social__comment-total-count').textContent = currentPhoto.comments.length; | ||
bigPhotoPopup.querySelector('.social__comments').innerHTML = ''; | ||
bigPhotoPopup.querySelector('.social__comments').append(comments); |
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.
Чтобы функция renderComments соответствовала своему названию, лучше перенести инструкции на 61, 62 строке внутрь нее
js/big-picture-popup.js
Outdated
} | ||
|
||
function renderComments(photoId) { | ||
const currentPhoto = photos.find((photo) => photo.id === Number(photoId)); |
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.
Так как внутри функции openBigPhotoPopup извлекается объект с данными о фото, в renderComments можно передавать массив с комментариями для того чтобы не запускать цикл .find лишний раз
🎓 Открывается и закрывается
💥 https://htmlacademy-javascript.github.io/2593079-kekstagram-2/12/