mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
71efff6827
* Update eslint config * Applied linter to lib * Applied eslint config to CliClient/app * Removed prettier due to https://github.com/prettier/prettier/pull/4765 * First pass on test units * Applied linter config to test units * Applied eslint config to clipper * Applied to plugin dir * Applied to root of ElectronClient * Applied on RN root * Applied on CLI root * Applied on Clipper root * Applied config to tools * test hook * test hook * test hook * Added pre-commit hook * Applied rule no-trailing-spaces * Make sure root packages are installed when installing sub-dir * Added doc
34 lines
991 B
JavaScript
34 lines
991 B
JavaScript
const { BaseCommand } = require('./base-command.js');
|
|
const { app } = require('./app.js');
|
|
const { _ } = require('lib/locale.js');
|
|
const Folder = require('lib/models/Folder.js');
|
|
const BaseModel = require('lib/BaseModel.js');
|
|
|
|
class Command extends BaseCommand {
|
|
usage() {
|
|
return 'rmbook <notebook>';
|
|
}
|
|
|
|
description() {
|
|
return _('Deletes the given notebook.');
|
|
}
|
|
|
|
options() {
|
|
return [['-f, --force', _('Deletes the notebook without asking for confirmation.')]];
|
|
}
|
|
|
|
async action(args) {
|
|
const pattern = args['notebook'];
|
|
const force = args.options && args.options.force === true;
|
|
|
|
const folder = await app().loadItem(BaseModel.TYPE_FOLDER, pattern);
|
|
if (!folder) throw new Error(_('Cannot find "%s".', pattern));
|
|
const ok = force ? true : await this.prompt(_('Delete notebook? All notes and sub-notebooks within this notebook will also be deleted.'), { booleanAnswerDefault: 'n' });
|
|
if (!ok) return;
|
|
|
|
await Folder.delete(folder.id);
|
|
}
|
|
}
|
|
|
|
module.exports = Command;
|