mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
27 lines
732 B
TypeScript
27 lines
732 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> from the trash.');
|
|
}
|
|
|
|
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;
|