mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
remove: prompt deletion of ~/.notion-enhancer
This commit is contained in:
parent
a8472b2da0
commit
574741de06
@ -4,6 +4,8 @@ ended up here? this is a wip version of the enhancer, and this file is yet to be
|
|||||||
if you're interested in the project, switch back to the [master branch](https://github.com/dragonwocky/notion-enhancer).
|
if you're interested in the project, switch back to the [master branch](https://github.com/dragonwocky/notion-enhancer).
|
||||||
for support, contact me on discord `dragonwocky#8449` or open an issue here in the repo.
|
for support, contact me on discord `dragonwocky#8449` or open an issue here in the repo.
|
||||||
|
|
||||||
|
want to contribute? check the the [contribution guidelines](CONTRIBUTING.md).
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
what?
|
what?
|
||||||
|
1
bin.js
1
bin.js
@ -14,6 +14,7 @@ const meta = require('./package.json'),
|
|||||||
// ' ...information'
|
// ' ...information'
|
||||||
// ' * warning'
|
// ' * warning'
|
||||||
// ' > prompt'
|
// ' > prompt'
|
||||||
|
// ' -> response'
|
||||||
// ' ~~ exit'
|
// ' ~~ exit'
|
||||||
// '### error ###'
|
// '### error ###'
|
||||||
|
|
||||||
|
@ -9,9 +9,17 @@ const os = require('os'),
|
|||||||
fs = require('fs-extra'),
|
fs = require('fs-extra'),
|
||||||
path = require('path'),
|
path = require('path'),
|
||||||
exec = require('util').promisify(require('child_process').exec),
|
exec = require('util').promisify(require('child_process').exec),
|
||||||
helpers = require('./helpers.js');
|
{ getNotion, readline, data_folder } = require('./helpers.js');
|
||||||
|
|
||||||
let __notion = helpers.getNotion();
|
// '=== title ==='
|
||||||
|
// ' ...information'
|
||||||
|
// ' * warning'
|
||||||
|
// ' > prompt'
|
||||||
|
// ' -> response'
|
||||||
|
// ' ~~ exit'
|
||||||
|
// '### error ###'
|
||||||
|
|
||||||
|
let __notion = getNotion();
|
||||||
|
|
||||||
module.exports = async function (yes) {
|
module.exports = async function (yes) {
|
||||||
console.info('=== NOTION RESTORATION LOG ===');
|
console.info('=== NOTION RESTORATION LOG ===');
|
||||||
@ -35,14 +43,14 @@ module.exports = async function (yes) {
|
|||||||
if (!yes) {
|
if (!yes) {
|
||||||
do {
|
do {
|
||||||
process.stdout.write(' > overwrite? [Y/n]: ');
|
process.stdout.write(' > overwrite? [Y/n]: ');
|
||||||
write = await helpers.readline();
|
write = await readline();
|
||||||
} while (write && !['y', 'n'].includes(write.toLowerCase()));
|
} while (write && !['y', 'n'].includes(write.toLowerCase()));
|
||||||
write = !write || write.toLowerCase() == 'y';
|
write = !write || write.toLowerCase() == 'y';
|
||||||
} else write = true;
|
} else write = true;
|
||||||
console.info(
|
console.info(
|
||||||
write
|
write
|
||||||
? ' ...overwriting app.asar with app.asar.bak'
|
? ' -> overwriting app.asar with app.asar.bak'
|
||||||
: ' ...removing app.asar.bak'
|
: ' -> removing app.asar.bak'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -55,11 +63,21 @@ module.exports = async function (yes) {
|
|||||||
);
|
);
|
||||||
} else console.warn(` * ${asar_bak} not found: step skipped.`);
|
} else console.warn(` * ${asar_bak} not found: step skipped.`);
|
||||||
|
|
||||||
const data_ = path.join(__notion, 'app');
|
if (await fs.pathExists(data_folder)) {
|
||||||
if (await fs.pathExists(app_folder)) {
|
console.log(` ...data folder ${data_folder} found.`);
|
||||||
console.info(` ...removing folder ${app_folder}`);
|
let write = true;
|
||||||
file_operations.push(fs.remove(app_folder));
|
if (!yes) {
|
||||||
} else console.warn(` * ${app_folder} not found: step skipped.`);
|
do {
|
||||||
|
process.stdout.write(' > delete? [Y/n]: ');
|
||||||
|
write = await readline();
|
||||||
|
} while (write && !['y', 'n'].includes(write.toLowerCase()));
|
||||||
|
write = !write || write.toLowerCase() == 'y';
|
||||||
|
} else write = true;
|
||||||
|
console.info(
|
||||||
|
write ? ` -> deleting ${data_folder}` : ` -> keeping ${data_folder}`
|
||||||
|
);
|
||||||
|
if (write) file_operations.push(fs.remove(data_folder));
|
||||||
|
} else console.warn(` * ${data_folder} not found: step skipped.`);
|
||||||
|
|
||||||
await Promise.all(file_operations);
|
await Promise.all(file_operations);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user