Files
spacedrive/interface/app/$libraryId/Explorer/FilePath/RenameTextBox.tsx
ameer2468 4eba80af62 [ENG-1190] New shortcuts system (#1718)
* wip new shortcuts system

* Shortcuts system and cleanup

add duplicate short, fix delete object windows context menu symbol, shortcuts system

Add cut to Edit menu

if quickPreview is open do not open the folder/doubleClick()

Update index.tsx

Update RenameTextBox.tsx

* add listObjectsNav for list view

* refactored

* Update useShortcut.ts

* Update useShortcut.ts

* remove imports

* fix copy pasting and conflicts
2023-11-06 10:37:24 +00:00

200 lines
5.1 KiB
TypeScript

import clsx from 'clsx';
import { forwardRef, useCallback, useEffect, useImperativeHandle, useRef, useState } from 'react';
import TruncateMarkup from 'react-truncate-markup';
import { Tooltip } from '@sd/ui';
import { useOperatingSystem, useShortcut } from '~/hooks';
import { useExplorerViewContext } from '../ViewContext';
interface Props extends React.HTMLAttributes<HTMLDivElement> {
name: string;
onRename: (newName: string) => void;
disabled?: boolean;
lines?: number;
}
export const RenameTextBox = forwardRef<HTMLDivElement, Props>(
({ name, onRename, disabled, className, lines, ...props }, _ref) => {
const explorerView = useExplorerViewContext();
const os = useOperatingSystem();
const [allowRename, setAllowRename] = useState(false);
const [isTruncated, setIsTruncated] = useState(false);
const renamable = useRef<boolean>(false);
const timeout = useRef<NodeJS.Timeout | null>(null);
const ref = useRef<HTMLDivElement>(null);
useImperativeHandle<HTMLDivElement | null, HTMLDivElement | null>(_ref, () => ref.current);
// 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<HTMLDivElement>) => {
switch (e.key) {
case 'Tab': {
e.preventDefault();
blur();
break;
}
case 'Escape': {
e.stopPropagation();
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;
}
};
const ellipsis = useCallback(() => {
const extension = name.lastIndexOf('.');
if (extension !== -1) return `...${name.slice(-(name.length - extension + 2))}`;
return `...${name.slice(-8)}`;
}, [name]);
useShortcut('renameObject', (e) => {
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 (explorerView.isRenaming && !allowRename) setAllowRename(true);
else explorerView.setIsRenaming(allowRename);
} else resetState();
}, [explorerView.isRenaming, disabled, allowRename, explorerView]);
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 (
<Tooltip
labelClassName="break-all"
tooltipClassName="!max-w-[250px]"
label={!isTruncated || allowRename ? null : name}
asChild
>
<div
ref={ref}
role="textbox"
autoCorrect="off"
contentEditable={allowRename}
suppressContentEditableWarning
className={clsx(
'cursor-default overflow-hidden rounded-md px-1.5 py-px text-xs text-ink outline-none',
allowRename && 'whitespace-normal bg-app !text-ink ring-2 ring-accent-deep',
className
)}
onDoubleClick={(e) => {
if (allowRename) e.stopPropagation();
renamable.current = false;
}}
onMouseDownCapture={(e) => e.button === 0 && (renamable.current = !disabled)}
onMouseUp={(e) => {
if (e.button === 0 || renamable.current || !allowRename) {
timeout.current = setTimeout(
() => renamable.current && setAllowRename(true),
350
);
}
}}
onBlur={() => {
handleRename();
resetState();
explorerView.setIsRenaming(false);
}}
onKeyDown={handleKeyDown}
{...props}
>
{allowRename ? (
name
) : (
<TruncateMarkup
lines={lines}
ellipsis={ellipsis}
onTruncate={setIsTruncated}
>
<div>{name}</div>
</TruncateMarkup>
)}
</div>
</Tooltip>
);
}
);