import clsx from 'clsx'; import { forwardRef, memo, useCallback, useEffect, useImperativeHandle, useRef, useState } from 'react'; import TruncateMarkup from 'react-truncate-markup'; import { useSelector } from '@sd/client'; import { dialogManager, Tooltip } from '@sd/ui'; import { useOperatingSystem, useShortcut } from '~/hooks'; import { explorerStore } from '../store'; export interface RenameTextBoxProps extends React.HTMLAttributes { name: string; onRename: (newName: string) => void; disabled?: boolean; lines?: number; // Temporary solution for TruncatedText in list view idleClassName?: string; } export const RenameTextBox = forwardRef( ({ name, onRename, disabled, className, idleClassName, lines, ...props }, _ref) => { const os = useOperatingSystem(); const [isRenaming, drag] = useSelector(explorerStore, (s) => [s.isRenaming, s.drag]); const ref = useRef(null); useImperativeHandle(_ref, () => ref.current); const renamable = useRef(false); const timeout = useRef(null); const [allowRename, setAllowRename] = useState(false); const [isTruncated, setIsTruncated] = useState(false); // Highlight file name up to extension or // fully if it's a directory, hidden file or has no extension const highlightText = useCallback(() => { if (!ref.current || !name) return; const node = ref.current.firstChild; if (!node) return; const endRange = name.lastIndexOf('.'); const range = document.createRange(); range.setStart(node, 0); range.setEnd(node, endRange > 1 ? endRange : name.length); const sel = window.getSelection(); if (!sel) return; sel.removeAllRanges(); sel.addRange(range); }, [name]); // Blur field const blur = useCallback(() => ref.current?.blur(), []); // Reset to original file name const reset = () => ref.current && (ref.current.innerText = name); const handleRename = async () => { let newName = ref.current?.innerText; if (newName?.endsWith('\n')) newName = newName.slice(0, -1); if (!newName || newName === name) { reset(); return; } onRename(newName); }; const handleKeyDown = (e: React.KeyboardEvent) => { e.stopPropagation(); switch (e.key) { case 'Tab': case 'Enter': { e.preventDefault(); blur(); break; } case 'Escape': { reset(); blur(); break; } case 'z': { if (os === 'macOS' ? e.metaKey : e.ctrlKey) { reset(); highlightText(); } } } }; const resetState = () => { setAllowRename(false); renamable.current = false; if (timeout.current) { clearTimeout(timeout.current); timeout.current = null; } }; useShortcut('renameObject', (e) => { if (dialogManager.isAnyDialogOpen()) return; e.preventDefault(); if (allowRename) blur(); else if (!disabled) setAllowRename(true); }); useEffect(() => { const element = ref.current; if (!element || !allowRename) return; const scroll = (e: WheelEvent) => { e.preventDefault(); element.scrollTop += e.deltaY; }; highlightText(); element.addEventListener('wheel', scroll); return () => element.removeEventListener('wheel', scroll); }, [allowRename, highlightText]); useEffect(() => { if (!disabled) { if (isRenaming && !allowRename) setAllowRename(true); else explorerStore.isRenaming = allowRename; } else resetState(); }, [isRenaming, disabled, allowRename]); useEffect(() => { const onMouseDown = (event: MouseEvent) => { if (!ref.current?.contains(event.target as Node)) blur(); }; document.addEventListener('mousedown', onMouseDown, true); return () => document.removeEventListener('mousedown', onMouseDown, true); }, [blur]); return (
{ if (allowRename) e.stopPropagation(); renamable.current = false; }} onMouseDownCapture={(e) => { if (allowRename) e.stopPropagation(); e.button === 0 && (renamable.current = !disabled); }} onMouseUp={(e) => { if (e.button === 0 || renamable.current || !allowRename) { timeout.current = setTimeout( () => renamable.current && setAllowRename(true), 350 ); } }} onBlur={() => { explorerStore.isRenaming = false; handleRename(); resetState(); }} onKeyDown={handleKeyDown} {...props} > {allowRename ? ( name ) : ( )}
); } ); RenameTextBox.displayName = 'RenameTextBox'; interface TruncatedTextProps { text: string; lines?: number; onTruncate: (wasTruncated: boolean) => void; } const TruncatedText = memo(({ text, lines, onTruncate }: TruncatedTextProps) => { const ellipsis = useCallback(() => { const extension = text.lastIndexOf('.'); if (extension !== -1) return `...${text.slice(-(text.length - extension + 2))}`; return `...${text.slice(-8)}`; }, [text]); return (
{text}
); }); TruncatedText.displayName = 'TruncatedText';