e85f65a195
* Adding message thread component * Add state and mocks * Rename components and use local state for messages --------- Co-authored-by: Thomas Trompette <thomast@twenty.com>
15 lines
645 B
TypeScript
15 lines
645 B
TypeScript
import { useRightDrawer } from '@/ui/layout/right-drawer/hooks/useRightDrawer';
|
|
import { RightDrawerHotkeyScope } from '@/ui/layout/right-drawer/types/RightDrawerHotkeyScope';
|
|
import { RightDrawerPages } from '@/ui/layout/right-drawer/types/RightDrawerPages';
|
|
import { useSetHotkeyScope } from '@/ui/utilities/hotkey/hooks/useSetHotkeyScope';
|
|
|
|
export const useOpenEmailThreadRightDrawer = () => {
|
|
const { openRightDrawer } = useRightDrawer();
|
|
const setHotkeyScope = useSetHotkeyScope();
|
|
|
|
return () => {
|
|
setHotkeyScope(RightDrawerHotkeyScope.RightDrawer, { goto: false });
|
|
openRightDrawer(RightDrawerPages.ViewEmailThread);
|
|
};
|
|
};
|