32 lines
763 B
TypeScript
32 lines
763 B
TypeScript
import { Entities } from 'soapbox/entity-store/entities';
|
|
import { selectEntity } from 'soapbox/entity-store/selectors';
|
|
import { useAppSelector } from 'soapbox/hooks';
|
|
import { type BookmarkFolder } from 'soapbox/schemas/bookmark-folder';
|
|
|
|
import { useBookmarkFolders } from './useBookmarkFolders';
|
|
|
|
function useBookmarkFolder(folderId?: string) {
|
|
const {
|
|
isError,
|
|
isFetched,
|
|
isFetching,
|
|
isLoading,
|
|
invalidate,
|
|
} = useBookmarkFolders();
|
|
|
|
const bookmarkFolder = useAppSelector(state => folderId
|
|
? selectEntity<BookmarkFolder>(state, Entities.BOOKMARK_FOLDERS, folderId)
|
|
: undefined);
|
|
|
|
return {
|
|
bookmarkFolder,
|
|
isError,
|
|
isFetched,
|
|
isFetching,
|
|
isLoading,
|
|
invalidate,
|
|
};
|
|
}
|
|
|
|
export { useBookmarkFolder };
|