mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-25 13:46:07 +00:00
* feat(www): add login blocks * chore(www): restructure for blocks * chore: build registry * chore: clean up chunks * fix(www): chart categories * feat(www): big registry refactor * feat(www): update blocks * feat: complex blocks * fix: update schema * feat: sync new-york and default * fix: lint * feat: move charts * fix(www): code * fix: src path * chore: rebuild registry * fix: screenshot * fix: set new-york as default
101 lines
2.4 KiB
TypeScript
101 lines
2.4 KiB
TypeScript
import { existsSync, promises as fs } from "fs"
|
|
import path from "path"
|
|
import puppeteer from "puppeteer"
|
|
|
|
import { getAllBlockIds } from "../lib/blocks"
|
|
|
|
const REGISTRY_PATH = path.join(process.cwd(), "public/r")
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Capture screenshots.
|
|
// ----------------------------------------------------------------------------
|
|
async function captureScreenshots() {
|
|
const blockIds = await getAllBlockIds()
|
|
const blocks = blockIds.filter((block) => {
|
|
// Check if screenshots already exist
|
|
const lightPath = path.join(
|
|
REGISTRY_PATH,
|
|
`styles/new-york/${block}-light.png`
|
|
)
|
|
const darkPath = path.join(
|
|
REGISTRY_PATH,
|
|
`styles/new-york/${block}-dark.png`
|
|
)
|
|
return !existsSync(lightPath) || !existsSync(darkPath)
|
|
})
|
|
|
|
if (blocks.length === 0) {
|
|
console.log("✨ All screenshots exist, nothing to capture")
|
|
return
|
|
}
|
|
|
|
const browser = await puppeteer.launch({
|
|
defaultViewport: {
|
|
width: 1440,
|
|
height: 900,
|
|
deviceScaleFactor: 2,
|
|
},
|
|
})
|
|
|
|
for (const block of blocks) {
|
|
const pageUrl = `http://localhost:3333/view/styles/new-york/${block}`
|
|
|
|
const page = await browser.newPage()
|
|
await page.goto(pageUrl, {
|
|
waitUntil: "networkidle2",
|
|
})
|
|
|
|
console.log(`- Capturing ${block}...`)
|
|
|
|
for (const theme of ["light", "dark"]) {
|
|
const screenshotPath = path.join(
|
|
REGISTRY_PATH,
|
|
`styles/new-york/${block}${theme === "dark" ? "-dark" : "-light"}.png`
|
|
)
|
|
|
|
if (existsSync(screenshotPath)) {
|
|
continue
|
|
}
|
|
|
|
// Set theme and reload page
|
|
await page.evaluate((currentTheme) => {
|
|
localStorage.setItem("theme", currentTheme)
|
|
}, theme)
|
|
|
|
await page.reload({ waitUntil: "networkidle2" })
|
|
|
|
// Wait for animations to complete
|
|
if (block.startsWith("chart")) {
|
|
await new Promise((resolve) => setTimeout(resolve, 500))
|
|
}
|
|
|
|
// Hide Tailwind indicator
|
|
await page.evaluate(() => {
|
|
const indicator = document.querySelector("[data-tailwind-indicator]")
|
|
if (indicator) {
|
|
indicator.remove()
|
|
}
|
|
})
|
|
|
|
await page.screenshot({
|
|
path: screenshotPath,
|
|
})
|
|
}
|
|
|
|
await page.close()
|
|
}
|
|
|
|
await browser.close()
|
|
}
|
|
|
|
try {
|
|
console.log("🔍 Capturing screenshots...")
|
|
|
|
await captureScreenshots()
|
|
|
|
console.log("✅ Done!")
|
|
} catch (error) {
|
|
console.error(error)
|
|
process.exit(1)
|
|
}
|