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

ViewedProductsSkeleton #421

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Conversation

Kseniya554
Copy link
Collaborator

Сделала скелетон в разделе "Наши предложения"
Высоту поставила ту же, что и в истории, карточки предложений почему-то не приходят
ссылка на задачу #309

@Kseniya554 Kseniya554 requested a review from aimenin June 17, 2024 05:35
@Kseniya554 Kseniya554 self-assigned this Jun 17, 2024
Copy link
Collaborator

@aimenin aimenin left a comment

Choose a reason for hiding this comment

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

Если у нас есть проблема с загрузкой с сервера - нужно сделать issue

margin:0;

& > *:not(:last-child) {
margin-bottom: 8px;
Copy link
Collaborator

Choose a reason for hiding this comment

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

зачем нам нужен margin-bottom? Если это карточка лежит во flex контейнере - в этом контейнере используем css свойство gap

{hasLabel && <span className={styles.viewedproducts__label}>Вы смотрели</span>}
</div>
<Scroll className={styles.viewedproducts__scroll} withManualGrip={true}>
{viewedProducts?.length !== 0
Copy link
Collaborator

Choose a reason for hiding this comment

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

если у нас не будет продуктов - всегда будут высвечиватся скелетон. Нужно посмотреть есть ли в redux поле с loading, если нет - то нужно его добавить и здесь ориентироваться на него

@aimenin aimenin self-requested a review June 25, 2024 19:13
isLoading: false
}

const loadingSlice = createSlice({
Copy link
Collaborator

Choose a reason for hiding this comment

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

мы не делаем отдельный слайс для загрузки, посмотри как сделано у Маргариты на странице категорий.

У нас уже есть слайс, откуда мы берем данные, там же будет и загрузка

@@ -49,19 +54,41 @@ const ViewedProducts: FC<IViewedProductsProps> = ({ title, hasLabel }) => {
)
})

useEffect(() => {
if (isLoading) {
const timer = setTimeout(() => {
Copy link
Collaborator

Choose a reason for hiding this comment

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

это нам еще зачем?
Если у нас нет запроса к серверу - нам вообще не нужен скелетон

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