const BaseCommand = require('./base-command').default; const { app } = require('./app.js'); const { _ } = require('@joplin/lib/locale'); const Folder = require('@joplin/lib/models/Folder').default; const BaseModel = require('@joplin/lib/BaseModel').default; class Command extends BaseCommand { usage() { return 'rmbook '; } 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;