mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-17 00:56:37 +01:00
56 lines
1.9 KiB
TypeScript
56 lines
1.9 KiB
TypeScript
import classNames from 'classnames';
|
|
import type { HTMLAttributes, ReactNode } from 'react';
|
|
import React from 'react';
|
|
import { useOsInfo } from '../hooks/useOsInfo';
|
|
import { useSettings } from '../hooks/useSettings';
|
|
import { useStoplightsVisible } from '../hooks/useStoplightsVisible';
|
|
import { HEADER_SIZE_LG, HEADER_SIZE_MD, WINDOW_CONTROLS_WIDTH } from '../lib/constants';
|
|
import { WindowControls } from './WindowControls';
|
|
|
|
interface HeaderSizeProps extends HTMLAttributes<HTMLDivElement> {
|
|
children?: ReactNode;
|
|
size: 'md' | 'lg';
|
|
ignoreControlsSpacing?: boolean;
|
|
onlyXWindowControl?: boolean;
|
|
}
|
|
|
|
export function HeaderSize({
|
|
className,
|
|
style,
|
|
size,
|
|
ignoreControlsSpacing,
|
|
onlyXWindowControl,
|
|
children,
|
|
}: HeaderSizeProps) {
|
|
const osInfo = useOsInfo();
|
|
const settings = useSettings();
|
|
const stoplightsVisible = useStoplightsVisible();
|
|
return (
|
|
<div
|
|
data-tauri-drag-region
|
|
style={{
|
|
...style,
|
|
// Add padding for macOS stoplights, but keep it the same width (account for the interface scale)
|
|
paddingLeft:
|
|
stoplightsVisible && !ignoreControlsSpacing ? 72 / settings.interfaceScale : undefined,
|
|
...(size === 'md' ? { height: HEADER_SIZE_MD } : {}),
|
|
...(size === 'lg' ? { height: HEADER_SIZE_LG } : {}),
|
|
...(osInfo.osType === 'macos' || ignoreControlsSpacing
|
|
? { paddingRight: '2px' }
|
|
: { paddingLeft: '2px', paddingRight: WINDOW_CONTROLS_WIDTH }),
|
|
}}
|
|
className={classNames(
|
|
className,
|
|
'select-none relative',
|
|
'pt-[1px] w-full border-b border-border-subtle min-w-0',
|
|
)}
|
|
>
|
|
{/* NOTE: This needs display:grid or else the element shrinks (even though scrollable) */}
|
|
<div className="pointer-events-none h-full w-full overflow-x-auto hide-scrollbars grid">
|
|
{children}
|
|
</div>
|
|
<WindowControls onlyX={onlyXWindowControl} />
|
|
</div>
|
|
);
|
|
}
|