mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-16 05:56:47 +01:00
22 lines
604 B
TypeScript
22 lines
604 B
TypeScript
import { useCallback } from 'react';
|
|
import { CommandPalette } from '../components/CommandPalette';
|
|
import { useDialog } from '../components/DialogContext';
|
|
|
|
export function useToggleCommandPalette() {
|
|
const dialog = useDialog();
|
|
const togglePalette = useCallback(() => {
|
|
dialog.toggle({
|
|
id: 'command_palette',
|
|
size: 'dynamic',
|
|
hideX: true,
|
|
className: '!max-h-[min(30rem,calc(100vh-4rem))]',
|
|
vAlign: 'top',
|
|
noPadding: true,
|
|
noScroll: true,
|
|
render: ({ hide }) => <CommandPalette onClose={hide} />,
|
|
});
|
|
}, [dialog]);
|
|
|
|
return togglePalette;
|
|
}
|