121788c42f
## Summary Removes the `recoil` dependency entirely from `package.json` and `twenty-front/package.json`, completing the migration to Jotai as the sole state management library. Removes all Recoil infrastructure: `RecoilRoot` wrapper from `App.tsx` and test decorators, `RecoilDebugObserver`, Recoil-specific ESLint rules (`use-getLoadable-and-getValue-to-get-atoms`, `useRecoilCallback-has-dependency-array`), and legacy Recoil utility hooks/types (`useRecoilComponentState`, `useRecoilComponentValue`, `createComponentState`, `createFamilyState`, `getSnapshotValue`, `cookieStorageEffect`, `localStorageEffect`, etc.). Renames all `V2`-suffixed Jotai state files and types to their canonical names (e.g., `ComponentStateV2` -> `ComponentState`, `agentChatInputStateV2` -> `agentChatInputState`, `SelectorCallbacksV2` -> `SelectorCallbacks`), and removes the now-redundant V1 counterparts. Updates ~433 files across the codebase to use the renamed Jotai imports, remove Recoil imports, and clean up test wrappers (`RecoilRootDecorator` -> `JotaiRootDecorator`).
95 lines
3.6 KiB
TypeScript
95 lines
3.6 KiB
TypeScript
import { useTheme } from '@emotion/react';
|
|
import { useLingui } from '@lingui/react/macro';
|
|
import { IconLink } from 'twenty-ui/display';
|
|
|
|
import { CommandMenuPageInfoLayout } from '@/command-menu/components/CommandMenuPageInfoLayout';
|
|
import { commandMenuPageInfoState } from '@/command-menu/states/commandMenuPageInfoState';
|
|
import { commandMenuShouldFocusTitleInputComponentState } from '@/command-menu/states/commandMenuShouldFocusTitleInputComponentState';
|
|
import { NavigationMenuItemType } from '@/navigation-menu-item/constants/NavigationMenuItemType';
|
|
import { StyledNavigationMenuItemIconContainer } from '@/navigation-menu-item/components/NavigationMenuItemIconContainer';
|
|
import { useUpdateLinkInDraft } from '@/navigation-menu-item/hooks/useUpdateLinkInDraft';
|
|
import { useWorkspaceSectionItems } from '@/navigation-menu-item/hooks/useWorkspaceSectionItems';
|
|
import { selectedNavigationMenuItemInEditModeState } from '@/navigation-menu-item/states/selectedNavigationMenuItemInEditModeState';
|
|
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
|
import { getNavigationMenuItemIconColors } from '@/navigation-menu-item/utils/getNavigationMenuItemIconColors';
|
|
import { TitleInput } from '@/ui/input/components/TitleInput';
|
|
import { useAtomComponentState } from '@/ui/utilities/state/jotai/hooks/useAtomComponentState';
|
|
|
|
export const CommandMenuLinkInfo = () => {
|
|
const theme = useTheme();
|
|
const { t } = useLingui();
|
|
const commandMenuPageInfo = useAtomStateValue(commandMenuPageInfoState);
|
|
const [shouldFocusTitleInput, setShouldFocusTitleInput] =
|
|
useAtomComponentState(
|
|
commandMenuShouldFocusTitleInputComponentState,
|
|
commandMenuPageInfo.instanceId,
|
|
);
|
|
const selectedNavigationMenuItemInEditMode = useAtomStateValue(
|
|
selectedNavigationMenuItemInEditModeState,
|
|
);
|
|
const items = useWorkspaceSectionItems();
|
|
const { updateLinkInDraft } = useUpdateLinkInDraft();
|
|
|
|
const defaultLabel = t`Link label`;
|
|
const placeholder = t`Link label`;
|
|
|
|
const selectedItem = selectedNavigationMenuItemInEditMode
|
|
? items.find(
|
|
(item) =>
|
|
item.itemType === NavigationMenuItemType.LINK &&
|
|
item.id === selectedNavigationMenuItemInEditMode,
|
|
)
|
|
: undefined;
|
|
|
|
if (!selectedItem) return null;
|
|
|
|
const itemId = selectedItem.id;
|
|
const itemName = selectedItem.name ?? defaultLabel;
|
|
|
|
const handleChange = (text: string) => {
|
|
updateLinkInDraft(itemId, { name: text });
|
|
};
|
|
|
|
const handleSave = () => {
|
|
const trimmed = itemName.trim();
|
|
const finalName = trimmed.length > 0 ? trimmed : defaultLabel;
|
|
|
|
if (finalName !== itemName) {
|
|
updateLinkInDraft(itemId, { name: finalName });
|
|
}
|
|
};
|
|
|
|
return (
|
|
<CommandMenuPageInfoLayout
|
|
icon={
|
|
<StyledNavigationMenuItemIconContainer
|
|
$backgroundColor={getNavigationMenuItemIconColors(theme).link}
|
|
>
|
|
<IconLink
|
|
size={theme.spacing(3.5)}
|
|
color={theme.grayScale.gray1}
|
|
stroke={theme.icon.stroke.md}
|
|
/>
|
|
</StyledNavigationMenuItemIconContainer>
|
|
}
|
|
title={
|
|
<TitleInput
|
|
instanceId={`link-label-${itemId}`}
|
|
sizeVariant="sm"
|
|
value={itemName}
|
|
onChange={handleChange}
|
|
placeholder={placeholder}
|
|
onEnter={handleSave}
|
|
onEscape={handleSave}
|
|
onClickOutside={handleSave}
|
|
onTab={handleSave}
|
|
onShiftTab={handleSave}
|
|
shouldFocus={shouldFocusTitleInput}
|
|
onFocus={() => setShouldFocusTitleInput(false)}
|
|
/>
|
|
}
|
|
label={t`link`}
|
|
/>
|
|
);
|
|
};
|