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

HAR-63: Верстаю страницу профиля #12

Merged
merged 7 commits into from
Apr 3, 2024

Conversation

glebkos
Copy link
Collaborator

@glebkos glebkos commented Mar 30, 2024

Copy link
Collaborator

@rissenberg rissenberg left a comment

Choose a reason for hiding this comment

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

Про нейминг. FSD подразумевает, что ты используешь в названиях классов и каталогов НазванияКемелСтайлом, а у тебя названия-через-дефисы, измени их

@@ -6,7 +6,7 @@
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
</head>
<body>
<div id="navbar"></div>
<div id="root"></div>
<header id="navbar"></header>
Copy link
Collaborator

Choose a reason for hiding this comment

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

для навбара лучше назвать блок тэгом nav

import {Profile} from '../pages/profile/ui/profile.js';


// class Mediator {
Copy link
Collaborator

Choose a reason for hiding this comment

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

если захочешь такую штуку написать, выноси ее в отдельный файл - а еще лучше в отдельный каталог в app

@glebkos glebkos changed the title HAR-63: Добавляю страницу профиля HAR-63: Врестаю страницу профиля Apr 2, 2024
@glebkos glebkos changed the title HAR-63: Врестаю страницу профиля HAR-63: Верстаю страницу профиля Apr 2, 2024
@glebkos glebkos requested a review from rissenberg April 2, 2024 14:19
Comment on lines 28 to 49
.button{
width: fit-content;
height: fit-content;
padding: 10px 20px;
border-radius: var(--element-border-radius);
}

.button:hover{
cursor: pointer;
}

.button_focus-font-size{
font-size: var(--focus-font-size);
}

.button-active{
background-color: var(--primary-button-color);
}

.button-passive{
background-color: var(--secondary-button-color);
}
Copy link
Collaborator

Choose a reason for hiding this comment

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

в app этот код лежать не должен - перенеси его в shared, например, в каталог styles (либо придумай другое название, которое бы давало понимание, что здесь лежат стили переиспользуемых компонентов)

Comment on lines 51 to 63
.input-fields{
display: flex;
flex-direction: column;
width: 400px;
gap: 20px;
}

.input-block{
display: flex;
flex-direction: column;
gap: 5px;
width: auto;
}
Copy link
Collaborator

Choose a reason for hiding this comment

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

аналогично предыдущему, но в другой файл - input.css

Comment on lines 105 to 112
.window{
width: 300px;
margin: 30px auto;
background-color: var(--window-color);
background-color: var(--background-color);
box-shadow: 0 0 15px var(--window-color);
border-radius: var(--element-border-radius);
padding: 10px 20px;
display: flex;
Copy link
Collaborator

Choose a reason for hiding this comment

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

а это, вероятно, в каталог pages (либо в widgets, не пойму, к чему он относится)

Copy link
Collaborator

Choose a reason for hiding this comment

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

к тому компоненту, который этот стиль использует. если таких много - то тоже в shared

@@ -11,6 +11,8 @@
visibility: hidden;
}


/*Поменять этот блок на input-block*/
Copy link
Collaborator

Choose a reason for hiding this comment

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

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

@glebkos glebkos requested a review from rissenberg April 3, 2024 08:04
@glebkos glebkos self-assigned this Apr 3, 2024
@rissenberg rissenberg merged commit 770e207 into develop Apr 3, 2024
2 checks 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