chore: add directoryMode flag to enhanceApp for notion-repackaged

This commit is contained in:
dragonwocky 2024-11-19 21:48:14 +11:00
parent 9f8d9030ae
commit dae9700b0b
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8
2 changed files with 43 additions and 35 deletions

View File

@ -93,27 +93,42 @@ const backupApp = async () => {
await fsp.rename(archive + ".bak", archive); await fsp.rename(archive + ".bak", archive);
return true; return true;
}, },
enhanceApp = async (debug = false) => { enhanceApp = async (debug = false, directoryMode = false) => {
const app = getResourcePath("app"), const app = getResourcePath("app"),
archive = getResourcePath("app.asar"); archive = getResourcePath("app.asar");
if (!existsSync(archive)) return false; // directory mode acts on pre-extracted sources
if (existsSync(app)) await fsp.rm(app, { recursive: true, force: true }); // as part of the notion-repackaged build process
await fsp.mkdir(app); if (directoryMode) {
// extract archive to folder and apply patches if (!existsSync(app)) return false;
for (let file of asar.listPackage(archive)) { for (let file of await fsp.readdir(app, { recursive: true })) {
file = file.replace(/^\//g, ""); file = file.replace(/^\//g, "");
const stat = asar.statFile(archive, file), const appPath = resolve(app, file),
isFolder = !!stat.files, stat = await fsp.stat(appPath);
isSymlink = !!stat.link, if (stat.isFile()) {
isExecutable = stat.executable, const content = await fsp.readFile(appPath);
appPath = resolve(app, file); await fsp.writeFile(appPath, patch(file, content));
if (isFolder) { }
await fsp.mkdir(appPath); }
} else if (isSymlink) { } else {
await fsp.symlink(appPath, resolve(app, link)); if (!existsSync(archive)) return false;
} else { if (existsSync(app)) await fsp.rm(app, { recursive: true, force: true });
await fsp.writeFile(appPath, patch(file, extractFile(file))); await fsp.mkdir(app);
if (isExecutable) await fsp.chmod(appPath, "755"); // extract archive to folder and apply patches
for (let file of asar.listPackage(archive)) {
file = file.replace(/^\//g, "");
const stat = asar.statFile(archive, file),
isFolder = !!stat.files,
isSymlink = !!stat.link,
isExecutable = stat.executable,
appPath = resolve(app, file);
if (isFolder) {
await fsp.mkdir(appPath);
} else if (isSymlink) {
await fsp.symlink(appPath, resolve(app, link));
} else {
await fsp.writeFile(appPath, patch(file, extractFile(file)));
if (isExecutable) await fsp.chmod(appPath, "755");
}
} }
} }
// insert the notion-enhancer/src folder into notion's node_modules // insert the notion-enhancer/src folder into notion's node_modules
@ -126,10 +141,12 @@ const backupApp = async () => {
excludes = ["bin", "type", "scripts", "engines", "dependencies"]; excludes = ["bin", "type", "scripts", "engines", "dependencies"];
for (const key of excludes) delete manifest[key]; for (const key of excludes) delete manifest[key];
await fsp.writeFile(insertManifest, JSON.stringify(manifest)); await fsp.writeFile(insertManifest, JSON.stringify(manifest));
// re-package enhanced sources into executable archive if (!directoryMode) {
await asar.createPackage(app, archive); // re-package enhanced sources into executable archive
// cleanup extracted files unless in debug mode await asar.createPackage(app, archive);
if (!debug) await fsp.rm(app, { recursive: true }); // cleanup extracted files unless in debug mode
if (!debug) await fsp.rm(app, { recursive: true });
}
return true; return true;
}; };

View File

@ -38,18 +38,9 @@ export default async function (api, db) {
--guide--opacity: 1; --guide--opacity: 1;
}`; }`;
if (rainbowMode) { if (rainbowMode) {
const selector = `:is(${nestedTargets.join(",")})`, const opacity = `--guide--opacity: 0.5;`,
opacity = `--guide--opacity: 0.5;`, selector = `:is(${nestedTargets.join(",")})`,
colours = [ colours = ["green", "blue", "purple", "pink", "red", "orange", "yellow"];
"red",
"pink",
"purple",
"blue",
"green",
"yellow",
"orange",
"brown",
];
colours.push(...colours, ...colours, ...colours, "gray"); colours.push(...colours, ...colours, ...colours, "gray");
for (let i = 0; i < colours.length; i++) { for (let i = 0; i < colours.length; i++) {
css += `${(selector + " ").repeat(i + 1)} { css += `${(selector + " ").repeat(i + 1)} {