mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
40 lines
960 B
JavaScript
40 lines
960 B
JavaScript
const { BaseCommand } = require('./base-command.js');
|
|
const { app } = require('./app.js');
|
|
const { _ } = require('@joplin/lib/locale');
|
|
const BaseModel = require('@joplin/lib/BaseModel').default;
|
|
const Folder = require('@joplin/lib/models/Folder').default;
|
|
const Note = require('@joplin/lib/models/Note').default;
|
|
|
|
class Command extends BaseCommand {
|
|
usage() {
|
|
return 'ren <item> <name>';
|
|
}
|
|
|
|
description() {
|
|
return _('Renames the given <item> (note or notebook) to <name>.');
|
|
}
|
|
|
|
async action(args) {
|
|
const pattern = args['item'];
|
|
const name = args['name'];
|
|
|
|
const item = await app().loadItem('folderOrNote', pattern);
|
|
this.encryptionCheck(item);
|
|
if (!item) throw new Error(_('Cannot find "%s".', pattern));
|
|
|
|
const newItem = {
|
|
id: item.id,
|
|
title: name,
|
|
type_: item.type_,
|
|
};
|
|
|
|
if (item.type_ === BaseModel.TYPE_FOLDER) {
|
|
await Folder.save(newItem);
|
|
} else {
|
|
await Note.save(newItem);
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = Command;
|