mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
import { defineNuxtModule } from '@nuxt/kit'
|
|
import { existsSync } from 'node:fs'
|
|
import { join } from 'pathe'
|
|
import captureWebsite from 'capture-website'
|
|
|
|
interface ContentFile {
|
|
id?: string
|
|
body?: {
|
|
items: TemplateItem[]
|
|
}
|
|
}
|
|
|
|
interface TemplateItem {
|
|
name: string
|
|
url?: string
|
|
screenshotUrl?: string
|
|
screenshotOptions?: Record<string, any>
|
|
}
|
|
|
|
export default defineNuxtModule((_, nuxt) => {
|
|
nuxt.hook('content:file:afterParse', async ({ content: file }: { content: ContentFile }) => {
|
|
if (!file.id?.includes('showcase')) {
|
|
return
|
|
}
|
|
if (!file.body?.items?.length) {
|
|
return
|
|
}
|
|
for (const template of file.body.items) {
|
|
const url = template.screenshotUrl || template.url
|
|
if (!url) {
|
|
console.error(`Template ${template.name} has no "url" or "screenshotUrl" to take a screenshot from`)
|
|
continue
|
|
}
|
|
|
|
const name = template.name.toLowerCase().replace(/\s/g, '-')
|
|
const filename = join(process.cwd(), 'docs/public/assets/showcase', `${name}.png`)
|
|
|
|
if (existsSync(filename)) {
|
|
continue
|
|
}
|
|
|
|
console.log(`Generating screenshot for Template ${template.name} hitting ${url}...`)
|
|
|
|
try {
|
|
await captureWebsite.file(url, filename, {
|
|
...(template.screenshotOptions || {}),
|
|
launchOptions: { headless: true }
|
|
})
|
|
|
|
console.log(`Screenshot for ${template.name} generated successfully`)
|
|
} catch (error) {
|
|
console.error(`Error generating screenshot for ${template.name}:`, error)
|
|
}
|
|
}
|
|
})
|
|
})
|