File tree 1 file changed +22
-10
lines changed
1 file changed +22
-10
lines changed Original file line number Diff line number Diff line change @@ -8,16 +8,28 @@ interface Props {
8
8
import jsdom from " jsdom" ;
9
9
const { src, title : _title, description : _description } = Astro .props ;
10
10
11
- const response = await fetch (src );
12
- const html = await response .text ();
13
- const { document } = new jsdom .JSDOM (html )?.window ;
14
- const title = _title || document .querySelector (" title" )?.textContent ;
15
- const description =
16
- _description ||
17
- document .querySelector (" meta[name=description]" )?.getAttribute (" content" );
18
- const image = document
19
- .querySelector (" meta[property='og:image']" )
20
- ?.getAttribute (" content" );
11
+ let title = _title ;
12
+ let description = _description ;
13
+ let image: string | null | undefined ;
14
+
15
+ try {
16
+ const response = await fetch (src );
17
+ const html = await response .text ();
18
+ const { document } = new jsdom .JSDOM (html )?.window ;
19
+
20
+ title = title || document .querySelector (" title" )?.textContent || src ;
21
+ description =
22
+ description ||
23
+ document .querySelector (" meta[name=description]" )?.getAttribute (" content" ) ||
24
+ " No description available" ;
25
+ image = document
26
+ .querySelector (" meta[property='og:image']" )
27
+ ?.getAttribute (" content" );
28
+ } catch (error ) {
29
+ console .error (` Failed to fetch or parse ${src }: ` , error );
30
+ title = title || src ;
31
+ description = description || " No description available" ;
32
+ }
21
33
---
22
34
23
35
<a
You can’t perform that action at this time.
0 commit comments