forked from LiveDuo/destack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscreenshots.js
53 lines (44 loc) · 1.58 KB
/
screenshots.js
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
const puppeteer = require('puppeteer')
const fs = require('fs/promises')
const sharp = require('sharp')
const process = require('process')
const tailwindUrl = 'https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css'
const componentsPath = process.cwd() + '/../lib/themes'
const themeName = process.argv[2]
if (!themeName) throw new Error('No theme name')
const viewportWidth = 1024
const imageWidth = 360
const aspectRatio = 0.55
// npm run screenshots -- hyperui
;(async () => {
// create page
const browser = await puppeteer.launch()
const page = await browser.newPage()
await page.setViewport({
height: Math.floor(viewportWidth * aspectRatio),
width: viewportWidth,
deviceScaleFactor: 1,
})
// loop components
const files = await fs.readdir(`${componentsPath}/${themeName}`)
const components = files.filter((f) => f !== 'index.ts')
for (let c of components) {
// render html
const source = await fs.readFile(`${componentsPath}/${themeName}/${c}/index.html`, 'utf8')
const html = `<html><head><link rel="stylesheet" href="${tailwindUrl}"></head><body>${source.replaceAll(
'`',
'',
)}</body></html>`
await page.setContent(html)
// wait to load the images
await new Promise((r) => setTimeout(r, 500))
// take screenshot
const filepath = `${componentsPath}/${themeName}/${c}/preview.png`
await page.screenshot({ path: filepath })
// resize image
const buffer = await sharp(filepath).resize({ width: imageWidth }).png().toBuffer()
await sharp(buffer).toFile(filepath)
}
// close page
await browser.close()
})()