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

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

Merged
merged 4 commits into from
Dec 11, 2024

Conversation

aLesya66
Copy link
Contributor

@aLesya66 aLesya66 commented Nov 26, 2024

@keksobot keksobot changed the title Module8 task1 Открывается и закрывается Nov 26, 2024
keksobot pushed a commit that referenced this pull request Nov 26, 2024
@keksobot
Copy link
Contributor

♻️ Я собрал ваш пулреквест. Посмотреть можно здесь.

…менованы. в create-miniatuere добавли айди. в main добавлена констанста. в mas создаются новые элементы для комментариев. в full-picture основной когд, где прописана логика открытия и закрытия полноэкранного изображения.
@keksobot
Copy link
Contributor

keksobot commented Dec 9, 2024

♻️ Я собрал ваш пулреквест. Посмотреть можно здесь.

keksobot pushed a commit that referenced this pull request Dec 9, 2024
@@ -3,32 +3,20 @@ import { finalMas } from './mas.js';
const template = document.querySelector('#picture').content.querySelector('.picture');
const container = document.querySelector('.pictures');

const similarFinalMas = finalMas();

const fragment = document.createDocumentFragment();

Copy link
Collaborator

Choose a reason for hiding this comment

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

const renderThumbs = (arr) => {

/* <section class="pictures container">
<h2 class="pictures__title visually-hidden">Фотографии других пользователей</h2> */

export{finalMas};
Copy link
Collaborator

Choose a reason for hiding this comment

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

renderThumbs

js/main.js Outdated
similarFinalMas();
import {finalMas} from './createMiniature.js';
finalMas();
import './fullPicture.js';
Copy link
Collaborator

Choose a reason for hiding this comment

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

const data = finalMas();

renderThumbs(data);

const template = document.querySelector('#picture').content.querySelector('.picture');
const container = document.querySelector('.pictures');

const fragment = document.createDocumentFragment();
Copy link
Collaborator

Choose a reason for hiding this comment

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

фрагмент создай внутри функции

});
};

container.appendChild(fragment);
Copy link
Collaborator

Choose a reason for hiding this comment

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

это также внутри функции рендера

@keksobot
Copy link
Contributor

♻️ Я собрал ваш пулреквест. Посмотреть можно здесь.

keksobot pushed a commit that referenced this pull request Dec 10, 2024
@keksobot
Copy link
Contributor

♻️ Я собрал ваш пулреквест. Посмотреть можно здесь.

keksobot pushed a commit that referenced this pull request Dec 11, 2024
document.addEventListener('keydown', onDocumentKeydown);
}

container.addEventListener('click', (evt) => {
Copy link
Collaborator

Choose a reason for hiding this comment

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

слушатели раньше чем начались функции

document.addEventListener('keydown', onDocumentKeydown);
}

container.addEventListener('click', (evt) => {
Copy link
Collaborator

Choose a reason for hiding this comment

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

хочется чтоб действите было функцией, чтоб было точно понятно что тут происходит

а то у нас тут уже отрисоываются данные, а потом внезапно функция openPictureModal в которой только слушатели

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

import { finalMas } from './mas.js';

const dataThumbs = finalMas();renderThumbs(dataThumbs);
export {dataThumbs};
Copy link
Collaborator

Choose a reason for hiding this comment

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

а что вообще экспортируем мейн? должен ничего

мейн как основной узел, только при необходимости получает импорты и делает какие-то действия

Copy link
Collaborator

Choose a reason for hiding this comment

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

если ты хочешь передать полученый dataThumbs то экспортируй как функцию из рендера большого изображения, которое примит в себя как аргумент список тумб

import {renderThumbs} from './create-miniature.js';
import { finalMas } from './mas.js';

const dataThumbs = finalMas();renderThumbs(dataThumbs);
Copy link
Collaborator

Choose a reason for hiding this comment

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

странно что renderThumbs(dataThumbs); не на новой строке

@keksobot keksobot merged commit 7b30642 into htmlacademy-javascript:master Dec 11, 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.

3 participants