mirror of
https://github.com/cpvalente/ontime.git
synced 2026-07-26 10:38:55 +00:00
1849b4d39f
* chore: migrate eslint to oxlint * chore: migrate prettier to oxfmt * chore: migrate typescript * chore: toThrow should have a expected value * chore: cast test value as Day * chore: small title fix * chore: mocks should be hoisted * chore: incorrect async useage * chore: test should be inside description * chore: test sohuld include an expeced * chore: oxfmt --------- Co-authored-by: alex-Arc <omnivox@LAPTOP-RC5SNBVV.localdomain>
159 lines
4.4 KiB
TypeScript
159 lines
4.4 KiB
TypeScript
import { HotkeyItem, getHotkeyHandler } from '@mantine/hooks';
|
|
import { ChangeEvent, KeyboardEvent, RefObject, useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
|
|
|
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 | HTMLTextAreaElement | null>,
|
|
options?: {
|
|
submitOnEnter?: boolean;
|
|
submitOnCtrlEnter?: boolean;
|
|
onCancelUpdate?: () => void;
|
|
allowSubmitSameValue?: boolean;
|
|
allowKeyboardNavigation?: boolean;
|
|
},
|
|
): UseReactiveTextInputReturn {
|
|
const [text, setText] = useState<string>(initialText);
|
|
// track whether we are submitting via a submit key (eg enter) and avoid submitting again on blur
|
|
const isKeyboardSubmitting = useRef(false);
|
|
|
|
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',
|
|
() => {
|
|
isKeyboardSubmitting.current = true;
|
|
handleSubmit(text);
|
|
// clear flag after blur has been processed
|
|
setTimeout(() => {
|
|
isKeyboardSubmitting.current = false;
|
|
}, 0);
|
|
},
|
|
]);
|
|
}
|
|
|
|
if (options?.submitOnCtrlEnter) {
|
|
hotKeys.push([
|
|
'mod + Enter',
|
|
() => {
|
|
isKeyboardSubmitting.current = true;
|
|
handleSubmit(text);
|
|
// clear flag after blur has been processed
|
|
setTimeout(() => {
|
|
isKeyboardSubmitting.current = false;
|
|
}, 0);
|
|
},
|
|
]);
|
|
}
|
|
|
|
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) => {
|
|
if (!isKeyboardSubmitting.current) {
|
|
handleSubmit((event.target as HTMLInputElement).value);
|
|
}
|
|
},
|
|
onKeyDown: keyHandler,
|
|
};
|
|
}
|