mirror of
https://github.com/laurent22/joplin.git
synced 2025-03-06 15:36:49 +02:00
27 lines
717 B
TypeScript
27 lines
717 B
TypeScript
|
import BaseCommand from './base-command';
|
||
|
import app from './app';
|
||
|
import { _ } from '@joplin/lib/locale';
|
||
|
import restoreItems from '@joplin/lib/services/trash/restoreItems';
|
||
|
|
||
|
class Command extends BaseCommand {
|
||
|
public override usage() {
|
||
|
return 'restore <pattern>';
|
||
|
}
|
||
|
|
||
|
public override description() {
|
||
|
return _('Restore the items matching <pattern>.');
|
||
|
}
|
||
|
|
||
|
public override async action(args: any) {
|
||
|
const pattern = args['pattern'];
|
||
|
|
||
|
const items = await app().loadItems('folderOrNote', pattern);
|
||
|
if (!items.length) throw new Error(_('Cannot find "%s".', pattern));
|
||
|
|
||
|
const ids = items.map(n => n.id);
|
||
|
await restoreItems(items[0].type_, ids, { useRestoreFolder: true });
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = Command;
|