2024-11-02 22:39:03 +01:00
|
|
|
import { getIsPrettierAvailable, runPrettier } from "../tools/runPrettier";
|
|
|
|
import * as fsPr from "fs/promises";
|
|
|
|
import { join as pathJoin, sep as pathSep } from "path";
|
|
|
|
import { assert } from "tsafe/assert";
|
|
|
|
import type { BuildContext } from "../shared/buildContext";
|
2024-11-09 14:02:19 +01:00
|
|
|
import { KEYCLOAK_THEME } from "../shared/constants";
|
2024-11-02 22:39:03 +01:00
|
|
|
|
|
|
|
export type BuildContextLike = {
|
|
|
|
themeSrcDirPath: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
assert<BuildContext extends BuildContextLike ? true : false>();
|
|
|
|
|
2024-11-09 14:02:19 +01:00
|
|
|
export async function getUiModuleFileSourceCodeReadyToBeCopied(params: {
|
2024-11-02 22:39:03 +01:00
|
|
|
buildContext: BuildContextLike;
|
|
|
|
fileRelativePath: string;
|
2024-11-09 14:02:19 +01:00
|
|
|
isForEjection: boolean;
|
|
|
|
uiModuleDirPath: string;
|
|
|
|
uiModuleName: string;
|
|
|
|
uiModuleVersion: string;
|
|
|
|
}): Promise<Buffer> {
|
|
|
|
const {
|
|
|
|
buildContext,
|
|
|
|
uiModuleDirPath,
|
|
|
|
fileRelativePath,
|
|
|
|
isForEjection,
|
|
|
|
uiModuleName,
|
|
|
|
uiModuleVersion
|
|
|
|
} = params;
|
2024-11-02 22:39:03 +01:00
|
|
|
|
|
|
|
let sourceCode = (
|
2024-11-09 14:02:19 +01:00
|
|
|
await fsPr.readFile(pathJoin(uiModuleDirPath, KEYCLOAK_THEME, fileRelativePath))
|
2024-11-02 22:39:03 +01:00
|
|
|
).toString("utf8");
|
|
|
|
|
|
|
|
const comment = (() => {
|
2024-11-09 14:02:19 +01:00
|
|
|
if (isForEjection) {
|
2024-11-02 22:39:03 +01:00
|
|
|
return [
|
|
|
|
`/*`,
|
2024-11-09 20:33:53 +01:00
|
|
|
`This file was ejected from ${uiModuleName} version ${uiModuleVersion}.`,
|
2024-11-02 22:39:03 +01:00
|
|
|
`*/`
|
|
|
|
].join("\n");
|
|
|
|
} else {
|
|
|
|
return [
|
|
|
|
`/*`,
|
2024-11-09 20:33:53 +01:00
|
|
|
`WARNING: Before modifying this file run the following command:`,
|
|
|
|
``,
|
|
|
|
`npx keycloakify eject-file --file ${fileRelativePath.split(pathSep).join("/")}\``,
|
|
|
|
``,
|
|
|
|
`This file comes from ${uiModuleName} version ${uiModuleVersion}.`,
|
2024-11-02 22:39:03 +01:00
|
|
|
`*/`
|
|
|
|
];
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
|
|
|
|
sourceCode = [comment, ``, sourceCode].join("\n");
|
|
|
|
|
2024-11-09 14:02:19 +01:00
|
|
|
const destFilePath = pathJoin(buildContext.themeSrcDirPath, fileRelativePath);
|
|
|
|
|
2024-11-02 22:39:03 +01:00
|
|
|
format: {
|
|
|
|
if (!(await getIsPrettierAvailable())) {
|
|
|
|
break format;
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceCode = await runPrettier({
|
2024-11-09 14:02:19 +01:00
|
|
|
filePath: destFilePath,
|
2024-11-02 22:39:03 +01:00
|
|
|
sourceCode
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-11-09 14:02:19 +01:00
|
|
|
return Buffer.from(sourceCode, "utf8");
|
2024-11-02 22:39:03 +01:00
|
|
|
}
|