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
146 lines
4.4 KiB
TypeScript
146 lines
4.4 KiB
TypeScript
import { agentChatUsageStateV2 } from '@/ai/states/agentChatUsageStateV2';
|
|
import { currentAIChatThreadStateV2 } from '@/ai/states/currentAIChatThreadStateV2';
|
|
import { currentAIChatThreadTitleState } from '@/ai/states/currentAIChatThreadTitleState';
|
|
import { useOpenAskAIPageInCommandMenu } from '@/command-menu/hooks/useOpenAskAIPageInCommandMenu';
|
|
import { useAtomState } from '@/ui/utilities/state/jotai/hooks/useAtomState';
|
|
import { useSetAtomState } from '@/ui/utilities/state/jotai/hooks/useSetAtomState';
|
|
import { useTheme } from '@emotion/react';
|
|
import styled from '@emotion/styled';
|
|
import { useLingui } from '@lingui/react/macro';
|
|
import { isDefined } from 'twenty-shared/utils';
|
|
import { IconSparkles } from 'twenty-ui/display';
|
|
import { type AgentChatThread } from '~/generated-metadata/graphql';
|
|
|
|
const StyledThreadsList = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: ${({ theme }) => theme.spacing(1)};
|
|
`;
|
|
|
|
const StyledDateGroup = styled.div`
|
|
margin-bottom: ${({ theme }) => theme.spacing(4)};
|
|
`;
|
|
|
|
const StyledDateHeader = styled.div`
|
|
color: ${({ theme }) => theme.font.color.light};
|
|
font-size: ${({ theme }) => theme.font.size.xs};
|
|
font-weight: 600;
|
|
margin-bottom: ${({ theme }) => theme.spacing(1)};
|
|
`;
|
|
|
|
const StyledThreadItem = styled.div<{ isSelected?: boolean }>`
|
|
display: flex;
|
|
align-items: center;
|
|
gap: ${({ theme }) => theme.spacing(2)};
|
|
border-radius: ${({ theme }) => theme.border.radius.sm};
|
|
transition: all 0.2s ease;
|
|
margin-bottom: ${({ theme }) => theme.spacing(1)};
|
|
border-left: 3px solid transparent;
|
|
cursor: pointer;
|
|
padding: ${({ theme }) => theme.spacing(1, 0.25)};
|
|
right: ${({ theme }) => theme.spacing(0.75)};
|
|
position: relative;
|
|
width: calc(100% + ${({ theme }) => theme.spacing(0.25)});
|
|
|
|
&:hover {
|
|
background: ${({ theme }) => theme.background.transparent.light};
|
|
}
|
|
`;
|
|
|
|
const StyledSparkleIcon = styled.div`
|
|
align-items: center;
|
|
background: ${({ theme }) => theme.background.transparent.blue};
|
|
border-radius: ${({ theme }) => theme.border.radius.sm};
|
|
display: flex;
|
|
padding: ${({ theme }) => theme.spacing(1)};
|
|
justify-content: center;
|
|
`;
|
|
|
|
const StyledThreadContent = styled.div`
|
|
flex: 1;
|
|
min-width: 0;
|
|
`;
|
|
|
|
const StyledThreadTitle = styled.div`
|
|
color: ${({ theme }) => theme.font.color.secondary};
|
|
font-size: ${({ theme }) => theme.font.size.md};
|
|
font-weight: 500;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
`;
|
|
|
|
export const AIChatThreadGroup = ({
|
|
threads,
|
|
title,
|
|
}: {
|
|
threads: AgentChatThread[];
|
|
title: string;
|
|
}) => {
|
|
const { t } = useLingui();
|
|
const theme = useTheme();
|
|
const [, setCurrentAIChatThread] = useAtomState(currentAIChatThreadStateV2);
|
|
const setCurrentAIChatThreadTitle = useSetAtomState(
|
|
currentAIChatThreadTitleState,
|
|
);
|
|
const setAgentChatUsage = useSetAtomState(agentChatUsageStateV2);
|
|
const { openAskAIPage } = useOpenAskAIPageInCommandMenu();
|
|
|
|
const handleThreadClick = (thread: AgentChatThread) => {
|
|
setCurrentAIChatThread(thread.id);
|
|
setCurrentAIChatThreadTitle(thread.title ?? null);
|
|
|
|
const hasUsageData =
|
|
(thread.conversationSize ?? 0) > 0 &&
|
|
isDefined(thread.contextWindowTokens);
|
|
|
|
setAgentChatUsage(
|
|
hasUsageData
|
|
? {
|
|
lastMessage: null,
|
|
conversationSize: thread.conversationSize ?? 0,
|
|
contextWindowTokens: thread.contextWindowTokens ?? 0,
|
|
inputTokens: thread.totalInputTokens,
|
|
outputTokens: thread.totalOutputTokens,
|
|
inputCredits: thread.totalInputCredits,
|
|
outputCredits: thread.totalOutputCredits,
|
|
}
|
|
: null,
|
|
);
|
|
|
|
openAskAIPage({
|
|
resetNavigationStack: false,
|
|
});
|
|
};
|
|
|
|
if (threads.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<StyledDateGroup>
|
|
<StyledDateHeader>{title}</StyledDateHeader>
|
|
<StyledThreadsList>
|
|
{threads.map((thread) => (
|
|
<StyledThreadItem
|
|
onClick={() => handleThreadClick(thread)}
|
|
key={thread.id}
|
|
>
|
|
<StyledSparkleIcon>
|
|
<IconSparkles
|
|
size={theme.icon.size.md}
|
|
color={theme.color.blue}
|
|
/>
|
|
</StyledSparkleIcon>
|
|
<StyledThreadContent>
|
|
<StyledThreadTitle>
|
|
{thread.title || t`Untitled`}
|
|
</StyledThreadTitle>
|
|
</StyledThreadContent>
|
|
</StyledThreadItem>
|
|
))}
|
|
</StyledThreadsList>
|
|
</StyledDateGroup>
|
|
);
|
|
};
|