mirror of
https://github.com/laurent22/joplin.git
synced 2025-01-23 18:53:36 +02:00
40 lines
870 B
JavaScript
40 lines
870 B
JavaScript
import { BaseCommand } from './base-command.js';
|
|
import { app } from './app.js';
|
|
import { _ } from 'lib/locale.js';
|
|
import { BaseModel } from 'lib/base-model.js';
|
|
import { Folder } from 'lib/models/folder.js';
|
|
import { Note } from 'lib/models/note.js';
|
|
|
|
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);
|
|
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; |