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-use.ts

28 lines
806 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';
2017-07-10 22:03:46 +02:00
class Command extends BaseCommand {
public override usage() {
2017-07-28 20:13:07 +02:00
return 'use <notebook>';
2017-07-10 22:03:46 +02:00
}
public override description() {
2017-07-18 20:21:03 +02:00
return _('Switches to [notebook] - all further operations will happen within this notebook.');
2017-07-10 22:03:46 +02:00
}
public override compatibleUis() {
2017-12-07 20:12:46 +02:00
return ['cli'];
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
public override async action(args: any) {
const folder = await app().loadItem(BaseModel.TYPE_FOLDER, args['notebook']);
2017-07-18 20:21:03 +02:00
if (!folder) throw new Error(_('Cannot find "%s".', args['notebook']));
2017-07-10 22:03:46 +02:00
app().switchCurrentFolder(folder);
}
}
module.exports = Command;