mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
56 lines
1.7 KiB
JavaScript
56 lines
1.7 KiB
JavaScript
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';
|
|
import { autocompleteItems } from './autocomplete.js';
|
|
import { vorpalUtils } from './vorpal-utils.js';
|
|
|
|
class Command extends BaseCommand {
|
|
|
|
usage() {
|
|
return 'rm <pattern>';
|
|
}
|
|
|
|
description() {
|
|
return 'Deletes the items matching <pattern>.';
|
|
}
|
|
|
|
autocomplete() {
|
|
return { data: autocompleteItems };
|
|
}
|
|
|
|
options() {
|
|
return [
|
|
['-f, --force', 'Deletes the items without asking for confirmation.'],
|
|
['-r, --recursive', 'Deletes a notebook.'],
|
|
];
|
|
}
|
|
|
|
async action(args) {
|
|
const pattern = args['pattern'].toString();
|
|
const recursive = args.options && args.options.recursive === true;
|
|
const force = args.options && args.options.force === true;
|
|
|
|
if (recursive) {
|
|
const folder = await app().loadItem(BaseModel.TYPE_FOLDER, pattern);
|
|
if (!folder) throw new Error(_('No notebook matchin pattern "%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(_('No note matchin pattern "%s"', pattern));
|
|
const ok = force ? true : await vorpalUtils.cmdPromptConfirm(this, _('%d notes match this pattern. Delete them?', notes.length));
|
|
if (!ok) return;
|
|
let ids = notes.map((n) => n.id);
|
|
await Note.batchDelete(ids);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Command; |