-
Notifications
You must be signed in to change notification settings - Fork 485
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix adaptive tabs and footer layout (#1302)
* fix tab list resize issue * footer layout adjustments for md screens * fix ts
- Loading branch information
Showing
19 changed files
with
221 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
import type { StyleProps, ThemingProps } from '@chakra-ui/react'; | ||
import { Box, Tab, TabList, useColorModeValue } from '@chakra-ui/react'; | ||
import React from 'react'; | ||
|
||
import { useScrollDirection } from 'lib/contexts/scrollDirection'; | ||
import useIsMobile from 'lib/hooks/useIsMobile'; | ||
import useIsSticky from 'lib/hooks/useIsSticky'; | ||
|
||
import TabCounter from './TabCounter'; | ||
import TabsMenu from './TabsMenu'; | ||
import type { Props as TabsProps } from './TabsWithScroll'; | ||
import useAdaptiveTabs from './useAdaptiveTabs'; | ||
import useScrollToActiveTab from './useScrollToActiveTab'; | ||
import { menuButton } from './utils'; | ||
|
||
const hiddenItemStyles: StyleProps = { | ||
position: 'absolute', | ||
top: '-9999px', | ||
left: '-9999px', | ||
visibility: 'hidden', | ||
}; | ||
|
||
interface Props extends TabsProps { | ||
activeTabIndex: number; | ||
onItemClick: (index: number) => void; | ||
themeProps: ThemingProps<'Tabs'>; | ||
} | ||
|
||
const AdaptiveTabsList = (props: Props) => { | ||
|
||
const scrollDirection = useScrollDirection(); | ||
const listBgColor = useColorModeValue('white', 'black'); | ||
const isMobile = useIsMobile(); | ||
|
||
const tabsList = React.useMemo(() => { | ||
return [ ...props.tabs, menuButton ]; | ||
}, [ props.tabs ]); | ||
|
||
const { tabsCut, tabsRefs, listRef, rightSlotRef } = useAdaptiveTabs(tabsList, isMobile); | ||
const isSticky = useIsSticky(listRef, 5, props.stickyEnabled); | ||
useScrollToActiveTab({ activeTabIndex: props.activeTabIndex, listRef, tabsRefs, isMobile }); | ||
|
||
return ( | ||
<TabList | ||
marginBottom={{ base: 6, lg: 8 }} | ||
mx={{ base: '-16px', lg: 'unset' }} | ||
px={{ base: '16px', lg: 'unset' }} | ||
flexWrap="nowrap" | ||
whiteSpace="nowrap" | ||
ref={ listRef } | ||
overflowX={{ base: 'auto', lg: 'initial' }} | ||
overscrollBehaviorX="contain" | ||
css={{ | ||
'scroll-snap-type': 'x mandatory', | ||
// hide scrollbar | ||
'&::-webkit-scrollbar': { /* Chromiums */ | ||
display: 'none', | ||
}, | ||
'-ms-overflow-style': 'none', /* IE and Edge */ | ||
'scrollbar-width': 'none', /* Firefox */ | ||
}} | ||
bgColor={ listBgColor } | ||
transitionProperty="top,box-shadow,background-color,color" | ||
transitionDuration="normal" | ||
transitionTimingFunction="ease" | ||
{ | ||
...(props.stickyEnabled ? { | ||
position: 'sticky', | ||
boxShadow: { base: isSticky ? 'md' : 'none', lg: 'none' }, | ||
top: { base: scrollDirection === 'down' ? `0px` : `106px`, lg: 0 }, | ||
zIndex: { base: 'sticky2', lg: 'docked' }, | ||
} : { }) | ||
} | ||
{ | ||
...(typeof props.tabListProps === 'function' ? | ||
props.tabListProps({ isSticky, activeTabIndex: props.activeTabIndex }) : | ||
props.tabListProps) | ||
} | ||
> | ||
{ tabsList.map((tab, index) => { | ||
if (!tab.id) { | ||
return ( | ||
<TabsMenu | ||
key="menu" | ||
tabs={ props.tabs } | ||
activeTab={ props.tabs[props.activeTabIndex] } | ||
tabsCut={ tabsCut } | ||
isActive={ props.activeTabIndex >= tabsCut } | ||
styles={ tabsCut < props.tabs.length ? | ||
// initially our cut is 0 and we don't want to show the menu button too | ||
// but we want to keep it in the tabs row so it won't collapse | ||
// that's why we only change opacity but not the position itself | ||
{ opacity: tabsCut === 0 ? 0 : 1 } : | ||
hiddenItemStyles | ||
} | ||
onItemClick={ props.onItemClick } | ||
buttonRef={ tabsRefs[index] } | ||
size={ props.themeProps.size || 'md' } | ||
/> | ||
); | ||
} | ||
|
||
return ( | ||
<Tab | ||
key={ tab.id } | ||
ref={ tabsRefs[index] } | ||
{ ...(index < tabsCut ? {} : hiddenItemStyles) } | ||
scrollSnapAlign="start" | ||
flexShrink={ 0 } | ||
sx={{ | ||
'&:hover span': { | ||
color: 'inherit', | ||
}, | ||
}} | ||
> | ||
{ typeof tab.title === 'function' ? tab.title() : tab.title } | ||
<TabCounter count={ tab.count }/> | ||
</Tab> | ||
); | ||
}) } | ||
{ | ||
props.rightSlot && tabsCut > 0 ? | ||
<Box ref={ rightSlotRef } ml="auto" { ...props.rightSlotProps }> { props.rightSlot } </Box> : | ||
null | ||
} | ||
</TabList> | ||
); | ||
}; | ||
|
||
export default React.memo(AdaptiveTabsList); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.