import clsx from 'clsx'; import React from 'react'; import { Insets } from '@/types/misc'; import { useEnv } from '@/context/EnvContext'; import { useThemeStore } from '@/store/themeStore'; import { useReaderStore } from '@/store/readerStore'; import { useTranslation } from '@/hooks/useTranslation'; interface SectionInfoProps { bookKey: string; section?: string; showDoubleBorder: boolean; isScrolled: boolean; isVertical: boolean; isEink: boolean; horizontalGap: number; contentInsets: Insets; gridInsets: Insets; } const SectionInfo: React.FC = ({ bookKey, section, showDoubleBorder, isScrolled, isVertical, isEink, horizontalGap, contentInsets, gridInsets, }) => { const _ = useTranslation(); const { appService } = useEnv(); const { hoveredBookKey, setHoveredBookKey } = useReaderStore(); const { systemUIVisible, statusBarHeight } = useThemeStore(); const topInset = Math.max( gridInsets.top, appService?.isAndroidApp && systemUIVisible ? statusBarHeight / 2 : 0, ); return ( <>
setHoveredBookKey(bookKey)} style={ isVertical ? { top: `${(contentInsets.top - gridInsets.top) * 1.5}px`, right: showDoubleBorder ? `calc(${contentInsets.right}px)` : `calc(${Math.max(0, contentInsets.right - 32)}px)`, width: showDoubleBorder ? '32px' : `${contentInsets.right}px`, height: `calc(100% - ${contentInsets.top + contentInsets.bottom}px)`, } : { top: `${topInset}px`, paddingInline: `calc(${horizontalGap / 2}% + ${contentInsets.left / 2}px)`, width: '100%', } } > {section || ''}
); }; export default SectionInfo;