mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-06 16:03:52 +00:00
e5b30770ce
* refactor: cuesheet table body * feat: add table navigation
133 lines
3.7 KiB
TypeScript
133 lines
3.7 KiB
TypeScript
import { ChangeEvent, KeyboardEvent, RefObject, useCallback, useEffect, useMemo, useState } from 'react';
|
|
import { getHotkeyHandler, HotkeyItem } from '@mantine/hooks';
|
|
|
|
interface UseReactiveTextInputReturn {
|
|
value: string;
|
|
onChange: (event: ChangeEvent) => void;
|
|
onBlur: (event: ChangeEvent) => void;
|
|
onKeyDown: (event: KeyboardEvent<HTMLElement>) => void;
|
|
}
|
|
|
|
export default function useReactiveTextInput(
|
|
initialText: string,
|
|
submitCallback: (newValue: string) => void,
|
|
ref: RefObject<HTMLInputElement>,
|
|
options?: {
|
|
submitOnEnter?: boolean;
|
|
submitOnCtrlEnter?: boolean;
|
|
onCancelUpdate?: () => void;
|
|
allowSubmitSameValue?: boolean;
|
|
allowKeyboardNavigation?: boolean;
|
|
},
|
|
): UseReactiveTextInputReturn {
|
|
const [text, setText] = useState<string>(initialText);
|
|
|
|
useEffect(() => {
|
|
if (typeof initialText === 'undefined') {
|
|
setText('');
|
|
} else {
|
|
setText(initialText);
|
|
}
|
|
}, [initialText]);
|
|
|
|
/**
|
|
* @description Handles Input value change
|
|
* @param {string} newValue
|
|
*/
|
|
const handleChange = useCallback(
|
|
(newValue: string) => {
|
|
if (newValue !== text) {
|
|
setText(newValue);
|
|
}
|
|
},
|
|
[text],
|
|
);
|
|
|
|
/**
|
|
* @description Handles submit events
|
|
* @param {string} valueToSubmit
|
|
*/
|
|
const handleSubmit = useCallback(
|
|
(valueToSubmit: string) => {
|
|
// No need to update if it hasn't changed
|
|
if (valueToSubmit === initialText && !options?.allowSubmitSameValue) {
|
|
options?.onCancelUpdate?.();
|
|
} else {
|
|
const cleanVal = valueToSubmit.trim();
|
|
submitCallback(cleanVal);
|
|
if (cleanVal !== valueToSubmit) {
|
|
setText(cleanVal);
|
|
}
|
|
}
|
|
|
|
setTimeout(() => {
|
|
if (options?.allowKeyboardNavigation) {
|
|
ref.current?.parentElement?.focus(); // Focus on parent element to continue keyboard navigation
|
|
} else {
|
|
ref.current?.blur();
|
|
}
|
|
}); // Immediate timeout to ensure text is set before blurring
|
|
},
|
|
[initialText, options, ref, submitCallback],
|
|
);
|
|
|
|
/**
|
|
* @description Handles escape events
|
|
* @param {string} valueToSubmit
|
|
*/
|
|
const handleEscape = useCallback(() => {
|
|
// No need to update if it hasn't changed
|
|
setText(initialText);
|
|
// force the text to be the initial value
|
|
if (ref.current) {
|
|
ref.current.value = initialText;
|
|
}
|
|
options?.onCancelUpdate?.();
|
|
setTimeout(() => ref.current?.blur()); // Immediate timeout to ensure text is set before blurring
|
|
}, [initialText, options, ref]);
|
|
|
|
const keyHandler = useMemo(() => {
|
|
const hotKeys: HotkeyItem[] = [
|
|
[
|
|
'Escape',
|
|
(event) => {
|
|
event.preventDefault();
|
|
handleEscape();
|
|
},
|
|
{ preventDefault: true },
|
|
],
|
|
];
|
|
|
|
if (options?.submitOnEnter) {
|
|
hotKeys.push(['Enter', () => handleSubmit(text)]);
|
|
}
|
|
|
|
if (options?.submitOnCtrlEnter) {
|
|
hotKeys.push(['mod + Enter', () => handleSubmit(text)]);
|
|
}
|
|
|
|
const hotKeyHandler = getHotkeyHandler(hotKeys);
|
|
|
|
return (event: KeyboardEvent<HTMLElement>) => {
|
|
// allow moving in input field with arrow keys
|
|
if (
|
|
event.key === 'ArrowLeft' ||
|
|
event.key === 'ArrowRight' ||
|
|
event.key === 'ArrowUp' ||
|
|
event.key === 'ArrowDown'
|
|
) {
|
|
event.stopPropagation();
|
|
}
|
|
|
|
hotKeyHandler(event);
|
|
};
|
|
}, [handleEscape, handleSubmit, options?.submitOnCtrlEnter, options?.submitOnEnter, text]);
|
|
|
|
return {
|
|
value: text,
|
|
onChange: (event: ChangeEvent) => handleChange((event.target as HTMLInputElement).value),
|
|
onBlur: (event: ChangeEvent) => handleSubmit((event.target as HTMLInputElement).value),
|
|
onKeyDown: keyHandler,
|
|
};
|
|
}
|