File size: 2,237 Bytes
4e1096a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | import clsx from 'clsx';
import React from 'react';
import { PiNotePencil, PiRobot } from 'react-icons/pi';
import { useEnv } from '@/context/EnvContext';
import { useTranslation } from '@/hooks/useTranslation';
import { useSettingsStore } from '@/store/settingsStore';
import { NotebookTab } from '@/store/notebookStore';
interface NotebookTabNavigationProps {
activeTab: NotebookTab;
onTabChange: (tab: NotebookTab) => void;
}
const NotebookTabNavigation: React.FC<NotebookTabNavigationProps> = ({
activeTab,
onTabChange,
}) => {
const _ = useTranslation();
const { appService } = useEnv();
const { settings } = useSettingsStore();
const aiEnabled = settings?.aiSettings?.enabled ?? false;
const tabs: NotebookTab[] = aiEnabled ? ['notes', 'ai'] : [];
const getTabLabel = (tab: NotebookTab) => {
switch (tab) {
case 'notes':
return _('Notes');
case 'ai':
return _('AI');
default:
return '';
}
};
const getTabIcon = (tab: NotebookTab) => {
switch (tab) {
case 'notes':
return <PiNotePencil className='mx-auto' size={20} />;
case 'ai':
return <PiRobot className='mx-auto' size={20} />;
default:
return null;
}
};
return (
<div
className={clsx(
'bottom-tab border-base-300/50 bg-base-200/20 flex min-h-[52px] w-full border-t',
appService?.hasRoundedWindow && 'rounded-window-bottom-right',
)}
dir='ltr'
>
{tabs.map((tab) => (
<div
key={tab}
tabIndex={0}
role='button'
className={clsx(
'm-1.5 flex-1 cursor-pointer rounded-lg p-2 transition-colors duration-200',
activeTab === tab && 'bg-base-300/85',
)}
onClick={() => onTabChange(tab)}
onKeyDown={(e) => {
if (e.key === 'Enter' || e.key === ' ') {
e.preventDefault();
onTabChange(tab);
}
}}
title={getTabLabel(tab)}
aria-label={getTabLabel(tab)}
>
<div className='m-0 flex h-6 items-center p-0'>{getTabIcon(tab)}</div>
</div>
))}
</div>
);
};
export default NotebookTabNavigation;
|