forked from akai/readest
94 lines
2.6 KiB
TypeScript
94 lines
2.6 KiB
TypeScript
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<SectionInfoProps> = ({
|
|
bookKey,
|
|
section,
|
|
showDoubleBorder,
|
|
isScrolled,
|
|
isVertical,
|
|
isEink,
|
|
horizontalGap,
|
|
contentInsets,
|
|
gridInsets,
|
|
}) => {
|
|
const _ = useTranslation();
|
|
const { appService } = useEnv();
|
|
const { hoveredBookKey } = useReaderStore();
|
|
const { systemUIVisible, statusBarHeight } = useThemeStore();
|
|
const topInset = Math.max(
|
|
gridInsets.top,
|
|
appService?.isAndroidApp && systemUIVisible ? statusBarHeight / 2 : 0,
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<div
|
|
className={clsx(
|
|
'absolute left-0 right-0 top-0 z-10',
|
|
isScrolled && !isVertical && 'bg-base-100',
|
|
)}
|
|
style={{
|
|
height: `${topInset}px`,
|
|
}}
|
|
/>
|
|
<div
|
|
className={clsx(
|
|
'sectioninfo absolute flex items-center overflow-hidden font-sans',
|
|
isEink ? 'text-sm font-normal' : 'text-neutral-content text-xs font-light',
|
|
isVertical ? 'writing-vertical-rl max-h-[85%]' : 'top-0 h-[44px]',
|
|
isScrolled && !isVertical && 'bg-base-100',
|
|
)}
|
|
role='banner'
|
|
aria-label={section ? _('Section Title') + `: ${section}` : ''}
|
|
style={
|
|
isVertical
|
|
? {
|
|
top: `${contentInsets.top * 1.5}px`,
|
|
right: showDoubleBorder
|
|
? `calc(${contentInsets.right}px)`
|
|
: `calc(${Math.max(0, contentInsets.right - 32)}px)`,
|
|
width: showDoubleBorder ? '32px' : `${horizontalGap}%`,
|
|
height: `calc(100% - ${contentInsets.top + contentInsets.bottom}px)`,
|
|
}
|
|
: {
|
|
top: `${topInset}px`,
|
|
paddingInlineStart: `calc(${horizontalGap / 2}% + ${contentInsets.left}px)`,
|
|
width: '100%',
|
|
}
|
|
}
|
|
>
|
|
<span
|
|
aria-hidden='true'
|
|
className={clsx(
|
|
'text-center',
|
|
isVertical ? '' : 'line-clamp-1',
|
|
!isVertical && hoveredBookKey == bookKey && 'hidden',
|
|
)}
|
|
>
|
|
{section || ''}
|
|
</span>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default SectionInfo;
|