1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/app-cli/app/command-ren.ts

40 lines
945 B
TypeScript
Raw Normal View History

import BaseCommand from './base-command';
2024-01-20 16:29:21 +02:00
import app from './app';
import { _ } from '@joplin/lib/locale';
import BaseModel from '@joplin/lib/BaseModel';
import Folder from '@joplin/lib/models/Folder';
import Note from '@joplin/lib/models/Note';
2017-10-27 00:22:36 +02:00
class Command extends BaseCommand {
public override usage() {
2017-10-27 00:22:36 +02:00
return 'ren <item> <name>';
}
public override description() {
2017-10-27 00:22:36 +02:00
return _('Renames the given <item> (note or notebook) to <name>.');
}
public override async action(args: any) {
2017-10-27 00:22:36 +02:00
const pattern = args['item'];
const name = args['name'];
const item = await app().loadItem('folderOrNote', pattern);
2017-12-26 12:38:53 +02:00
this.encryptionCheck(item);
2017-10-27 00:22:36 +02:00
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;