mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-04 20:59:02 +00:00
75 lines
2.2 KiB
JavaScript
Executable File
75 lines
2.2 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
/*
|
|
* notion-enhancer
|
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* (https://dragonwocky.me/notion-enhancer) under the MIT license
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const cli = require('cac')('notion-enhancer'),
|
|
{ EnhancerError } = require('./pkg/helpers.js');
|
|
|
|
// === title ===
|
|
// ...information
|
|
// * warning
|
|
// > prompt
|
|
// -- response
|
|
// ~~ exit
|
|
// ### error ###
|
|
|
|
cli.option('-y, --yes', ': skip prompts (may overwrite data)');
|
|
cli.option('-n, --no', ': skip prompts (may cause failures)');
|
|
cli.option('-d, --dev', ': show detailed error messages (for debug purposes)');
|
|
|
|
cli
|
|
.command('apply', ': add the enhancer to the notion app')
|
|
.action(async (options) => {
|
|
console.info('=== NOTION ENHANCEMENT LOG ===');
|
|
await require('./pkg/apply.js')({
|
|
overwrite_version: options.yes ? 'y' : options.no ? 'n' : undefined,
|
|
friendly_errors: !options.dev,
|
|
});
|
|
console.info('=== END OF LOG ===');
|
|
});
|
|
cli
|
|
.command('remove', ': return notion to its pre-enhanced/pre-modded state')
|
|
.action(async (options) => {
|
|
console.info('=== NOTION RESTORATION LOG ===');
|
|
await require('./pkg/remove.js')({
|
|
delete_data: options.yes ? 'y' : options.no ? 'n' : undefined,
|
|
friendly_errors: !options.dev,
|
|
});
|
|
console.info('=== END OF LOG ===');
|
|
});
|
|
cli
|
|
.command('check', ': check the current state of the notion app')
|
|
.action(async (options) => {
|
|
try {
|
|
const status = await require('./pkg/check.js')();
|
|
console.info(options.dev ? status : status.msg);
|
|
} catch (err) {
|
|
console.error(
|
|
err instanceof EnhancerError && !options.dev ? err.message : err
|
|
);
|
|
}
|
|
});
|
|
|
|
let helpCalled = false;
|
|
cli.globalCommand.option('-h, --help', ': display usage information');
|
|
cli.globalCommand.helpCallback = (sections) => {
|
|
sections[0].body += '\nhttps://github.com/notion-enhancer/notion-enhancer';
|
|
helpCalled = true;
|
|
};
|
|
cli.showHelpOnExit = true;
|
|
|
|
cli.globalCommand.option('-v, --version', ': display version number');
|
|
cli.globalCommand.versionNumber = require('./package.json').version;
|
|
cli.showVersionOnExit = true;
|
|
|
|
cli.parse();
|
|
|
|
if (!cli.matchedCommand && !helpCalled && !cli.options.version)
|
|
cli.outputHelp();
|