import { useRecoilState } from 'recoil'; import { commentableEntityArrayState } from '@/comments/states/commentableEntityArrayState'; import { useHotkeysScopeOnMountOnly } from '@/hotkeys/hooks/useHotkeysScopeOnMountOnly'; import { InternalHotkeysScope } from '@/hotkeys/types/internal/InternalHotkeysScope'; import { RightDrawerBody } from '@/ui/layout/right-drawer/components/RightDrawerBody'; import { RightDrawerPage } from '@/ui/layout/right-drawer/components/RightDrawerPage'; import { RightDrawerTopBar } from '@/ui/layout/right-drawer/components/RightDrawerTopBar'; import { Timeline } from '../timeline/Timeline'; export function RightDrawerTimeline() { const [commentableEntityArray] = useRecoilState(commentableEntityArrayState); useHotkeysScopeOnMountOnly({ scope: InternalHotkeysScope.RightDrawer, customScopes: { goto: false, 'command-menu': true }, }); return ( {commentableEntityArray.map((commentableEntity) => ( ))} ); }