Website/astro-i18n.adapter.ts

34 Zeilen
1.3 KiB
TypeScript

2023-11-03 20:31:27 +01:00
import type { AstroIntegration } from "astro";
2023-12-10 17:14:10 +01:00
import { mkdir, access, constants, copyFile } from 'node:fs/promises'
2023-11-03 20:31:27 +01:00
const locales = ["de"];
export default function configureI18n(): AstroIntegration {
return {
name: "astro-i18n-renamer",
hooks: {
"astro:build:done": async ({pages, dir, logger, routes}) => {
for (let page of pages) {
let [locale, ...rest] = page.pathname.split("/");
if (locales.includes(locale)) {
let path = rest.join("/");
let oldPath = `${dir.pathname}${page.pathname}`
let newPath = `${dir.pathname}${path}`
try {
await access(cutPrefix(newPath), constants.R_OK | constants.W_OK)
} catch (e) {
await mkdir(cutPrefix(newPath), {recursive: true});
}
2023-12-10 17:14:10 +01:00
await copyFile(`${cutPrefix(oldPath)}index.html`, `${cutPrefix(newPath)}index.${locale}.html`)
logger.info(`Copied ${oldPath}index.html to ${newPath}index.${locale}.html`)
2023-11-03 20:31:27 +01:00
}
}
}
}
}
}
function cutPrefix(path: string): string {
return process.platform === "win32" ? path.substring(1) : path
}