Files
yaak/src-web/components/SelectFile.tsx
Gregory Schier c9b4e6181c Use new theme vars (#63)
This PR swaps the theme to use the new stuff from the Theme Studio
2024-08-13 07:44:28 -07:00

66 lines
1.9 KiB
TypeScript

import { open } from '@tauri-apps/plugin-dialog';
import classNames from 'classnames';
import mime from 'mime';
import type { ButtonProps } from './core/Button';
import { Button } from './core/Button';
import { IconButton } from './core/IconButton';
import { HStack } from './core/Stacks';
type Props = ButtonProps & {
onChange: (value: { filePath: string | null; contentType: string | null }) => void;
filePath: string | null;
inline?: boolean;
};
// Special character to insert ltr text in rtl element
const rtlEscapeChar = <>&#x200E;</>;
export function SelectFile({ onChange, filePath, inline, className }: Props) {
const handleClick = async () => {
const selected = await open({
title: 'Select File',
multiple: false,
});
if (selected == null) return;
const filePath = selected.path;
const contentType = typeof filePath === 'string' && filePath ? mime.getType(filePath) : null;
onChange({ filePath, contentType });
};
const handleClear = async () => {
onChange({ filePath: null, contentType: null });
};
return (
<HStack space={1.5} className="group relative justify-stretch">
<Button
className={classNames(className, 'font-mono text-xs rtl', inline && 'w-full')}
color="secondary"
size="sm"
onClick={handleClick}
>
{rtlEscapeChar}
{inline ? <>{filePath || 'Select File'}</> : <>Select File</>}
</Button>
{!inline && (
<>
{filePath && (
<IconButton
size="sm"
variant="border"
icon="x"
title="Unset File"
onClick={handleClear}
/>
)}
<div className="text-sm font-mono truncate rtl pr-3 text">
{rtlEscapeChar}
{filePath ?? 'No file selected'}
</div>
</>
)}
</HStack>
);
}