2017-11-03 02:09:34 +02:00
|
|
|
const { BaseCommand } = require('./base-command.js');
|
|
|
|
const { app } = require('./app.js');
|
2020-11-07 17:59:37 +02:00
|
|
|
const { _ } = require('@joplin/lib/locale');
|
|
|
|
const BaseModel = require('@joplin/lib/BaseModel').default;
|
2017-07-10 22:03:46 +02:00
|
|
|
|
|
|
|
class Command extends BaseCommand {
|
|
|
|
usage() {
|
2017-07-28 20:13:07 +02:00
|
|
|
return 'use <notebook>';
|
2017-07-10 22:03:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-12-07 20:12:46 +02:00
|
|
|
compatibleUis() {
|
|
|
|
return ['cli'];
|
2017-10-24 23:37:36 +02:00
|
|
|
}
|
|
|
|
|
2017-07-10 22:03:46 +02:00
|
|
|
async action(args) {
|
2020-03-14 01:46:14 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-30 09:35:42 +02:00
|
|
|
module.exports = Command;
|