1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/CliClient/app/command-rm.js

54 lines
1.6 KiB
JavaScript
Raw Normal View History

2017-07-10 22:03:46 +02:00
import { BaseCommand } from './base-command.js';
import { app } from './app.js';
import { _ } from 'lib/locale.js';
import { BaseItem } from 'lib/models/base-item.js';
import { Folder } from 'lib/models/folder.js';
import { Note } from 'lib/models/note.js';
import { BaseModel } from 'lib/base-model.js';
2017-08-04 18:50:12 +02:00
import { cliUtils } from './cli-utils.js';
2017-07-10 22:03:46 +02:00
2017-10-07 19:07:38 +02:00
import { reg } from 'lib/registry.js';
2017-07-10 22:03:46 +02:00
class Command extends BaseCommand {
usage() {
2017-08-04 18:02:43 +02:00
return 'rm <note-pattern>';
2017-07-10 22:03:46 +02:00
}
description() {
2017-08-04 18:02:43 +02:00
return _('Deletes the notes matching <note-pattern>.');
2017-07-10 22:03:46 +02:00
}
options() {
return [
2017-07-18 20:21:03 +02:00
['-f, --force', _('Deletes the items without asking for confirmation.')],
2017-07-10 22:03:46 +02:00
];
}
async action(args) {
2017-08-04 18:02:43 +02:00
const pattern = args['note-pattern'];
2017-07-11 20:17:23 +02:00
const recursive = args.options && args.options.recursive === true;
2017-08-04 18:50:12 +02:00
const force = args.options && args.options.force === true;
2017-07-11 20:17:23 +02:00
2017-08-04 18:02:43 +02:00
// if (recursive) {
// const folder = await app().loadItem(BaseModel.TYPE_FOLDER, pattern);
// if (!folder) throw new Error(_('Cannot find "%s".', pattern));
// //const ok = force ? true : await vorpalUtils.cmdPromptConfirm(this, _('Delete notebook "%s"?', folder.title));
// if (!ok) return;
// await Folder.delete(folder.id);
// await app().refreshCurrentFolder();
// } else {
const notes = await app().loadItems(BaseModel.TYPE_NOTE, pattern);
if (!notes.length) throw new Error(_('Cannot find "%s".', pattern));
2017-10-07 19:07:38 +02:00
const ok = force ? true : await this.prompt(_('%d notes match this pattern. Delete them?', notes.length));
2017-10-07 20:05:35 +02:00
if (!ok) return;
let ids = notes.map((n) => n.id);
await Note.batchDelete(ids);
2017-07-10 22:03:46 +02:00
}
}
module.exports = Command;