mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-21 06:59:17 -04:00
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
import { PropsWithChildren, ReactNode, Suspense } from 'react';
|
|
import { Outlet } from 'react-router';
|
|
import { useOperatingSystem } from '~/hooks/useOperatingSystem';
|
|
import DragRegion from '../../../components/DragRegion';
|
|
import Sidebar from './Sidebar';
|
|
|
|
export const Component = () => {
|
|
const os = useOperatingSystem();
|
|
|
|
return (
|
|
<div className="app-background flex w-full flex-row">
|
|
<Sidebar />
|
|
<div className="w-full">
|
|
{os !== 'browser' ? (
|
|
<div data-tauri-drag-region className="h-3 w-full" />
|
|
) : (
|
|
<div className="h-5" />
|
|
)}
|
|
<Suspense>
|
|
<DragRegion />
|
|
<Outlet />
|
|
</Suspense>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
interface HeaderProps extends PropsWithChildren {
|
|
title: string;
|
|
description: string | ReactNode;
|
|
rightArea?: ReactNode;
|
|
}
|
|
|
|
export const Heading = (props: HeaderProps) => {
|
|
return (
|
|
<div className="mb-3 flex">
|
|
{props.children}
|
|
<div className="grow">
|
|
<h1 className="text-2xl font-bold">{props.title}</h1>
|
|
<p className="mt-1 text-sm text-gray-400">{props.description}</p>
|
|
</div>
|
|
{props.rightArea}
|
|
<hr className="mt-4 border-gray-550" />
|
|
</div>
|
|
);
|
|
};
|