mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-19 15:37:08 +01:00
84 lines
2.3 KiB
TypeScript
84 lines
2.3 KiB
TypeScript
import { type } from "@tauri-apps/plugin-os";
|
|
import { settingsAtom } from "@yaakapp-internal/models";
|
|
import classNames from "classnames";
|
|
import { useAtomValue } from "jotai";
|
|
import type { CSSProperties, HTMLAttributes, ReactNode } from "react";
|
|
import React, { useMemo } from "react";
|
|
import { useIsFullscreen } from "../hooks/useIsFullscreen";
|
|
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;
|
|
hideControls?: boolean;
|
|
}
|
|
|
|
export function HeaderSize({
|
|
className,
|
|
style,
|
|
size,
|
|
ignoreControlsSpacing,
|
|
onlyXWindowControl,
|
|
children,
|
|
hideControls,
|
|
}: HeaderSizeProps) {
|
|
const settings = useAtomValue(settingsAtom);
|
|
const isFullscreen = useIsFullscreen();
|
|
const finalStyle = useMemo<CSSProperties>(() => {
|
|
const s = { ...style };
|
|
|
|
// Set the height (use min-height because scaling font size may make it larger
|
|
if (size === "md") s.minHeight = HEADER_SIZE_MD;
|
|
if (size === "lg") s.minHeight = HEADER_SIZE_LG;
|
|
|
|
if (type() === "macos") {
|
|
if (!isFullscreen) {
|
|
// Add large padding for window controls
|
|
s.paddingLeft = 72 / settings.interfaceScale;
|
|
}
|
|
} else if (!ignoreControlsSpacing && !settings.hideWindowControls) {
|
|
s.paddingRight = WINDOW_CONTROLS_WIDTH;
|
|
}
|
|
|
|
return s;
|
|
}, [
|
|
ignoreControlsSpacing,
|
|
isFullscreen,
|
|
settings.hideWindowControls,
|
|
settings.interfaceScale,
|
|
size,
|
|
style,
|
|
]);
|
|
|
|
return (
|
|
<div
|
|
data-tauri-drag-region
|
|
style={finalStyle}
|
|
className={classNames(
|
|
className,
|
|
"pt-[1px]", // Make up for bottom border
|
|
"select-none relative",
|
|
"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={classNames(
|
|
"pointer-events-none h-full w-full overflow-x-auto hide-scrollbars grid",
|
|
"px-1", // Give it some space on either end for focus outlines
|
|
)}
|
|
>
|
|
{children}
|
|
</div>
|
|
{!hideControls && <WindowControls onlyX={onlyXWindowControl} />}
|
|
</div>
|
|
);
|
|
}
|