forked from Swizec/lambda-screenshot-as-a-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtakeScreenshot.ts
67 lines (54 loc) · 1.68 KB
/
takeScreenshot.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
const { uploadScreenshot } = require("./uploadScreenshot");
export async function takeScreenshot(
browser: any,
targetUrl: string
): Promise<string> {
const page = await browser.newPage();
await page.setViewport({
width: 1920,
height: 1080,
isMobile: true,
deviceScaleFactor: 2,
});
console.log("Requesting", targetUrl);
await page.goto(targetUrl, {
waitUntil: ["domcontentloaded", "networkidle2"],
});
console.log("page loaded");
let element = null;
switch (new URL(await page.url()).hostname) {
case "twitter.com":
await page.goto(
`https://tweet-embedder.swizec.vercel.app?url=${targetUrl}`,
{
waitUntil: ["domcontentloaded", "networkidle2"],
}
);
element = await page.$("#tweet");
break;
case "www.youtube.com":
element = await page.$(".html5-video-player");
break;
case "www.instagram.com":
element = await page.$("article");
break;
case "codesandbox.io":
element = await page.$(".SplitPane");
break;
}
console.log("found element", element);
const { x, y, width, height } = await element.boundingBox();
const imagePath = `/tmp/screenshot-${new Date().getTime()}.png`;
console.error("Loaded target element");
await page.screenshot({
path: imagePath,
clip: {
x: x + 2,
y: y + 2,
width: width - 2,
height: height - 2,
},
});
console.error("Made screeshot", imagePath);
return imagePath;
}