45 lines
1 KiB
TypeScript
45 lines
1 KiB
TypeScript
import { execFile as execFileOriginal } from "node:child_process";
|
|
import { ExecFileFn } from "./types";
|
|
|
|
export const properties = {
|
|
from: {
|
|
text: ["tex", "latex"],
|
|
},
|
|
to: {
|
|
text: ["pdf"],
|
|
},
|
|
};
|
|
|
|
export function convert(
|
|
filePath: string,
|
|
fileType: string,
|
|
convertTo: string,
|
|
targetPath: string,
|
|
options?: unknown,
|
|
execFile: ExecFileFn = execFileOriginal,
|
|
): Promise<string> {
|
|
return new Promise((resolve, reject) => {
|
|
// const fileName: string = (targetPath.split("/").pop() as string).replace(".pdf", "")
|
|
const outputPath = targetPath.split("/").slice(0, -1).join("/").replace("./", "");
|
|
|
|
execFile(
|
|
"latexmk",
|
|
["-xelatex", "-interaction=nonstopmode", `-output-directory=${outputPath}`, filePath],
|
|
(error, stdout, stderr) => {
|
|
if (error) {
|
|
reject(`error: ${error}`);
|
|
}
|
|
|
|
if (stdout) {
|
|
console.log(`stdout: ${stdout}`);
|
|
}
|
|
|
|
if (stderr) {
|
|
console.error(`stderr: ${stderr}`);
|
|
}
|
|
|
|
resolve("Done");
|
|
},
|
|
);
|
|
});
|
|
}
|