Prechádzať zdrojové kódy

Revert prev select changes, use transition instead (#1162)

Bartosz Dryl 3 rokov pred
rodič
commit
565b3328f3

+ 20 - 10
src/components/InfiniteGrids/InfiniteChannelWithVideosGrid.tsx

@@ -1,4 +1,5 @@
 import React, { FC, Fragment, useCallback, useEffect, useMemo, useState } from 'react'
+import { CSSTransition } from 'react-transition-group'
 
 import { useLanguages } from '@/api/hooks'
 import {
@@ -14,6 +15,7 @@ import { useInfiniteGrid } from '@/components/InfiniteGrids/useInfiniteGrid'
 import { languages } from '@/config/languages'
 import { GridHeadingContainer, LoadMoreButton, Select } from '@/shared/components'
 import { SvgGlyphChevronRight } from '@/shared/icons'
+import { transitions } from '@/shared/theme'
 
 import {
   AdditionalLink,
@@ -139,16 +141,24 @@ export const InfiniteChannelWithVideosGrid: FC<InfiniteChannelWithVideosGridProp
           <GridHeadingContainer>
             {!isReady ? <StyledSkeletonLoader height={23} width={250} /> : <Title variant="h4">{title}</Title>}
             {languageSelector && (
-              <LanguageSelectWrapper>
-                <Select
-                  items={mappedLanguages || []}
-                  disabled={languagesLoading}
-                  value={selectedLanguage}
-                  size="small"
-                  helperText={null}
-                  onChange={onSelectLanguage}
-                />
-              </LanguageSelectWrapper>
+              <CSSTransition
+                in={!!queryNodeLanguages?.length}
+                timeout={parseInt(transitions.timings.loading)}
+                classNames={transitions.names.fade}
+                mountOnEnter
+                unmountOnExit
+              >
+                <LanguageSelectWrapper>
+                  <Select
+                    items={mappedLanguages}
+                    disabled={languagesLoading}
+                    value={selectedLanguage}
+                    size="small"
+                    helperText={null}
+                    onChange={onSelectLanguage}
+                  />
+                </LanguageSelectWrapper>
+              </CSSTransition>
             )}
             {additionalLink && (
               <AdditionalLink

+ 0 - 1
src/shared/components/Select/Select.style.ts

@@ -29,7 +29,6 @@ export const SelectButton = styled.button<SelectButtonProps>`
   text-align: left;
   display: flex;
   justify-content: space-between;
-  white-space: nowrap;
   align-items: center;
 
   ${({ size }) => {