import { useCallback } from 'react'; import { useApolloClient } from '@apollo/client'; import { CoreObjectNameSingular } from '@/object-metadata/types/CoreObjectNameSingular'; import { useGetRecordFromCache } from '@/object-record/cache/hooks/useGetRecordFromCache'; import { View } from '@/views/types/View'; export const useGetViewFromCache = () => { const client = useApolloClient(); const cache = client.cache; const getRecordFromCache = useGetRecordFromCache({ objectNameSingular: CoreObjectNameSingular.View, }); const getViewFromCache = useCallback( async (viewId: string) => { return getRecordFromCache(viewId, cache); }, [cache, getRecordFromCache], ); return { getViewFromCache, }; };