2017-11-03 02:09:34 +02:00
|
|
|
const { BaseCommand } = require('./base-command.js');
|
|
|
|
const { app } = require('./app.js');
|
|
|
|
const { _ } = require('lib/locale.js');
|
2017-12-14 20:12:14 +02:00
|
|
|
const BaseModel = require('lib/BaseModel.js');
|
|
|
|
const Folder = require('lib/models/Folder.js');
|
|
|
|
const Note = require('lib/models/Note.js');
|
2017-07-10 22:03:46 +02:00
|
|
|
|
|
|
|
class Command extends BaseCommand {
|
|
|
|
|
|
|
|
usage() {
|
2017-10-24 23:52:13 +02:00
|
|
|
return 'mv <note> [notebook]';
|
2017-07-10 22:03:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
description() {
|
2017-10-24 23:52:13 +02:00
|
|
|
return _('Moves the notes matching <note> to [notebook].');
|
2017-07-10 22:03:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async action(args) {
|
2017-10-24 23:52:13 +02:00
|
|
|
const pattern = args['note'];
|
2017-08-04 18:02:43 +02:00
|
|
|
const destination = args['notebook'];
|
|
|
|
|
|
|
|
const folder = await Folder.loadByField('title', destination);
|
|
|
|
if (!folder) throw new Error(_('Cannot find "%s".', destination));
|
2017-07-10 22:03:46 +02:00
|
|
|
|
2017-08-04 18:02:43 +02:00
|
|
|
const notes = await app().loadItems(BaseModel.TYPE_NOTE, pattern);
|
|
|
|
if (!notes.length) throw new Error(_('Cannot find "%s".', pattern));
|
2017-07-10 22:03:46 +02:00
|
|
|
|
2017-08-04 18:02:43 +02:00
|
|
|
for (let i = 0; i < notes.length; i++) {
|
|
|
|
await Note.moveToFolder(notes[i].id, folder.id);
|
2017-07-10 22:03:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Command;
|