mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-03 12:19:02 +00:00
chore: add directoryMode flag to enhanceApp for notion-repackaged
This commit is contained in:
parent
9f8d9030ae
commit
dae9700b0b
@ -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;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -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)} {
|
||||||
|
Loading…
Reference in New Issue
Block a user