blob: 26d63fee28550d3eab9d768492bacfc5a2d48932 [file] [log] [blame]
idillona3c2fad2022-12-18 23:49:10 -05001/*
2 * Copyright (C) 2022 Savoir-faire Linux Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as
6 * published by the Free Software Foundation; either version 3 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
13 *
14 * You should have received a copy of the GNU Affero General Public
15 * License along with this program. If not, see
16 * <https://www.gnu.org/licenses/>.
17 */
18import { useQuery } from '@tanstack/react-query';
19import { LinkPreview } from 'jami-web-common';
20import { useState } from 'react';
21
22import { useAuthContext } from '../contexts/AuthProvider';
23
24export const useLinkPreviewQuery = (url: string) => {
25 const { axiosInstance } = useAuthContext();
26 const [hasFailed, setHasFailed] = useState(false); // Prevent reloading of links that have failed
27 return useQuery({
28 queryKey: ['link-preview', url],
29 queryFn: async () => {
30 const { data } = await axiosInstance.get<LinkPreview>(`/link-preview/?url=${url}`);
31 return data;
32 },
33 onError: () => setHasFailed(true),
34 enabled: !!url && !hasFailed,
35 });
36};