d81f006979
## Summary Rename all Jotai-based state management hooks and utilities to a consistent naming convention that: 1. Removes legacy Recoil naming (`useRecoilXxxV2`, `createXxxV2`) 2. Always includes `Atom` in the name to distinguish from jotai native hooks 3. Follows a consistent ordering: `Atom` → `Component` → `Family` → `Type` (`State`/`Selector`) 4. Includes the type qualifier (`State` or `Selector`) in all value-reading hooks to avoid naming conflicts with jotai's native `useAtomValue` ## Naming Convention **Hooks**: `use[Set]Atom[Component][Family][State|Selector][Value|State|CallbackState]` **Utils**: `createAtom[Component][Family][State|Selector]` ## Changes ### Hooks renamed (definition files + all usages across ~1,500 files): | Old Name (Recoil) | Intermediate (Atom) | Final Name | |---|---|---| | `useRecoilValueV2` | `useAtomValue` | **`useAtomStateValue`** | | `useRecoilStateV2` | `useAtomState` | `useAtomState` | | `useSetRecoilStateV2` | `useSetAtomState` | `useSetAtomState` | | `useFamilyRecoilValueV2` | `useFamilyAtomValue` | **`useAtomFamilyStateValue`** | | `useSetFamilyRecoilStateV2` | `useSetFamilyAtomState` | **`useSetAtomFamilyState`** | | `useFamilySelectorValueV2` | `useFamilySelectorValue` | **`useAtomFamilySelectorValue`** | | `useFamilySelectorStateV2` | `useFamilySelectorState` | **`useAtomFamilySelectorState`** | | `useRecoilComponentValueV2` | `useAtomComponentValue` | **`useAtomComponentStateValue`** | | `useRecoilComponentStateV2` | `useAtomComponentState` | `useAtomComponentState` | | `useSetRecoilComponentStateV2` | `useSetAtomComponentState` | `useSetAtomComponentState` | | `useRecoilComponentFamilyValueV2` | `useAtomComponentFamilyValue` | **`useAtomComponentFamilyStateValue`** | | `useRecoilComponentFamilyStateV2` | `useAtomComponentFamilyState` | `useAtomComponentFamilyState` | | `useSetRecoilComponentFamilyStateV2` | `useSetAtomComponentFamilyState` | `useSetAtomComponentFamilyState` | | `useRecoilComponentSelectorValueV2` | `useAtomComponentSelectorValue` | `useAtomComponentSelectorValue` | | `useRecoilComponentFamilySelectorValueV2` | `useAtomComponentFamilySelectorValue` | `useAtomComponentFamilySelectorValue` | | `useRecoilComponentStateCallbackStateV2` | `useAtomComponentStateCallbackState` | `useAtomComponentStateCallbackState` | | `useRecoilComponentSelectorCallbackStateV2` | `useAtomComponentSelectorCallbackState` | `useAtomComponentSelectorCallbackState` | | `useRecoilComponentFamilyStateCallbackStateV2` | `useAtomComponentFamilyStateCallbackState` | `useAtomComponentFamilyStateCallbackState` | | `useRecoilComponentFamilySelectorCallbackStateV2` | `useAtomComponentFamilySelectorCallbackState` | `useAtomComponentFamilySelectorCallbackState` | ### Utilities renamed: | Old Name (Recoil) | Final Name | |---|---| | `createStateV2` | **`createAtomState`** | | `createFamilyStateV2` | **`createAtomFamilyState`** | | `createSelectorV2` | **`createAtomSelector`** | | `createFamilySelectorV2` | **`createAtomFamilySelector`** | | `createWritableSelectorV2` | **`createAtomWritableSelector`** | | `createWritableFamilySelectorV2` | **`createAtomWritableFamilySelector`** | | `createComponentStateV2` | **`createAtomComponentState`** | | `createComponentFamilyStateV2` | **`createAtomComponentFamilyState`** | | `createComponentSelectorV2` | **`createAtomComponentSelector`** | | `createComponentFamilySelectorV2` | **`createAtomComponentFamilySelector`** | ## Details - All definition files renamed to match new convention - All import paths and usages updated across the entire `twenty-front` package - Jotai's native `useAtomValue` is aliased as `useJotaiAtomValue` in the wrapper hook to avoid collision - Legacy Recoil files in `state/utils/` and `component-state/utils/` left untouched (separate naming scope) - Typecheck passes cleanly
115 lines
3.1 KiB
TypeScript
115 lines
3.1 KiB
TypeScript
import { CommandMenuItem } from '@/command-menu/components/CommandMenuItem';
|
|
import { useRegisterInputEvents } from '@/object-record/record-field/ui/meta-types/input/hooks/useRegisterInputEvents';
|
|
import { TextInput } from '@/ui/input/components/TextInput';
|
|
import { usePushFocusItemToFocusStack } from '@/ui/utilities/focus/hooks/usePushFocusItemToFocusStack';
|
|
import { useRemoveFocusItemFromFocusStackById } from '@/ui/utilities/focus/hooks/useRemoveFocusItemFromFocusStackById';
|
|
import { currentFocusIdSelector } from '@/ui/utilities/focus/states/currentFocusIdSelector';
|
|
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
|
import { FocusComponentType } from '@/ui/utilities/focus/types/FocusComponentType';
|
|
import styled from '@emotion/styled';
|
|
import { useRef, useState } from 'react';
|
|
import { type IconComponent } from 'twenty-ui/display';
|
|
|
|
type CommandMenuItemTextInputProps = {
|
|
id: string;
|
|
label: string;
|
|
Icon?: IconComponent;
|
|
value: string;
|
|
onChange: (value: string) => void;
|
|
placeholder?: string;
|
|
};
|
|
|
|
const StyledRightAlignedTextInput = styled(TextInput)`
|
|
input {
|
|
text-align: right;
|
|
}
|
|
`;
|
|
|
|
export const CommandMenuItemTextInput = ({
|
|
id,
|
|
label,
|
|
Icon,
|
|
value,
|
|
onChange,
|
|
placeholder,
|
|
}: CommandMenuItemTextInputProps) => {
|
|
const inputRef = useRef<HTMLInputElement>(null);
|
|
const focusId = `${id}-input`;
|
|
const [draftValue, setDraftValue] = useState(value);
|
|
|
|
const currentFocusId = useAtomStateValue(currentFocusIdSelector);
|
|
const isTextInputCurrentlyFocused = currentFocusId === focusId;
|
|
|
|
const { pushFocusItemToFocusStack } = usePushFocusItemToFocusStack();
|
|
const { removeFocusItemFromFocusStackById } =
|
|
useRemoveFocusItemFromFocusStackById();
|
|
|
|
const handleFocus = (event: React.FocusEvent<HTMLInputElement>) => {
|
|
event.target.select();
|
|
pushFocusItemToFocusStack({
|
|
focusId,
|
|
component: {
|
|
type: FocusComponentType.TEXT_INPUT,
|
|
instanceId: focusId,
|
|
},
|
|
globalHotkeysConfig: {
|
|
enableGlobalHotkeysConflictingWithKeyboard: false,
|
|
},
|
|
});
|
|
};
|
|
|
|
const handleBlur = () => {
|
|
removeFocusItemFromFocusStackById({ focusId });
|
|
};
|
|
|
|
const handleEscape = () => {
|
|
setDraftValue(value);
|
|
inputRef.current?.blur();
|
|
};
|
|
|
|
const handleEnter = () => {
|
|
onChange(draftValue);
|
|
inputRef.current?.blur();
|
|
};
|
|
|
|
const handleClickOutside = () => {
|
|
onChange(draftValue);
|
|
};
|
|
|
|
useRegisterInputEvents<string>({
|
|
focusId,
|
|
inputRef: inputRef,
|
|
inputValue: draftValue,
|
|
onEscape: handleEscape,
|
|
onEnter: handleEnter,
|
|
onClickOutside: isTextInputCurrentlyFocused
|
|
? handleClickOutside
|
|
: undefined,
|
|
});
|
|
|
|
const focusInput = () => {
|
|
inputRef.current?.focus();
|
|
};
|
|
|
|
return (
|
|
<CommandMenuItem
|
|
id={id}
|
|
label={label}
|
|
Icon={Icon}
|
|
onClick={focusInput}
|
|
RightComponent={
|
|
<StyledRightAlignedTextInput
|
|
ref={inputRef}
|
|
value={draftValue}
|
|
sizeVariant="sm"
|
|
onChange={setDraftValue}
|
|
onFocus={handleFocus}
|
|
onBlur={handleBlur}
|
|
placeholder={placeholder}
|
|
textClickOutsideId={focusId}
|
|
/>
|
|
}
|
|
/>
|
|
);
|
|
};
|