* - show task tab - tab bar * - add notes tab * - fixed unused style * - add button - fixed company edit note test * - fixed merge & dropdown * - added Tests - refactored directory structure activities - moved Task/Note Pages to corresponding modules - fixed TabList * lint
54 lines
1.2 KiB
TypeScript
54 lines
1.2 KiB
TypeScript
import * as React from 'react';
|
|
|
|
import { useRecoilScopedState } from '@/ui/utilities/recoil-scope/hooks/useRecoilScopedState';
|
|
|
|
import { activeTabIdScopedState } from '../states/activeTabIdScopedState';
|
|
|
|
import { Tab } from './Tab';
|
|
|
|
type SingleTabProps = {
|
|
title: string;
|
|
icon?: React.ReactNode;
|
|
id: string;
|
|
hide?: boolean;
|
|
disabled?: boolean;
|
|
};
|
|
|
|
type OwnProps = {
|
|
tabs: SingleTabProps[];
|
|
context: React.Context<string | null>;
|
|
};
|
|
|
|
export function TabList({ tabs, context }: OwnProps) {
|
|
const initialActiveTabId = tabs[0].id;
|
|
|
|
const [activeTabId, setActiveTabId] = useRecoilScopedState(
|
|
activeTabIdScopedState,
|
|
context,
|
|
);
|
|
|
|
React.useEffect(() => {
|
|
setActiveTabId(initialActiveTabId);
|
|
}, [initialActiveTabId, setActiveTabId]);
|
|
|
|
return (
|
|
<>
|
|
{tabs
|
|
.filter((tab) => !tab.hide)
|
|
.map((tab) => (
|
|
<Tab
|
|
id={tab.id}
|
|
key={tab.id}
|
|
title={tab.title}
|
|
icon={tab.icon}
|
|
active={tab.id === activeTabId}
|
|
onClick={() => {
|
|
setActiveTabId(tab.id);
|
|
}}
|
|
disabled={tab.disabled}
|
|
/>
|
|
))}
|
|
</>
|
|
);
|
|
}
|