2023-12-20 11:08:07 -08:00
|
|
|
import BaseCommand from './base-command';
|
2017-11-03 00:09:34 +00:00
|
|
|
const { app } = require('./app.js');
|
2023-12-20 11:08:07 -08:00
|
|
|
import { _ } from '@joplin/lib/locale';
|
|
|
|
import BaseModel from '@joplin/lib/BaseModel';
|
2017-07-10 20:03:46 +00:00
|
|
|
|
|
|
|
class Command extends BaseCommand {
|
2023-12-20 11:08:07 -08:00
|
|
|
public override usage() {
|
2017-07-28 18:13:07 +00:00
|
|
|
return 'use <notebook>';
|
2017-07-10 20:03:46 +00:00
|
|
|
}
|
|
|
|
|
2023-12-20 11:08:07 -08:00
|
|
|
public override description() {
|
2017-07-18 18:21:03 +00:00
|
|
|
return _('Switches to [notebook] - all further operations will happen within this notebook.');
|
2017-07-10 20:03:46 +00:00
|
|
|
}
|
|
|
|
|
2023-12-20 11:08:07 -08:00
|
|
|
public override compatibleUis() {
|
2017-12-07 18:12:46 +00:00
|
|
|
return ['cli'];
|
2017-10-24 22:37:36 +01:00
|
|
|
}
|
|
|
|
|
2023-12-20 11:08:07 -08:00
|
|
|
public override async action(args: any) {
|
2020-03-13 23:46:14 +00:00
|
|
|
const folder = await app().loadItem(BaseModel.TYPE_FOLDER, args['notebook']);
|
2017-07-18 18:21:03 +00:00
|
|
|
if (!folder) throw new Error(_('Cannot find "%s".', args['notebook']));
|
2017-07-10 20:03:46 +00:00
|
|
|
app().switchCurrentFolder(folder);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-30 09:35:42 +02:00
|
|
|
module.exports = Command;
|