Move Expressions/Styles tab to the top/bottom depending on placement
On small screens, the PosePicker opens down, and we put the tabs on the top, to be near the button. On large screens, the PosePicker opens up, and we put the tabs on the bottom, to be near the button. Previously, we always set `placement="bottom-end"`, which on small screens behaved as written, and on large screens there would not be space to open downward so it would open upward instead. Now, we set the placement explicitly based on a media breakpoint, and we change the `flexDirection` of the tabs container on the same media breakpoint.
This commit is contained in:
parent
49158b2c54
commit
8f934e83b8
1 changed files with 21 additions and 11 deletions
|
@ -17,6 +17,7 @@ import {
|
||||||
TabPanel,
|
TabPanel,
|
||||||
TabPanels,
|
TabPanels,
|
||||||
VisuallyHidden,
|
VisuallyHidden,
|
||||||
|
useBreakpointValue,
|
||||||
useColorModeValue,
|
useColorModeValue,
|
||||||
useTheme,
|
useTheme,
|
||||||
useToast,
|
useToast,
|
||||||
|
@ -85,6 +86,8 @@ function PosePicker({
|
||||||
const poseInfos = posesQuery.poseInfos;
|
const poseInfos = posesQuery.poseInfos;
|
||||||
const altStyles = altStylesQuery.data ?? [];
|
const altStyles = altStylesQuery.data ?? [];
|
||||||
|
|
||||||
|
const placement = useBreakpointValue({ base: "bottom-end", md: "top-end" });
|
||||||
|
|
||||||
// Resize the Popover when we toggle support mode, because it probably will
|
// Resize the Popover when we toggle support mode, because it probably will
|
||||||
// affect the content size.
|
// affect the content size.
|
||||||
React.useLayoutEffect(() => {
|
React.useLayoutEffect(() => {
|
||||||
|
@ -161,7 +164,7 @@ function PosePicker({
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Popover
|
<Popover
|
||||||
placement="bottom-end"
|
placement={placement}
|
||||||
returnFocusOnClose
|
returnFocusOnClose
|
||||||
onOpen={onLockFocus}
|
onOpen={onLockFocus}
|
||||||
onClose={onUnlockFocus}
|
onClose={onUnlockFocus}
|
||||||
|
@ -176,9 +179,22 @@ function PosePicker({
|
||||||
</PopoverTrigger>
|
</PopoverTrigger>
|
||||||
<Portal>
|
<Portal>
|
||||||
<PopoverContent>
|
<PopoverContent>
|
||||||
<Tabs size="sm" variant="soft-rounded">
|
<Tabs
|
||||||
|
size="sm"
|
||||||
|
variant="soft-rounded"
|
||||||
|
display="flex"
|
||||||
|
flexDirection={{ base: "column", md: "column-reverse" }}
|
||||||
|
paddingY="2"
|
||||||
|
gap="2"
|
||||||
|
>
|
||||||
|
<SupportOnly>
|
||||||
|
<TabList paddingX="2" paddingY="0">
|
||||||
|
<Tab width="50%">Expressions</Tab>
|
||||||
|
<Tab width="50%">Styles</Tab>
|
||||||
|
</TabList>
|
||||||
|
</SupportOnly>
|
||||||
<TabPanels position="relative">
|
<TabPanels position="relative">
|
||||||
<TabPanel>
|
<TabPanel paddingX="4" paddingY="0">
|
||||||
{isInSupportMode ? (
|
{isInSupportMode ? (
|
||||||
<PosePickerSupport
|
<PosePickerSupport
|
||||||
speciesId={speciesId}
|
speciesId={speciesId}
|
||||||
|
@ -201,7 +217,7 @@ function PosePicker({
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
<SupportOnly>
|
<SupportOnly>
|
||||||
<Box position="absolute" top="5" left="3">
|
<Box position="absolute" top="1" left="3">
|
||||||
<PosePickerSupportSwitch
|
<PosePickerSupportSwitch
|
||||||
isChecked={isInSupportMode}
|
isChecked={isInSupportMode}
|
||||||
onChange={(e) => setIsInSupportMode(e.target.checked)}
|
onChange={(e) => setIsInSupportMode(e.target.checked)}
|
||||||
|
@ -209,17 +225,11 @@ function PosePicker({
|
||||||
</Box>
|
</Box>
|
||||||
</SupportOnly>
|
</SupportOnly>
|
||||||
</TabPanel>
|
</TabPanel>
|
||||||
<TabPanel>
|
<TabPanel paddingX="4" paddingY="0">
|
||||||
<StyleSelect altStyles={altStyles} />
|
<StyleSelect altStyles={altStyles} />
|
||||||
<StyleExplanation />
|
<StyleExplanation />
|
||||||
</TabPanel>
|
</TabPanel>
|
||||||
</TabPanels>
|
</TabPanels>
|
||||||
<SupportOnly>
|
|
||||||
<TabList paddingX="2" paddingY="1">
|
|
||||||
<Tab width="50%">Expressions</Tab>
|
|
||||||
<Tab width="50%">Styles</Tab>
|
|
||||||
</TabList>
|
|
||||||
</SupportOnly>
|
|
||||||
</Tabs>
|
</Tabs>
|
||||||
<PopoverArrow />
|
<PopoverArrow />
|
||||||
</PopoverContent>
|
</PopoverContent>
|
||||||
|
|
Loading…
Reference in a new issue