vega-frontend-monorepo/apps/trading/pages/markets/grid-tabs.tsx

86 lines
2.6 KiB
TypeScript
Raw Normal View History

2022-03-02 07:31:35 +00:00
import * as Tabs from '@radix-ui/react-tabs';
import classNames from 'classnames';
import { useRouter } from 'next/router';
import type { ReactElement, ReactNode } from 'react';
import { Children, isValidElement, useEffect, useState } from 'react';
interface GridTabsProps {
children: ReactElement<GridTabProps>[];
group: string;
}
export const GridTabs = ({ children, group }: GridTabsProps) => {
const { query, asPath, replace } = useRouter();
const [activeTab, setActiveTab] = useState<string>(() => {
const tab = query[group];
if (typeof tab === 'string') {
return tab;
}
// Default to first tab
return children[0].props.id;
});
// Update the query string in the url when the active tab changes
// uses group property as the query stirng key
useEffect(() => {
const [url, queryString] = asPath.split('?');
const searchParams = new URLSearchParams(queryString);
searchParams.set(group, activeTab as string);
2022-03-02 07:40:38 +00:00
replace(`${url}?${searchParams.toString()}`);
// replace and using asPath causes a render loop
// eslint-disable-next-line
}, [activeTab, group]);
return (
2022-03-02 07:31:35 +00:00
<Tabs.Root
value={activeTab}
className="h-full grid grid-rows-[min-content_1fr]"
onValueChange={(value) => setActiveTab(value)}
>
<Tabs.List
2022-03-11 05:19:44 +00:00
className="flex flex-nowrap gap-4 overflow-x-auto"
role="tablist"
>
{Children.map(children, (child) => {
2022-03-02 07:31:35 +00:00
if (!isValidElement(child)) return null;
const isActive = child.props.id === activeTab;
const triggerClass = classNames('py-4', 'px-12', 'capitalize', {
'text-black dark:text-vega-yellow': isActive,
'bg-white dark:bg-black': isActive,
'text-black dark:text-white': !isActive,
'bg-black-10 dark:bg-white-10': !isActive,
});
2022-03-02 07:31:35 +00:00
return (
<Tabs.Trigger value={child.props.id} className={triggerClass}>
2022-03-02 07:31:35 +00:00
{child.props.name}
</Tabs.Trigger>
);
})}
<div className="bg-black-10 dark:bg-white-10 grow"></div>
2022-03-02 07:31:35 +00:00
</Tabs.List>
<div className="h-full overflow-auto">
{Children.map(children, (child) => {
2022-03-02 07:31:35 +00:00
if (!isValidElement(child)) return null;
return (
<Tabs.Content value={child.props.id} className="h-full">
2022-03-02 07:31:35 +00:00
{child.props.children}
</Tabs.Content>
);
})}
</div>
2022-03-02 07:31:35 +00:00
</Tabs.Root>
);
};
interface GridTabProps {
children: ReactNode;
id: string;
name: string;
}
export const GridTab = ({ children }: GridTabProps) => {
return <div>{children}</div>;
};