mirror of https://github.com/portainer/portainer
71 lines
2.2 KiB
TypeScript
71 lines
2.2 KiB
TypeScript
import { RawParams } from '@uirouter/react';
|
|
import clsx from 'clsx';
|
|
import { ReactNode } from 'react';
|
|
|
|
import { Icon } from '@@/Icon';
|
|
import { Link } from '@@/Link';
|
|
|
|
export interface Tab {
|
|
name: ReactNode;
|
|
icon: ReactNode;
|
|
widget: ReactNode;
|
|
selectedTabParam: string;
|
|
}
|
|
|
|
interface Props {
|
|
currentTabIndex: number;
|
|
tabs: Tab[];
|
|
}
|
|
|
|
// https://www.figma.com/file/g5TUMngrblkXM7NHSyQsD1/New-UI?type=design&node-id=148-2676&mode=design&t=JKyBWBupeC5WADk6-0
|
|
export function WidgetTabs({ currentTabIndex, tabs }: Props) {
|
|
// ensure that the selectedTab param is always valid
|
|
const invalidQueryParamValue = tabs.every(
|
|
(tab) => encodeURIComponent(tab.selectedTabParam) !== tab.selectedTabParam
|
|
);
|
|
|
|
if (invalidQueryParamValue) {
|
|
throw new Error('Invalid query param value for tab');
|
|
}
|
|
|
|
return (
|
|
<div className="row">
|
|
<div className="col-sm-12 !mb-0">
|
|
<div className="pl-2">
|
|
{tabs.map(({ name, icon }, index) => (
|
|
<Link
|
|
to="."
|
|
params={{ tab: tabs[index].selectedTabParam }}
|
|
key={index}
|
|
className={clsx(
|
|
'inline-flex items-center gap-2 border-0 border-b-2 border-solid bg-transparent px-4 py-2 hover:no-underline',
|
|
{
|
|
'border-blue-8 text-blue-8 th-highcontrast:border-blue-6 th-highcontrast:text-blue-6 th-dark:border-blue-6 th-dark:text-blue-6':
|
|
currentTabIndex === index,
|
|
'border-transparent text-gray-7 hover:text-gray-8 th-highcontrast:text-gray-6 hover:th-highcontrast:text-gray-5 th-dark:text-gray-6 hover:th-dark:text-gray-5':
|
|
currentTabIndex !== index,
|
|
}
|
|
)}
|
|
>
|
|
<Icon icon={icon} />
|
|
{name}
|
|
</Link>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// findSelectedTabIndex returns the index of the tab, or 0 if none is selected
|
|
export function findSelectedTabIndex(
|
|
{ params }: { params: RawParams },
|
|
tabs: Tab[]
|
|
) {
|
|
const selectedTabParam = params.tab || tabs[0].selectedTabParam;
|
|
const currentTabIndex = tabs.findIndex(
|
|
(tab) => tab.selectedTabParam === selectedTabParam
|
|
);
|
|
return currentTabIndex || 0;
|
|
}
|