-
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
Открывается и закрывается (часть 2) #9
base: master
Are you sure you want to change the base?
Открывается и закрывается (часть 2) #9
Conversation
♻️ Я собрал ваш пулреквест. Посмотреть можно здесь. |
1 similar comment
♻️ Я собрал ваш пулреквест. Посмотреть можно здесь. |
js/render-comments.js
Outdated
|
||
if (renderedCommentsLength >= comments.length) { | ||
commentsLoader.classList.add('hidden'); | ||
commentsLoader.classList.add('.hidden'); |
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.
кажется что . перед хидден тут не нужна, тк уже указываешь что будет добавлен класс
commentsLoader.classList.remove('hidden'); | ||
commentsLoader.removeEventListener('click', renderNextComments); | ||
}; | ||
|
||
const renderComments = (currentPhotoComments) => { | ||
comments = currentPhotoComments; | ||
renderNextComments(); |
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.
в эту функцию передай комментарии из currentPhotoComments
без промежуточных переменных comments
js/render-comments.js
Outdated
@@ -27,27 +27,27 @@ const renderNextComments = () => { | |||
commentsList.appendChild(commentsFragment); | |||
|
|||
commentCount.firstChild.textContent = `${renderedCommentsLength} из `; |
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.
" из "
отсюда убираем обязательно
только число меняем
commentsLoader.classList.remove('hidden'); | ||
commentsLoader.removeEventListener('click', renderNextComments); | ||
}; | ||
|
||
const renderComments = (currentPhotoComments) => { | ||
comments = currentPhotoComments; | ||
renderNextComments(); | ||
|
||
commentsLoader.addEventListener('click', renderNextComments); |
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.
тут ошибка, надо проверить почему commentsLoader элемента нет, есть какой-то рассинхрон в разметке
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.
и судя по всему ошибка в опечатке
у тебя
const commentsLoader = document.querySelector('.social__comment-loader');
а у элемента такой список классов class="social__comments-loader comments-loader"
есть S у комментс
а вообще для селектора лучше в данном случае взять comments-loader
♻️ Я собрал ваш пулреквест. Посмотреть можно здесь. |
♻️ Я собрал ваш пулреквест. Посмотреть можно здесь. |
🎓 Открывается и закрывается (часть 2)
💥 https://htmlacademy-javascript.github.io/2357681-kekstagram-2/9/