2023-12-20 21:08:07 +02:00
|
|
|
import BaseCommand from './base-command';
|
2024-01-20 16:29:21 +02:00
|
|
|
import app from './app';
|
2023-12-20 21:08:07 +02:00
|
|
|
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 {
|
2023-12-20 21:08:07 +02:00
|
|
|
public override usage() {
|
2017-10-27 00:22:36 +02:00
|
|
|
return 'ren <item> <name>';
|
|
|
|
}
|
|
|
|
|
2023-12-20 21:08:07 +02:00
|
|
|
public override description() {
|
2017-10-27 00:22:36 +02:00
|
|
|
return _('Renames the given <item> (note or notebook) to <name>.');
|
|
|
|
}
|
|
|
|
|
2024-04-05 13:16:49 +02:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
2023-12-20 21:08:07 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-30 09:35:42 +02:00
|
|
|
module.exports = Command;
|