Files
posthog/frontend/vite-html-plugin.ts
Marius Andra 45dc3008ac feat(insights): iframe renderer (#39767)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Sandy Spicer <sandy@posthog.com>
2025-10-17 07:04:04 +00:00

66 lines
2.0 KiB
TypeScript
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { existsSync, mkdirSync, readFileSync, unlinkSync, writeFileSync } from 'fs'
import { dirname, resolve } from 'path'
import type { Plugin } from 'vite'
const srcHtmlFiles = ['src/index.html', 'src/layout.html', 'src/exporter/index.html', 'src/render-query/index.html']
const distHtmlFiles = ['dist/index.html', 'dist/layout.html', 'dist/exporter.html', 'dist/render_query.html']
function deleteHtmlFiles(): void {
distHtmlFiles.forEach((file) => {
try {
const filePath = resolve('.', file)
if (existsSync(filePath)) {
unlinkSync(filePath)
console.info(`🗑️ Deleted ${file}`)
} else {
console.info(` File doesn't exist: ${file}`)
}
} catch (error) {
console.warn(`⚠️ Could not delete ${file}:`, error)
}
})
}
function copyHtmlFile(from: string, to: string): void {
try {
const fromPath = resolve('.', from)
const toPath = resolve('.', to)
// Ensure target directory exists
const toDir = dirname(toPath)
if (!existsSync(toDir)) {
mkdirSync(toDir, { recursive: true })
}
// Copy the HTML file without modification (preserve Django template syntax)
const htmlContent = readFileSync(fromPath, 'utf-8')
writeFileSync(toPath, htmlContent)
console.info(`✨ Copied ${from} to ${to}`)
} catch (error) {
console.warn(`❌ Could not copy ${from} to ${to}:`, error)
}
}
function generateHtmlFiles(): void {
// Ensure dist directory exists
const distDir = resolve('.', 'dist')
if (!existsSync(distDir)) {
mkdirSync(distDir, { recursive: true })
}
// Copy HTML files
srcHtmlFiles.forEach((file, index) => {
copyHtmlFile(file, distHtmlFiles[index])
})
}
export function htmlGenerationPlugin(): Plugin {
return {
name: 'html-generation',
buildStart() {
deleteHtmlFiles()
generateHtmlFiles()
},
}
}