-
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
ViewedProductsSkeleton #421
base: master
Are you sure you want to change the base?
Conversation
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.
Если у нас есть проблема с загрузкой с сервера - нужно сделать issue
margin:0; | ||
|
||
& > *:not(:last-child) { | ||
margin-bottom: 8px; |
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.
зачем нам нужен margin-bottom? Если это карточка лежит во flex контейнере - в этом контейнере используем css свойство gap
{hasLabel && <span className={styles.viewedproducts__label}>Вы смотрели</span>} | ||
</div> | ||
<Scroll className={styles.viewedproducts__scroll} withManualGrip={true}> | ||
{viewedProducts?.length !== 0 |
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.
если у нас не будет продуктов - всегда будут высвечиватся скелетон. Нужно посмотреть есть ли в redux поле с loading, если нет - то нужно его добавить и здесь ориентироваться на него
isLoading: false | ||
} | ||
|
||
const loadingSlice = createSlice({ |
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.
мы не делаем отдельный слайс для загрузки, посмотри как сделано у Маргариты на странице категорий.
У нас уже есть слайс, откуда мы берем данные, там же будет и загрузка
@@ -49,19 +54,41 @@ const ViewedProducts: FC<IViewedProductsProps> = ({ title, hasLabel }) => { | |||
) | |||
}) | |||
|
|||
useEffect(() => { | |||
if (isLoading) { | |||
const timer = setTimeout(() => { |
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.
это нам еще зачем?
Если у нас нет запроса к серверу - нам вообще не нужен скелетон
Сделала скелетон в разделе "Наши предложения"
Высоту поставила ту же, что и в истории, карточки предложений почему-то не приходят
ссылка на задачу #309