#!/usr/bin/env node import { getProjectRoot } from "./tools/getProjectRoot"; import cliSelect from "cli-select"; import { loginThemePageIds, accountThemePageIds, type LoginThemePageId, type AccountThemePageId, themeTypes, type ThemeType } from "./keycloakify/generateFtl/generateFtl"; import { capitalize } from "tsafe/capitalize"; import { readFile, writeFile } from "fs/promises"; import { existsSync } from "fs"; import { join as pathJoin, relative as pathRelative } from "path"; import { kebabCaseToCamelCase } from "./tools/kebabCaseToSnakeCase"; import { assert, Equals } from "tsafe/assert"; import { getThemeSrcDirPath } from "./getSrcDirPath"; (async () => { const projectDirPath = getProjectRoot(); console.log("Select a theme type"); const { value: themeType } = await cliSelect({ "values": [...themeTypes] }).catch(() => { console.log("Aborting"); process.exit(-1); }); console.log("Select a page you would like to eject"); const { value: pageId } = await cliSelect({ "values": (() => { switch (themeType) { case "login": return [...loginThemePageIds]; case "account": return [...accountThemePageIds]; } assert>(false); })() }).catch(() => { console.log("Aborting"); process.exit(-1); }); const pageBasename = capitalize(kebabCaseToCamelCase(pageId)).replace(/ftl$/, "tsx"); const { themeSrcDirPath } = getThemeSrcDirPath({ "projectDirPath": projectDirPath }); if (themeSrcDirPath === undefined) { throw new Error("Couldn't locate your theme sources"); } const targetFilePath = pathJoin(themeSrcDirPath, themeType, "pages", pageBasename); if (existsSync(targetFilePath)) { console.log(`${pageId} is already ejected, ${pathRelative(process.cwd(), targetFilePath)} already exists`); process.exit(-1); } writeFile(targetFilePath, await readFile(pathJoin(projectDirPath, "src", themeType, "pages", pageBasename))); console.log(`${pathRelative(process.cwd(), targetFilePath)} created`); })();